Blame view

arch/mips/kernel/topology.c 627 Bytes
f5d6c63a6   Ralf Baechle   [MIPS] Do topolog...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  #include <linux/cpu.h>
  #include <linux/cpumask.h>
  #include <linux/init.h>
  #include <linux/node.h>
  #include <linux/nodemask.h>
  #include <linux/percpu.h>
  
  static DEFINE_PER_CPU(struct cpu, cpu_devices);
  
  static int __init topology_init(void)
  {
  	int i, ret;
  
  #ifdef CONFIG_NUMA
  	for_each_online_node(i)
  		register_one_node(i);
  #endif /* CONFIG_NUMA */
  
  	for_each_present_cpu(i) {
1b2bc75c1   Ralf Baechle   MIPS: Add arch ge...
20
21
22
23
  		struct cpu *c = &per_cpu(cpu_devices, i);
  
  		c->hotpluggable = 1;
  		ret = register_cpu(c, i);
f5d6c63a6   Ralf Baechle   [MIPS] Do topolog...
24
25
26
27
28
29
30
31
32
33
  		if (ret)
  			printk(KERN_WARNING "topology_init: register_cpu %d "
  			       "failed (%d)
  ", i, ret);
  	}
  
  	return 0;
  }
  
  subsys_initcall(topology_init);