summaryrefslogtreecommitdiffstats
path: root/hw/virtio-pci.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2010-07-06 14:37:43 +0200
committerKevin Wolf <kwolf@redhat.com>2010-07-13 17:48:17 +0200
commitd75d25e34e4b4eb6a18122b5fa3baac70cea0f2b (patch)
treeb6eb17dbae520add98cfa49267f3ba2c7aac4040 /hw/virtio-pci.c
parentac0c14d71b68ac18f03a876028e332534e1e6a3e (diff)
downloadhqemu-d75d25e34e4b4eb6a18122b5fa3baac70cea0f2b.zip
hqemu-d75d25e34e4b4eb6a18122b5fa3baac70cea0f2b.tar.gz
virtio-blk: Fix virtio-blk-s390 to require drive
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>
Diffstat (limited to 'hw/virtio-pci.c')
-rw-r--r--hw/virtio-pci.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index 5583166..31a711e 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -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;
OpenPOWER on IntegriCloud