projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
949ec32
)
x86: do not set boot cpu in cpu_online_map at x86_64_start_kernel()
author
Yinghai Lu
<Yinghai.Lu@Sun.COM>
Wed, 30 Jan 2008 12:30:46 +0000
(13:30 +0100)
committer
Ingo Molnar
<mingo@elte.hu>
Wed, 30 Jan 2008 12:30:46 +0000
(13:30 +0100)
In init/main.c boot_cpu_init() does that later.
Signed-off-by: Yinghai Lu <yinghai.lu@sun.com>
Cc: Zachary Amsden <zach@vmware.com>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/kernel/head64.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/head64.c
b/arch/x86/kernel/head64.c
index 6643f3f994fb44f2d4a17c6bbcf9f32e310a0012..4a1c1356c41a55ea56a23dd86b8968cd4681b845 100644
(file)
--- a/
arch/x86/kernel/head64.c
+++ b/
arch/x86/kernel/head64.c
@@
-69,8
+69,6
@@
void __init x86_64_start_kernel(char * real_mode_data)
pda_init(0);
copy_bootdata(__va(real_mode_data));
-#ifdef CONFIG_SMP
- cpu_set(0, cpu_online_map);
-#endif
+
start_kernel();
}