-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 41140 b: refs/heads/master c: f5d6c63 h: refs/heads/master v: v3
- Loading branch information
Ralf Baechle
committed
Nov 29, 2006
1 parent
342d2c9
commit 40f60d9
Showing
4 changed files
with
31 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 1275361c407d17d56717cd706785a31c2353d696 | ||
refs/heads/master: f5d6c63a67a8f124ddae88511427249d1dd87880 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#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) { | ||
ret = register_cpu(&per_cpu(cpu_devices, i), i); | ||
if (ret) | ||
printk(KERN_WARNING "topology_init: register_cpu %d " | ||
"failed (%d)\n", i, ret); | ||
} | ||
|
||
return 0; | ||
} | ||
|
||
subsys_initcall(topology_init); |