[SPARC64]: Must run smp_setup_cpu_possible_map() after paging_init()
Otherwise the in-kernel PROM device tree isn't built yet, and therefore the present cpu bits don't get set properly. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c2a5a46be4
commit
765b5f3273
|
@ -376,12 +376,12 @@ void __init setup_arch(char **cmdline_p)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
smp_setup_cpu_possible_map();
|
|
||||||
|
|
||||||
/* Get boot processor trap_block[] setup. */
|
/* Get boot processor trap_block[] setup. */
|
||||||
init_cur_cpu_trap(current_thread_info());
|
init_cur_cpu_trap(current_thread_info());
|
||||||
|
|
||||||
paging_init();
|
paging_init();
|
||||||
|
|
||||||
|
smp_setup_cpu_possible_map();
|
||||||
}
|
}
|
||||||
|
|
||||||
static int __init set_preferred_console(void)
|
static int __init set_preferred_console(void)
|
||||||
|
|
Loading…
Reference in New Issue