spapr: Do PHB hoplug sanity check at pre-plug
We currently detect that a PHB index is already in use at plug time. But this can be decteted at pre-plug in order to error out earlier. This allows to pass &error_abort to spapr_drc_attach() and to end up with a plug handler that doesn't need to report errors anymore. Signed-off-by: Greg Kurz <groug@kaod.org> Message-Id: <20201120234208.683521-8-groug@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
f5598c92b8
commit
9a07069958
@ -3886,6 +3886,7 @@ static bool spapr_phb_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|||||||
SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(dev);
|
SpaprPhbState *sphb = SPAPR_PCI_HOST_BRIDGE(dev);
|
||||||
SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
||||||
const unsigned windows_supported = spapr_phb_windows_supported(sphb);
|
const unsigned windows_supported = spapr_phb_windows_supported(sphb);
|
||||||
|
SpaprDrc *drc;
|
||||||
|
|
||||||
if (dev->hotplugged && !smc->dr_phb_enabled) {
|
if (dev->hotplugged && !smc->dr_phb_enabled) {
|
||||||
error_setg(errp, "PHB hotplug not supported for this machine");
|
error_setg(errp, "PHB hotplug not supported for this machine");
|
||||||
@ -3897,6 +3898,12 @@ static bool spapr_phb_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
drc = spapr_drc_by_id(TYPE_SPAPR_DRC_PHB, sphb->index);
|
||||||
|
if (drc && drc->dev) {
|
||||||
|
error_setg(errp, "PHB %d already attached", sphb->index);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This will check that sphb->index doesn't exceed the maximum number of
|
* This will check that sphb->index doesn't exceed the maximum number of
|
||||||
* PHBs for the current machine type.
|
* PHBs for the current machine type.
|
||||||
@ -3910,8 +3917,7 @@ static bool spapr_phb_pre_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|||||||
errp);
|
errp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void spapr_phb_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
static void spapr_phb_plug(HotplugHandler *hotplug_dev, DeviceState *dev)
|
||||||
Error **errp)
|
|
||||||
{
|
{
|
||||||
SpaprMachineState *spapr = SPAPR_MACHINE(OBJECT(hotplug_dev));
|
SpaprMachineState *spapr = SPAPR_MACHINE(OBJECT(hotplug_dev));
|
||||||
SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
|
||||||
@ -3927,9 +3933,8 @@ static void spapr_phb_plug(HotplugHandler *hotplug_dev, DeviceState *dev,
|
|||||||
/* hotplug hooks should check it's enabled before getting this far */
|
/* hotplug hooks should check it's enabled before getting this far */
|
||||||
assert(drc);
|
assert(drc);
|
||||||
|
|
||||||
if (!spapr_drc_attach(drc, dev, errp)) {
|
/* spapr_phb_pre_plug() already checked the DRC is attachable */
|
||||||
return;
|
spapr_drc_attach(drc, dev, &error_abort);
|
||||||
}
|
|
||||||
|
|
||||||
if (hotplugged) {
|
if (hotplugged) {
|
||||||
spapr_hotplug_req_add_by_index(drc);
|
spapr_hotplug_req_add_by_index(drc);
|
||||||
@ -3997,7 +4002,7 @@ static void spapr_machine_device_plug(HotplugHandler *hotplug_dev,
|
|||||||
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_CPU_CORE)) {
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_CPU_CORE)) {
|
||||||
spapr_core_plug(hotplug_dev, dev, errp);
|
spapr_core_plug(hotplug_dev, dev, errp);
|
||||||
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_PCI_HOST_BRIDGE)) {
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_PCI_HOST_BRIDGE)) {
|
||||||
spapr_phb_plug(hotplug_dev, dev, errp);
|
spapr_phb_plug(hotplug_dev, dev);
|
||||||
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_TPM_PROXY)) {
|
} else if (object_dynamic_cast(OBJECT(dev), TYPE_SPAPR_TPM_PROXY)) {
|
||||||
spapr_tpm_proxy_plug(hotplug_dev, dev, errp);
|
spapr_tpm_proxy_plug(hotplug_dev, dev, errp);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user