diff options
author | Glauber de Oliveira Costa <gcosta@redhat.com> | 2008-03-19 13:25:07 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:00 -0400 |
commit | 3ff8171feecfcdee46be7d6e92259debe46ac87f (patch) | |
tree | 571f40f61b2638de9f96b6add9dd48fb4a7620b4 /arch/x86/kernel/smpboot_32.c | |
parent | 3b22ec7b13cb31e0d87fbc0aabe14caaaad309e8 (diff) |
x86: don't call local_irq_enable before entering idle
the call to idle is guaranteed to do it.
Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot_32.c')
-rw-r--r-- | arch/x86/kernel/smpboot_32.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/kernel/smpboot_32.c b/arch/x86/kernel/smpboot_32.c index 0bfb31e13540..6c16165abf11 100644 --- a/arch/x86/kernel/smpboot_32.c +++ b/arch/x86/kernel/smpboot_32.c | |||
@@ -214,9 +214,6 @@ static void __cpuinit start_secondary(void *unused) | |||
214 | unlock_ipi_call_lock(); | 214 | unlock_ipi_call_lock(); |
215 | per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE; | 215 | per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE; |
216 | 216 | ||
217 | /* We can take interrupts now: we're officially "up". */ | ||
218 | local_irq_enable(); | ||
219 | |||
220 | wmb(); | 217 | wmb(); |
221 | cpu_idle(); | 218 | cpu_idle(); |
222 | } | 219 | } |