]> git.proxmox.com Git - qemu.git/commitdiff
virtio-blk: Fix virtio-blk-s390 to require drive
authorMarkus Armbruster <armbru@redhat.com>
Tue, 6 Jul 2010 12:37:43 +0000 (14:37 +0200)
committerKevin Wolf <kwolf@redhat.com>
Tue, 13 Jul 2010 15:48:17 +0000 (17:48 +0200)
Move the check from virtio_blk_init_pci(), where it protects only
virtio-blk-pci, to virtio_blk_init().  Without that, virtio-blk-s390
initializes without a drive.  I figure that can lead to null pointer
dereferences.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/virtio-blk.c
hw/virtio-pci.c

index 8747634fbe205439d91c4ce52a1aedd817094afe..99e9dd294be8952b86847c61a364dda2020fd26b 100644 (file)
@@ -12,6 +12,7 @@
  */
 
 #include <qemu-common.h>
+#include "qemu-error.h"
 #include "virtio-blk.h"
 #ifdef __linux__
 # include <scsi/sg.h>
@@ -490,6 +491,11 @@ VirtIODevice *virtio_blk_init(DeviceState *dev, BlockConf *conf)
     static int virtio_blk_id;
     DriveInfo *dinfo;
 
+    if (!conf->bs) {
+        error_report("virtio-blk-pci: drive property not set");
+        return NULL;
+    }
+
     s = (VirtIOBlock *)virtio_common_init("virtio-blk", VIRTIO_ID_BLOCK,
                                           sizeof(struct virtio_blk_config),
                                           sizeof(VirtIOBlock));
index 55831665f6f89dfdcde392a9e6c627cb80c08bd0..31a711ef41c7bbd1ebb80ee6a0caa90aa73e84c1 100644 (file)
@@ -546,10 +546,6 @@ static int virtio_blk_init_pci(PCIDevice *pci_dev)
         proxy->class_code != PCI_CLASS_STORAGE_OTHER)
         proxy->class_code = PCI_CLASS_STORAGE_SCSI;
 
-    if (!proxy->block.bs) {
-        error_report("virtio-blk-pci: drive property not set");
-        return -1;
-    }
     vdev = virtio_blk_init(&pci_dev->qdev, &proxy->block);
     if (!vdev) {
         return -1;