]> Git Repo - qemu.git/commitdiff
vhost-scsi: prevent using uninitialized vqs
authoryuchenlin <[email protected]>
Fri, 12 Oct 2018 09:07:52 +0000 (17:07 +0800)
committerMichael S. Tsirkin <[email protected]>
Mon, 5 Nov 2018 18:24:02 +0000 (13:24 -0500)
There are 3 virtqueues (ctrl, event and cmd) for virtio scsi device,
but seabios will only set the physical address for the 3rd one (cmd).
Then in vhost_virtqueue_start(), virtio_queue_get_desc_addr()
will be 0 for ctrl and event vq.

In this case, ctrl and event vq are not initialized.
vhost_verify_ring_mappings may use uninitialized vhost_virtqueue
such that vhost_verify_ring_part_mapping returns ENOMEM.

When encountered this problem, we got the following logs:

    qemu-system-x86_64: Unable to map available ring for ring 0
    qemu-system-x86_64: Verify ring failure on region 0

Signed-off-by: Forrest Liu <[email protected]>
Signed-off-by: yuchenlin <[email protected]>
Reviewed-by: Philippe Mathieu-Daudé <[email protected]>
Reviewed-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
hw/scsi/vhost-scsi.c

index becf55008553745b407c84296970edc57fb21c6d..7f21b4f9d68f9f6289e9d093e4ed5db73b16ffad 100644 (file)
@@ -183,7 +183,7 @@ static void vhost_scsi_realize(DeviceState *dev, Error **errp)
     }
 
     vsc->dev.nvqs = VHOST_SCSI_VQ_NUM_FIXED + vs->conf.num_queues;
-    vsc->dev.vqs = g_new(struct vhost_virtqueue, vsc->dev.nvqs);
+    vsc->dev.vqs = g_new0(struct vhost_virtqueue, vsc->dev.nvqs);
     vsc->dev.vq_index = 0;
     vsc->dev.backend_features = 0;
 
This page took 0.026976 seconds and 4 git commands to generate.