diff options
author | Daniel Henrique Barboza | 2021-02-26 17:32:59 +0100 |
---|---|---|
committer | David Gibson | 2021-03-09 23:07:09 +0100 |
commit | 7420033ec460e7b9906bf05fbe1a0d3830536657 (patch) | |
tree | 268928b14df0bb997ebc0c0df7bf84d7d8396702 /hw/ppc | |
parent | hw/ppc: e500: Add missing <ranges> in the eTSEC node (diff) | |
download | qemu-7420033ec460e7b9906bf05fbe1a0d3830536657.tar.gz qemu-7420033ec460e7b9906bf05fbe1a0d3830536657.tar.xz qemu-7420033ec460e7b9906bf05fbe1a0d3830536657.zip |
spapr.c: add 'unplug already in progress' message for PHB unplug
Both CPU hotunplug and PC_DIMM unplug reports an user warning,
mentioning that the hotunplug is in progress, if consecutive
'device_del' are issued in quick succession.
Do the same for PHBs in spapr_phb_unplug_request().
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Message-Id: <20210226163301.419727-4-danielhb413@gmail.com>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc')
-rw-r--r-- | hw/ppc/spapr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c index 6eaddb12cb..aca3ef9d58 100644 --- a/hw/ppc/spapr.c +++ b/hw/ppc/spapr.c @@ -4034,6 +4034,10 @@ static void spapr_phb_unplug_request(HotplugHandler *hotplug_dev, if (!spapr_drc_unplug_requested(drc)) { spapr_drc_unplug_request(drc); spapr_hotplug_req_remove_by_index(drc); + } else { + error_setg(errp, + "PCI Host Bridge unplug already in progress for device %s", + dev->id); } } |