For CPU ADD, the device tree entries are retrieved with configure-connector RTAS call and attached to the device tree. Then the CPU is added as part of DT node notification. If the CPU ADD notifier returns failure, the corresponding CPU node entries should be deleted from the device-tree. See pseries_add_processor() for the possible failure cases.
The current code does not remove CPU node entries during CPU ADD notifier failure and causing the following issues: - Can not add this CPU later since already present in the device-tree. - Trying to free memory allocated to CPU node without detaching the node and it causes freeing its sibling node (existing CPU nodes). This patch fixes this issue by calling of_detach_node_no_notify() for the failure from CPU ADD notifier which removes CPU node entries without calling CPU REMOVE notifier. Signed-off-by: Haren Myneni <[email protected]> --- arch/powerpc/platforms/pseries/dlpar.c | 9 ++++++--- arch/powerpc/platforms/pseries/hotplug-cpu.c | 4 ++-- arch/powerpc/platforms/pseries/mobility.c | 2 +- arch/powerpc/platforms/pseries/pmem.c | 2 +- arch/powerpc/platforms/pseries/pseries.h | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index f4d33b8dffd8..01a9849773cd 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c @@ -247,15 +247,18 @@ int dlpar_attach_node(struct device_node *dn, struct device_node *parent) return 0; } -int dlpar_detach_node(struct device_node *dn) +int dlpar_detach_node(struct device_node *dn, bool notify) { struct device_node *child; int rc; for_each_child_of_node(dn, child) - dlpar_detach_node(child); + dlpar_detach_node(child, notify); - rc = of_detach_node(dn); + if (notify) + rc = of_detach_node(dn); + else + rc = of_detach_node_no_notify(dn); if (rc) return rc; diff --git a/arch/powerpc/platforms/pseries/hotplug-cpu.c b/arch/powerpc/platforms/pseries/hotplug-cpu.c index bc6926dbf148..db359fa3f922 100644 --- a/arch/powerpc/platforms/pseries/hotplug-cpu.c +++ b/arch/powerpc/platforms/pseries/hotplug-cpu.c @@ -603,7 +603,7 @@ static ssize_t dlpar_cpu_add(u32 drc_index) rc = dlpar_release_drc(drc_index); if (!rc) - dlpar_free_cc_nodes(dn); + dlpar_detach_node(dn, false); return saved_rc; } @@ -616,7 +616,7 @@ static ssize_t dlpar_cpu_add(u32 drc_index) pr_warn("Failed to online cpu %pOFn, rc: %d, drc index: %x\n", dn, rc, drc_index); - rc = dlpar_detach_node(dn); + rc = dlpar_detach_node(dn, true); if (!rc) dlpar_release_drc(drc_index); diff --git a/arch/powerpc/platforms/pseries/mobility.c b/arch/powerpc/platforms/pseries/mobility.c index b5c2abd12432..e0e4ef04c679 100644 --- a/arch/powerpc/platforms/pseries/mobility.c +++ b/arch/powerpc/platforms/pseries/mobility.c @@ -112,7 +112,7 @@ static int delete_dt_node(struct device_node *dn) } pr_debug("removing node %pOFfp\n", dn); - dlpar_detach_node(dn); + dlpar_detach_node(dn, true); return 0; } diff --git a/arch/powerpc/platforms/pseries/pmem.c b/arch/powerpc/platforms/pseries/pmem.c index 0f1d45f32e4a..b60a01745137 100644 --- a/arch/powerpc/platforms/pseries/pmem.c +++ b/arch/powerpc/platforms/pseries/pmem.c @@ -85,7 +85,7 @@ static ssize_t pmem_drc_remove_node(u32 drc_index) pr_debug("Attempting to remove %pOF, drc index: %x\n", dn, drc_index); /* * NB: tears down the ibm,pmemory device as a side-effect */ - rc = dlpar_detach_node(dn); + rc = dlpar_detach_node(dn, true); if (rc) return rc; diff --git a/arch/powerpc/platforms/pseries/pseries.h b/arch/powerpc/platforms/pseries/pseries.h index 3968a6970fa8..6f80e58e6186 100644 --- a/arch/powerpc/platforms/pseries/pseries.h +++ b/arch/powerpc/platforms/pseries/pseries.h @@ -50,7 +50,7 @@ extern void dlpar_free_cc_property(struct property *); extern struct device_node *dlpar_configure_connector(__be32, struct device_node *); extern int dlpar_attach_node(struct device_node *, struct device_node *); -extern int dlpar_detach_node(struct device_node *); +extern int dlpar_detach_node(struct device_node *, bool); extern int dlpar_acquire_drc(u32 drc_index); extern int dlpar_release_drc(u32 drc_index); extern int dlpar_unisolate_drc(u32 drc_index); -- 2.55.0
