[PATCH 2/6] pseries: Factor out common cpu hotplug code
Nathan Fontenot
nfont at linux.vnet.ibm.com
Tue Jun 23 06:58:12 AEST 2015
Re-factor the cpu hotplug code to support cpu hotplug completely in
the kernel and using the existing sysfs probe/release interface. Move
pieces of the existing cpu hotplug code that will be common to both
interfaces into common routines. This patch does not introduce any
functional changes.
Signed-off-by: Nathan Fontenot <nfont at linux.vnet.ibm.com>
---
arch/powerpc/platforms/pseries/hotplug-cpu.c | 83 ++++++++++++++------------
1 file changed, 46 insertions(+), 37 deletions(-)
diff --git a/arch/powerpc/platforms/pseries/hotplug-cpu.c b/arch/powerpc/platforms/pseries/hotplug-cpu.c
index c55cdbc..f58d902 100644
--- a/arch/powerpc/platforms/pseries/hotplug-cpu.c
+++ b/arch/powerpc/platforms/pseries/hotplug-cpu.c
@@ -340,8 +340,6 @@ static void pseries_remove_processor(struct device_node *np)
cpu_maps_update_done();
}
-#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
-
static int dlpar_online_cpu(struct device_node *dn)
{
int rc = 0;
@@ -383,26 +381,16 @@ out:
}
-static ssize_t dlpar_cpu_probe(const char *buf, size_t count)
+static ssize_t dlpar_cpu_add(struct device_node *parent, u32 drc_index)
{
- struct device_node *dn, *parent;
- u32 drc_index;
+ struct device_node *dn;
int rc;
- rc = kstrtou32(buf, 0, &drc_index);
- if (rc)
- return -EINVAL;
-
rc = dlpar_acquire_drc(drc_index);
if (rc)
return -EINVAL;
- parent = of_find_node_by_path("/cpus");
- if (!parent)
- return -ENODEV;
-
dn = dlpar_configure_connector(cpu_to_be32(drc_index), parent);
- of_node_put(parent);
if (!dn)
return -EINVAL;
@@ -414,10 +402,7 @@ static ssize_t dlpar_cpu_probe(const char *buf, size_t count)
}
rc = dlpar_online_cpu(dn);
- if (rc)
- return rc;
-
- return count;
+ return rc;
}
static int dlpar_offline_cpu(struct device_node *dn)
@@ -476,6 +461,47 @@ out:
}
+static ssize_t dlpar_cpu_remove(struct device_node *dn, u32 drc_index)
+{
+ int rc;
+
+ rc = dlpar_offline_cpu(dn);
+ if (rc)
+ return -EINVAL;
+
+ rc = dlpar_release_drc(drc_index);
+ if (rc)
+ return rc;
+
+ rc = dlpar_detach_node(dn);
+ if (rc)
+ dlpar_acquire_drc(drc_index);
+
+ return rc;
+}
+
+#ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
+
+static ssize_t dlpar_cpu_probe(const char *buf, size_t count)
+{
+ struct device_node *parent;
+ u32 drc_index;
+ int rc;
+
+ rc = kstrtou32(buf, 0, &drc_index);
+ if (rc)
+ return -EINVAL;
+
+ parent = of_find_node_by_path("/cpus");
+ if (!parent)
+ return -ENODEV;
+
+ rc = dlpar_cpu_add(parent, drc_index);
+ of_node_put(parent);
+
+ return rc ? rc : count;
+}
+
static ssize_t dlpar_cpu_release(const char *buf, size_t count)
{
struct device_node *dn;
@@ -492,27 +518,10 @@ static ssize_t dlpar_cpu_release(const char *buf, size_t count)
return -EINVAL;
}
- rc = dlpar_offline_cpu(dn);
- if (rc) {
- of_node_put(dn);
- return -EINVAL;
- }
-
- rc = dlpar_release_drc(drc_index);
- if (rc) {
- of_node_put(dn);
- return rc;
- }
-
- rc = dlpar_detach_node(dn);
- if (rc) {
- dlpar_acquire_drc(drc_index);
- return rc;
- }
-
+ rc = dlpar_cpu_remove(dn, drc_index);
of_node_put(dn);
- return count;
+ return rc ? rc : count;
}
#endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */
More information about the Linuxppc-dev
mailing list