aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86_64/kernel/smpboot.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/smpboot.c b/arch/x86_64/kernel/smpboot.c
index 4efe36fe99aa..277ce5e91e04 100644
--- a/arch/x86_64/kernel/smpboot.c
+++ b/arch/x86_64/kernel/smpboot.c
@@ -413,8 +413,13 @@ void __cpuinit smp_callin(void)
413 413
414 /* 414 /*
415 * Get our bogomips. 415 * Get our bogomips.
416 *
417 * Need to enable IRQs because it can take longer and then
418 * the NMI watchdog might kill us.
416 */ 419 */
420 local_irq_enable();
417 calibrate_delay(); 421 calibrate_delay();
422 local_irq_disable();
418 Dprintk("Stack at about %p\n",&cpuid); 423 Dprintk("Stack at about %p\n",&cpuid);
419 424
420 disable_APIC_timer(); 425 disable_APIC_timer();