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:
5745abf
)
x86: call identify_secondary_cpu in smp_store_cpu_info
author
Glauber de Oliveira Costa
<gcosta@redhat.com>
Wed, 19 Mar 2008 17:25:04 +0000
(14:25 -0300)
committer
Ingo Molnar
<mingo@elte.hu>
Thu, 17 Apr 2008 15:40:59 +0000
(17:40 +0200)
Call it conditionally for secondary cpus. This behaviour
matches i386
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/smpboot_64.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/smpboot_64.c
b/arch/x86/kernel/smpboot_64.c
index 1da28c6c1f5fbb15417af7d4930f383322323c40..f84e30da521adbdbc468938d62d0b0a187d5df64 100644
(file)
--- a/
arch/x86/kernel/smpboot_64.c
+++ b/
arch/x86/kernel/smpboot_64.c
@@
-96,7
+96,8
@@
static void __cpuinit smp_store_cpu_info(int id)
*c = boot_cpu_data;
c->cpu_index = id;
- identify_cpu(c);
+ if (id != 0)
+ identify_secondary_cpu(c);
}
static inline void wait_for_init_deassert(atomic_t *deassert)