Commit 0e8f8f54 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] NUMA: Register all nodes before cpus or sysfs will barf.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 18965513
...@@ -467,14 +467,18 @@ static DEFINE_PER_CPU(struct cpu, cpu_devices); ...@@ -467,14 +467,18 @@ static DEFINE_PER_CPU(struct cpu, cpu_devices);
static int __init topology_init(void) static int __init topology_init(void)
{ {
int cpu; int i, ret;
int ret;
for_each_present_cpu(cpu) { #ifdef CONFIG_NUMA
ret = register_cpu(&per_cpu(cpu_devices, cpu), cpu); 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) if (ret)
printk(KERN_WARNING "topology_init: register_cpu %d " printk(KERN_WARNING "topology_init: register_cpu %d "
"failed (%d)\n", cpu, ret); "failed (%d)\n", i, ret);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment