diff options
author | Yi Min Zhao <zyimin@linux.vnet.ibm.com> | 2016-08-10 13:35:00 +0800 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-09-05 15:15:16 +0200 |
commit | 0c2a16a4dc56fbdbe7f619e2a860214dc6f89ec6 (patch) | |
tree | 2386b89a47c70a095629cdae8c70af19980bce98 /hw | |
parent | 0d36d791927753599e9ca36e344f9fb272126e3d (diff) | |
download | qemu-0c2a16a4dc56fbdbe7f619e2a860214dc6f89ec6.zip qemu-0c2a16a4dc56fbdbe7f619e2a860214dc6f89ec6.tar.gz qemu-0c2a16a4dc56fbdbe7f619e2a860214dc6f89ec6.tar.bz2 |
s390x/pci: assert zpci always existing
If one pci device is plugged successfully, there must be a zpci device
existing. This means that during hot-unplugging a pci device, its
corresponding zpci device must be found. Therefore we use an assert to
replace current code.
Signed-off-by: Yi Min Zhao <zyimin@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/s390x/s390-pci-bus.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/hw/s390x/s390-pci-bus.c b/hw/s390x/s390-pci-bus.c index 5750f22..ac8f06d 100644 --- a/hw/s390x/s390-pci-bus.c +++ b/hw/s390x/s390-pci-bus.c @@ -718,11 +718,7 @@ static void s390_pcihost_hot_unplug(HotplugHandler *hotplug_dev, break; } } - - if (!pbdev) { - object_unparent(OBJECT(pci_dev)); - return; - } + assert(pbdev != NULL); } else if (object_dynamic_cast(OBJECT(dev), TYPE_S390_PCI_DEVICE)) { pbdev = S390_PCI_DEVICE(dev); pci_dev = pbdev->pdev; |