summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/crash.c
diff options
context:
space:
mode:
authorVivek Goyal2006-09-26 10:52:27 +0200
committerAndi Kleen2006-09-26 10:52:27 +0200
commit3f22c5789eb76fd9aabe4be37ba609c793f046f9 (patch)
tree01edecc58578ea4bc4771a754bb74fe704836f1d /arch/x86_64/kernel/crash.c
parent[PATCH] i386: make functions static (diff)
downloadkernel-qcow2-linux-3f22c5789eb76fd9aabe4be37ba609c793f046f9.tar.gz
kernel-qcow2-linux-3f22c5789eb76fd9aabe4be37ba609c793f046f9.tar.xz
kernel-qcow2-linux-3f22c5789eb76fd9aabe4be37ba609c793f046f9.zip
[PATCH] kdump x86_64 nmi event notification fix
After a crash we should wait for NMI IPI event and not for external NMI or NMI watchdog tick. Signed-off-by: Vivek Goyal <vgoyal@in.ibm.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Don Zickus <dzickus@redhat.com> Cc: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/crash.c')
-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 44c8af65325e..fc57a139123e 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,
struct pt_regs *regs;
int cpu;
- if (val != DIE_NMI)
+ if (val != DIE_NMI_IPI)
return NOTIFY_OK;
regs = ((struct die_args *)data)->regs;
@@ -114,7 +114,7 @@ static int crash_nmi_callback(struct notifier_block *self,
* an NMI if system was initially booted with nmi_watchdog parameter.
*/
if (cpu == crashing_cpu)
- return 1;
+ return NOTIFY_STOP;
local_irq_disable();
crash_save_this_cpu(regs, cpu);