-
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.
[MIPS] Do topology_init even on uniprocessor kernels.
Otherwise CPU 0 doesn't show up in sysfs which breaks some software. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
Ralf Baechle
committed
Nov 29, 2006
1 parent
1275361
commit f5d6c63
Showing
3 changed files
with
30 additions
and
24 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
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); |