diff options
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/mce.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c index 721a77ca8115..4825a3d6eb40 100644 --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c | |||
@@ -1991,9 +1991,11 @@ mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) | |||
1991 | break; | 1991 | break; |
1992 | case CPU_DOWN_FAILED: | 1992 | case CPU_DOWN_FAILED: |
1993 | case CPU_DOWN_FAILED_FROZEN: | 1993 | case CPU_DOWN_FAILED_FROZEN: |
1994 | t->expires = round_jiffies(jiffies + | 1994 | if (!mce_ignore_ce && check_interval) { |
1995 | t->expires = round_jiffies(jiffies + | ||
1995 | __get_cpu_var(mce_next_interval)); | 1996 | __get_cpu_var(mce_next_interval)); |
1996 | add_timer_on(t, cpu); | 1997 | add_timer_on(t, cpu); |
1998 | } | ||
1997 | smp_call_function_single(cpu, mce_reenable_cpu, &action, 1); | 1999 | smp_call_function_single(cpu, mce_reenable_cpu, &action, 1); |
1998 | break; | 2000 | break; |
1999 | case CPU_POST_DEAD: | 2001 | case CPU_POST_DEAD: |