aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86_64/kernel/crash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/crash.c b/arch/x86_64/kernel/crash.c
index 44c8af6532..fc57a13912 100644
--- a/arch/x86_64/kernel/crash.c
+++ b/arch/x86_64/kernel/crash.c
@@ -102,7 +102,7 @@ static int crash_nmi_callback(struct notifier_block *self,
102 struct pt_regs *regs; 102 struct pt_regs *regs;
103 int cpu; 103 int cpu;
104 104
105 if (val != DIE_NMI) 105 if (val != DIE_NMI_IPI)
106 return NOTIFY_OK; 106 return NOTIFY_OK;
107 107
108 regs = ((struct die_args *)data)->regs; 108 regs = ((struct die_args *)data)->regs;
@@ -114,7 +114,7 @@ static int crash_nmi_callback(struct notifier_block *self,
114 * an NMI if system was initially booted with nmi_watchdog parameter. 114 * an NMI if system was initially booted with nmi_watchdog parameter.
115 */ 115 */
116 if (cpu == crashing_cpu) 116 if (cpu == crashing_cpu)
117 return 1; 117 return NOTIFY_STOP;
118 local_irq_disable(); 118 local_irq_disable();
119 119
120 crash_save_this_cpu(regs, cpu); 120 crash_save_this_cpu(regs, cpu);