aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-03-19 14:25:07 -0300
committerIngo Molnar <mingo@elte.hu>2008-04-17 17:41:00 +0200
commit3ff8171feecfcdee46be7d6e92259debe46ac87f (patch)
tree571f40f61b2638de9f96b6add9dd48fb4a7620b4 /arch
parent3b22ec7b13cb31e0d87fbc0aabe14caaaad309e8 (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')
-rw-r--r--arch/x86/kernel/smpboot_32.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/kernel/smpboot_32.c b/arch/x86/kernel/smpboot_32.c
index 0bfb31e1354..6c16165abf1 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)
unlock_ipi_call_lock();
per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
- /* We can take interrupts now: we're officially "up". */
- local_irq_enable();
-
wmb();
cpu_idle();
}