|
@@ -524,6 +524,12 @@ static int p9_virtio_probe(struct virtio_device *vdev)
|
|
int err;
|
|
int err;
|
|
struct virtio_chan *chan;
|
|
struct virtio_chan *chan;
|
|
|
|
|
|
|
|
+ if (!vdev->config->get) {
|
|
|
|
+ dev_err(&vdev->dev, "%s failure: config access disabled\n",
|
|
|
|
+ __func__);
|
|
|
|
+ return -EINVAL;
|
|
|
|
+ }
|
|
|
|
+
|
|
chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
|
|
chan = kmalloc(sizeof(struct virtio_chan), GFP_KERNEL);
|
|
if (!chan) {
|
|
if (!chan) {
|
|
pr_err("Failed to allocate virtio 9P channel\n");
|
|
pr_err("Failed to allocate virtio 9P channel\n");
|