[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[qemu-s390x] [PULL 08/10] s390x/pci: Fix hotplugging of PCI bridges
From: |
Cornelia Huck |
Subject: |
[qemu-s390x] [PULL 08/10] s390x/pci: Fix hotplugging of PCI bridges |
Date: |
Tue, 5 Feb 2019 17:41:07 +0100 |
From: David Hildenbrand <address@hidden>
When hotplugging a PCI bridge right now to the root port, we resolve
pci_get_bus(pdev)->parent_dev, which results in a SEGFAULT. Hotplugging
really only works right now when hotplugging to another bridge.
Instead, we have to properly check if we are already at the root.
Let's cleanup the code while at it a bit and factor out updating the
subordinate bus number into a separate function. The check for
"old_nr < nr" is right now not strictly necessary, but makes it more
obvious what is actually going on.
Most probably fixing up the topology is not our responsibility when
hotplugging. The guest has to sort this out. But let's keep it for now
and only fix current code to not crash.
Reviewed-by: Thomas Huth <address@hidden>
Signed-off-by: David Hildenbrand <address@hidden>
Message-Id: <address@hidden>
Reviewed-by: Collin Walling <address@hidden>
Signed-off-by: Cornelia Huck <address@hidden>
---
hw/s390x/s390-pci-bus.c | 28 +++++++++++++++++++---------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/hw/s390x/s390-pci-bus.c b/hw/s390x/s390-pci-bus.c
index 4200e48fb9..d85bc34617 100644
--- a/hw/s390x/s390-pci-bus.c
+++ b/hw/s390x/s390-pci-bus.c
@@ -877,6 +877,21 @@ static void s390_pcihost_pre_plug(HotplugHandler
*hotplug_dev, DeviceState *dev,
}
}
+static void s390_pci_update_subordinate(PCIDevice *dev, uint32_t nr)
+{
+ uint32_t old_nr;
+
+ pci_default_write_config(dev, PCI_SUBORDINATE_BUS, nr, 1);
+ while (!pci_bus_is_root(pci_get_bus(dev))) {
+ dev = pci_get_bus(dev)->parent_dev;
+
+ old_nr = pci_default_read_config(dev, PCI_SUBORDINATE_BUS, 1);
+ if (old_nr < nr) {
+ pci_default_write_config(dev, PCI_SUBORDINATE_BUS, nr, 1);
+ }
+ }
+}
+
static void s390_pcihost_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
Error **errp)
{
@@ -885,26 +900,21 @@ static void s390_pcihost_plug(HotplugHandler
*hotplug_dev, DeviceState *dev,
S390PCIBusDevice *pbdev = NULL;
if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_BRIDGE)) {
- BusState *bus;
PCIBridge *pb = PCI_BRIDGE(dev);
- PCIDevice *pdev = PCI_DEVICE(dev);
+ pdev = PCI_DEVICE(dev);
pci_bridge_map_irq(pb, dev->id, s390_pci_map_irq);
pci_setup_iommu(&pb->sec_bus, s390_pci_dma_iommu, s);
- bus = BUS(&pb->sec_bus);
- qbus_set_hotplug_handler(bus, DEVICE(s), errp);
+ qbus_set_hotplug_handler(BUS(&pb->sec_bus), DEVICE(s), errp);
if (dev->hotplugged) {
pci_default_write_config(pdev, PCI_PRIMARY_BUS,
pci_dev_bus_num(pdev), 1);
s->bus_no += 1;
pci_default_write_config(pdev, PCI_SECONDARY_BUS, s->bus_no, 1);
- do {
- pdev = pci_get_bus(pdev)->parent_dev;
- pci_default_write_config(pdev, PCI_SUBORDINATE_BUS,
- s->bus_no, 1);
- } while (pci_get_bus(pdev) && pci_dev_bus_num(pdev));
+
+ s390_pci_update_subordinate(pdev, s->bus_no);
}
} else if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
pdev = PCI_DEVICE(dev);
--
2.17.2
- [qemu-s390x] [PULL 00/10] s390x update, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 01/10] target/s390x: define TCG_GUEST_DEFAULT_MO for MTTCG, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 02/10] s390x: remove direct reference to mem_path global from s390x code, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 03/10] s390x/pci: Introduce unplug requests and split unplug handler, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 05/10] s390x/pci: mark zpci devices as unmigratable, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 04/10] s390x/pci: Drop release timer and replace it with a flag, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 07/10] s390x/pci: Fix primary bus number for PCI bridges, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 06/10] s390x/tcg: Don't model FP registers as globals, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 08/10] s390x/pci: Fix hotplugging of PCI bridges,
Cornelia Huck <=
- [qemu-s390x] [PULL 09/10] s390x/pci: Warn when adding PCI devices without the 'zpci' feature, Cornelia Huck, 2019/02/05
- [qemu-s390x] [PULL 10/10] s390x/pci: Unplug remaining requested devices on pcihost reset, Cornelia Huck, 2019/02/05
- Re: [qemu-s390x] [PULL 00/10] s390x update, Peter Maydell, 2019/02/05
- [qemu-s390x] [PULL 00/10] s390x update, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 03/10] target/s390x: Split out s390-tod.h, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 01/10] s390x: Fix the confusing contributions-after-2012 license statements, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 04/10] target/s390x: Implement STCK et al for CONFIG_USER_ONLY, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 02/10] s390x: always provide pci support, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 05/10] s390x: add zPCI feature to "qemu" CPU model, Cornelia Huck, 2019/02/18
- [qemu-s390x] [PULL 06/10] s390x/cpumodel: mepochptff: warn when no mepoch and re-align group init, Cornelia Huck, 2019/02/18