[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/7] spapr/pci: Correct "does not support hotplugging error messa
|
From: |
Markus Armbruster |
|
Subject: |
[PATCH 1/7] spapr/pci: Correct "does not support hotplugging error messages |
|
Date: |
Tue, 31 Oct 2023 12:10:53 +0100 |
When dynamic-reconfiguration is off, hot plug / unplug can fail with
"Bus 'spapr-pci-host-bridge' does not support hotplugging".
spapr-pci-host-bridge is a device, not a bus. Report the name of the
bus it provides instead: 'pci.0'.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
hw/ppc/spapr_pci.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/ppc/spapr_pci.c b/hw/ppc/spapr_pci.c
index 370c5a90f2..ebb32ad90b 100644
--- a/hw/ppc/spapr_pci.c
+++ b/hw/ppc/spapr_pci.c
@@ -1551,7 +1551,7 @@ static void spapr_pci_pre_plug(HotplugHandler
*plug_handler,
*/
if (plugged_dev->hotplugged) {
error_setg(errp, QERR_BUS_NO_HOTPLUG,
- object_get_typename(OBJECT(phb)));
+ phb->parent_obj.bus->qbus.name);
return;
}
}
@@ -1672,7 +1672,7 @@ static void spapr_pci_unplug_request(HotplugHandler
*plug_handler,
if (!phb->dr_enabled) {
error_setg(errp, QERR_BUS_NO_HOTPLUG,
- object_get_typename(OBJECT(phb)));
+ phb->parent_obj.bus->qbus.name);
return;
}
--
2.41.0
- [PATCH 0/7] Miscellaneous error message improvements, Markus Armbruster, 2023/10/31
- [PATCH 2/7] hmp: Improve sync-profile error message, Markus Armbruster, 2023/10/31
- [PATCH 1/7] spapr/pci: Correct "does not support hotplugging error messages,
Markus Armbruster <=
- [PATCH 5/7] net: Fix a misleading error message, Markus Armbruster, 2023/10/31
- [PATCH 6/7] balloon: Fix a misleading error message, Markus Armbruster, 2023/10/31
- [PATCH 3/7] qga: Improve guest-exec-status error message, Markus Armbruster, 2023/10/31
- [PATCH 4/7] ui/qmp-cmds: Improve two error messages, Markus Armbruster, 2023/10/31
- [PATCH 7/7] target/i386/cpu: Improve error message for property "vendor", Markus Armbruster, 2023/10/31