x86: not set boot cpu in cpu_online_map in smp_prepare_boot_cpu()
in init/main.c boot_cpu_init() does that before. Signed-off-by: Yinghai Lu <yinghai.lu@sun.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
07035f076f
commit
23916d4915
1 changed files with 1 additions and 1 deletions
|
@ -921,7 +921,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
|
||||||
void __init smp_prepare_boot_cpu(void)
|
void __init smp_prepare_boot_cpu(void)
|
||||||
{
|
{
|
||||||
int me = smp_processor_id();
|
int me = smp_processor_id();
|
||||||
cpu_set(me, cpu_online_map);
|
/* already set me in cpu_online_map in boot_cpu_init() */
|
||||||
cpu_set(me, cpu_callout_map);
|
cpu_set(me, cpu_callout_map);
|
||||||
per_cpu(cpu_state, me) = CPU_ONLINE;
|
per_cpu(cpu_state, me) = CPU_ONLINE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue