diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-05-13 23:50:43 -0400 |
---|---|---|
committer | Paul Mundt <lethal@hera.kernel.org> | 2007-06-07 22:43:35 -0400 |
commit | 7a302a9674593259866de4a9d5ae8edc03dc1934 (patch) | |
tree | d705d89037c226d9928ce132b332b08e2f00388a /arch/sh/kernel/topology.c | |
parent | 85f6038f2170e3335dda09c3dfb0f83110e87019 (diff) |
sh: Split out CPU topology initialization.
Split out the CPU topology initialization to a separate file,
and switch it to a percpu type, rather than an NR_CPUS array.
At the same time, switch to only registering present CPUs,
rather than using the possible CPU map.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/topology.c')
-rw-r--r-- | arch/sh/kernel/topology.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/sh/kernel/topology.c b/arch/sh/kernel/topology.c new file mode 100644 index 000000000000..8a4664c0ab57 --- /dev/null +++ b/arch/sh/kernel/topology.c | |||
@@ -0,0 +1,21 @@ | |||
1 | #include <linux/cpu.h> | ||
2 | #include <linux/cpumask.h> | ||
3 | #include <linux/init.h> | ||
4 | #include <linux/percpu.h> | ||
5 | |||
6 | static DEFINE_PER_CPU(struct cpu, cpu_devices); | ||
7 | |||
8 | static int __init topology_init(void) | ||
9 | { | ||
10 | int i, ret; | ||
11 | |||
12 | for_each_present_cpu(i) { | ||
13 | ret = register_cpu(&per_cpu(cpu_devices, i), i); | ||
14 | if (unlikely(ret)) | ||
15 | printk(KERN_WARNING "%s: register_cpu %d failed (%d)\n", | ||
16 | __FUNCTION__, i, ret); | ||
17 | } | ||
18 | |||
19 | return 0; | ||
20 | } | ||
21 | subsys_initcall(topology_init); | ||