diff options
author | Bharata B Rao <bharata@linux.vnet.ibm.com> | 2015-09-07 06:22:40 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-09-08 00:07:58 -0400 |
commit | daebaabb5cfbe4a6f09ca0e0f8b7673efc704960 (patch) | |
tree | bc2b36fc66ccdce6240fa6ae0fcf53b7aa40b44b | |
parent | 7d1647dc4ba0a61fec5381c1abb59dc886b6ef3c (diff) |
powerpc/pseries: Release DRC when configure_connector fails
Commit f32393c943e2 ("powerpc/pseries: Correct cpu affinity for
dlpar added cpus") moved dlpar_acquire_drc() call to before
dlpar_configure_connector() call in dlpar_cpu_probe(), but missed
to release the DRC if dlpar_configure_connector() failed.
During CPU hotplug, if configure-connector fails for any reason,
then this will result in subsequent CPU hotplug attempts to fail.
Release the acquired DRC if dlpar_configure_connector() call fails
so that the DRC is left in right isolation and allocation state
for the subsequent hotplug operation to succeed.
Fixes: f32393c943e2 ("powerpc/pseries: Correct cpu affinity for dlpar added cpus")
Cc: stable@vger.kernel.org # 4.1+
Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
Reviewed-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r-- | arch/powerpc/platforms/pseries/dlpar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/dlpar.c b/arch/powerpc/platforms/pseries/dlpar.c index 47d9cebe7159..db17827eb746 100644 --- a/arch/powerpc/platforms/pseries/dlpar.c +++ b/arch/powerpc/platforms/pseries/dlpar.c | |||
@@ -422,8 +422,10 @@ static ssize_t dlpar_cpu_probe(const char *buf, size_t count) | |||
422 | 422 | ||
423 | dn = dlpar_configure_connector(cpu_to_be32(drc_index), parent); | 423 | dn = dlpar_configure_connector(cpu_to_be32(drc_index), parent); |
424 | of_node_put(parent); | 424 | of_node_put(parent); |
425 | if (!dn) | 425 | if (!dn) { |
426 | dlpar_release_drc(drc_index); | ||
426 | return -EINVAL; | 427 | return -EINVAL; |
428 | } | ||
427 | 429 | ||
428 | rc = dlpar_attach_node(dn); | 430 | rc = dlpar_attach_node(dn); |
429 | if (rc) { | 431 | if (rc) { |