[PATCH 6/7] i386, dumpstack: use oops_begin/oops_end in die_nmi

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Alexander van Heukelum
Date: Wednesday, October 22, 2008 - 3:00 am

Use oops_begin and oops_end in die_nmi.

Whitespace-only changes on x86_64, to make it equal to i386's
version.

Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm>
---
 arch/x86/kernel/dumpstack_32.c |   33 +++++++++++----------------------
 arch/x86/kernel/dumpstack_64.c |    4 ++--
 2 files changed, 13 insertions(+), 24 deletions(-)

diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c
index 7c7d691..e91ae34 100644
--- a/arch/x86/kernel/dumpstack_32.c
+++ b/arch/x86/kernel/dumpstack_32.c
@@ -390,40 +390,29 @@ void die(const char *str, struct pt_regs *regs, long err)
 	oops_end(flags, regs, sig);
 }
 
-static DEFINE_SPINLOCK(nmi_print_lock);
-
 void notrace __kprobes
 die_nmi(char *str, struct pt_regs *regs, int do_panic)
 {
+	unsigned long flags;
+
 	if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, 2, SIGINT) == NOTIFY_STOP)
 		return;
 
-	spin_lock(&nmi_print_lock);
 	/*
-	* We are in trouble anyway, lets at least try
-	* to get a message out:
-	*/
-	bust_spinlocks(1);
+	 * We are in trouble anyway, lets at least try
+	 * to get a message out.
+	 */
+	flags = oops_begin();
 	printk(KERN_EMERG "%s", str);
 	printk(" on CPU%d, ip %08lx, registers:\n",
 		smp_processor_id(), regs->ip);
 	show_registers(regs);
-	if (do_panic)
+	oops_end(flags, regs, 0);
+	if (do_panic || panic_on_oops)
 		panic("Non maskable interrupt");
-	console_silent();
-	spin_unlock(&nmi_print_lock);
-
-	/*
-	 * If we are in kernel we are probably nested up pretty bad
-	 * and might aswell get out now while we still can:
-	 */
-	if (!user_mode_vm(regs)) {
-		current->thread.trap_no = 2;
-		crash_kexec(regs);
-	}
-
-	bust_spinlocks(0);
-	do_exit(SIGSEGV);
+	nmi_exit();
+	local_irq_enable();
+	do_exit(SIGBUS);
 }
 
 static int __init oops_setup(char *s)
diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c
index dc6162b..831e1e1 100644
--- a/arch/x86/kernel/dumpstack_64.c
+++ b/arch/x86/kernel/dumpstack_64.c
@@ -519,7 +519,7 @@ void die(const char *str, struct pt_regs *regs, long err)
 	oops_end(flags, regs, sig);
 }
 
-notrace __kprobes void
+void notrace __kprobes
 die_nmi(char *str, struct pt_regs *regs, int do_panic)
 {
 	unsigned long flags;
@@ -527,11 +527,11 @@ die_nmi(char *str, struct pt_regs *regs, int do_panic)
 	if (notify_die(DIE_NMIWATCHDOG, str, regs, 0, 2, SIGINT) == NOTIFY_STOP)
 		return;
 
-	flags = oops_begin();
 	/*
 	 * We are in trouble anyway, lets at least try
 	 * to get a message out.
 	 */
+	flags = oops_begin();
 	printk(KERN_EMERG "%s", str);
 	printk(" on CPU%d, ip %08lx, registers:\n",
 		smp_processor_id(), regs->ip);
-- 
1.5.4.3

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] x86, dumpstack: some more unification, Alexander van Heukelum, (Mon Oct 20, 8:07 am)
[PATCH] x86: make oops_begin and oops_end equal, Alexander van Heukelum, (Mon Oct 20, 8:08 am)
[PATCH] x86, dumpstack: make die and die_nmi equal, Alexander van Heukelum, (Mon Oct 20, 8:11 am)
Re: [PATCH] x86, dumpstack: some more unification, Neil Horman, (Mon Oct 20, 9:51 am)
Re: [PATCH] x86: make oops_begin and oops_end equal, Neil Horman, (Tue Oct 21, 7:45 am)
Re: [PATCH] x86, dumpstack: make die and die_nmi equal, Neil Horman, (Tue Oct 21, 7:59 am)
[PATCH 0/7] x86, dumpstack: unify oops_begin, oops_end, di ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 1/7] i386, dumpstack: Move crash_kexec before bust_ ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 2/7] x86, dumpstack: let signr=0 signal no do_exit, Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 3/7] x86_64, dumpstack: move kexec_crash from __die ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 4/7] x86, dumpstack: always call oops_exit from oop ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 5/7] i386, dumpstack: use x86_64's method to accoun ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 6/7] i386, dumpstack: use oops_begin/oops_end in di ..., Alexander van Heukelum, (Wed Oct 22, 3:00 am)
[PATCH 7/7] i386, dumpstack: unify die(), Alexander van Heukelum, (Wed Oct 22, 3:00 am)
Re: [PATCH] x86: make oops_begin and oops_end equal, Alexander van Heukelum, (Wed Oct 22, 3:18 am)
Re: [PATCH] x86: make oops_begin and oops_end equal, Neil Horman, (Wed Oct 22, 3:45 am)
Re: [PATCH] x86: make oops_begin and oops_end equal, Ingo Molnar, (Wed Oct 22, 5:02 am)
Re: [PATCH 7/7] i386, dumpstack: unify die(), Neil Horman, (Wed Oct 22, 6:37 am)
Re: [PATCH] x86: make oops_begin and oops_end equal, Neil Horman, (Wed Oct 22, 12:19 pm)
Re: [PATCH] x86: make oops_begin and oops_end equal, Alexander van Heukelum, (Thu Oct 23, 2:22 am)