aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64/kernel/sysfs.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@hutch.davemloft.net>2007-06-02 17:41:44 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-06-05 00:49:50 -0400
commiteff3414b7277c4792debfa227f5408238d925f16 (patch)
tree6c68bbd22f14e8cfa42f4e2f5a18952086156321 /arch/sparc64/kernel/sysfs.c
parent5ecd3100e695228ac5e0ce0e325e252c0f11806f (diff)
[SPARC64]: Move topology init code into new file, sysfs.c
Also, use per-cpu data for struct cpu. Calling kmalloc for each cpu in topology_init() is just plain clumsy. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/sysfs.c')
-rw-r--r--arch/sparc64/kernel/sysfs.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/arch/sparc64/kernel/sysfs.c b/arch/sparc64/kernel/sysfs.c
new file mode 100644
index 000000000000..0808c214dc73
--- /dev/null
+++ b/arch/sparc64/kernel/sysfs.c
@@ -0,0 +1,26 @@
1/* sysfs.c: Toplogy sysfs support code for sparc64.
2 *
3 * Copyright (C) 2007 David S. Miller <davem@davemloft.net>
4 */
5#include <linux/sysdev.h>
6#include <linux/cpu.h>
7#include <linux/smp.h>
8#include <linux/percpu.h>
9#include <linux/init.h>
10
11static DEFINE_PER_CPU(struct cpu, cpu_devices);
12
13static int __init topology_init(void)
14{
15 int cpu;
16
17 for_each_possible_cpu(cpu) {
18 struct cpu *c = &per_cpu(cpu_devices, cpu);
19
20 register_cpu(c, cpu);
21 }
22
23 return 0;
24}
25
26subsys_initcall(topology_init);