diff options
author | Peter Maydell | 2022-10-14 16:28:41 +0200 |
---|---|---|
committer | Daniel Henrique Barboza | 2022-10-17 21:15:10 +0200 |
commit | 0a3364043d84632f7a5661cdffa5e557f5ceb250 (patch) | |
tree | 0a33af4bdd34cfa61103f360ce6af44ffeebb32c /hw/ppc | |
parent | target/ppc: Fix xvcmp* clearing FI bit (diff) | |
download | qemu-0a3364043d84632f7a5661cdffa5e557f5ceb250.tar.gz qemu-0a3364043d84632f7a5661cdffa5e557f5ceb250.tar.xz qemu-0a3364043d84632f7a5661cdffa5e557f5ceb250.zip |
hw/ppc/spapr_pci.c: Use device_cold_reset() rather than device_legacy_reset()
In spapr_phb_children_reset() we call device_legacy_reset() to reset any
QOM children of the SPAPR PCI host bridge device. This will not reset
any qbus such a child might own. Switch to device_cold_reset(), which will
reset both the device and its buses. (If the child has no qbuses then
there will be no change in behaviour.)
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20221014142841.2092784-1-peter.maydell@linaro.org>
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Diffstat (limited to 'hw/ppc')
-rw-r--r-- | hw/ppc/spapr_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c index 57c8a4f085..7b7618d5da 100644 --- a/hw/ppc/spapr_pci.c +++ b/hw/ppc/spapr_pci.c @@ -2045,7 +2045,7 @@ static int spapr_phb_children_reset(Object *child, void *opaque) DeviceState *dev = (DeviceState *) object_dynamic_cast(child, TYPE_DEVICE); if (dev) { - device_legacy_reset(dev); + device_cold_reset(dev); } return 0; |