aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-06-01 14:21:13 +0900
committerPaul Mundt <lethal@hera.kernel.org>2007-06-08 02:43:45 +0000
commitd22d9b3a1d129349518c807e7997922f869e1f48 (patch)
tree2ca207bdf654450972f29dd03ca61ce69b58d3e5 /arch
parent91e656aacf52bcd3fbd199462032efec915fb654 (diff)
sh: Register multiple nodes in topology_init().
If we have multiple nodes, register these at topology_init() time. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/sh/kernel/topology.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/kernel/topology.c b/arch/sh/kernel/topology.c
index 8a4664c0ab5..9687b02caf4 100644
--- a/arch/sh/kernel/topology.c
+++ b/arch/sh/kernel/topology.c
@@ -2,6 +2,8 @@
#include <linux/cpumask.h>
#include <linux/init.h>
#include <linux/percpu.h>
+#include <linux/node.h>
+#include <linux/nodemask.h>
static DEFINE_PER_CPU(struct cpu, cpu_devices);
@@ -9,6 +11,11 @@ static int __init topology_init(void)
{
int i, ret;
+#ifdef CONFIG_NEED_MULTIPLE_NODES
+ for_each_online_node(i)
+ register_one_node(i);
+#endif
+
for_each_present_cpu(i) {
ret = register_cpu(&per_cpu(cpu_devices, i), i);
if (unlikely(ret))