[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1255295071-13664-3-git-send-email-bernhard@bwalle.de>
Date: Sun, 11 Oct 2009 23:04:31 +0200
From: Bernhard Walle <bernhard@...lle.de>
To: akpm@...uxfoundation.org
Cc: alan@...rguk.ukuu.org.uk, linux-kernel@...r.kernel.org,
Bernhard Walle <bernhard@...lle.de>
Subject: [PATCH 2/2] Always print panic message on current console
The kernel offers with TIOCL_GETKMSGREDIRECT ioctl() the possibility to
redirect the kernel messages to a specific console.
However, since it's not possible to switch to the kernel message console after
a panic(), it would be nice if the kernel would print the panic message on the
current console.
Signed-off-by: Bernhard Walle <bernhard@...lle.de>
---
kernel/panic.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/kernel/panic.c b/kernel/panic.c
index 96b45d0..3c84b01 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -22,6 +22,7 @@
#include <linux/init.h>
#include <linux/nmi.h>
#include <linux/dmi.h>
+#include <linux/vt.h>
int panic_on_oops;
static unsigned long tainted_mask;
@@ -65,6 +66,9 @@ NORET_TYPE void panic(const char * fmt, ...)
*/
preempt_disable();
+ /* don't redirect the panic message to some hidden console */
+ vt_kmsg_redirect(0);
+
bust_spinlocks(1);
va_start(args, fmt);
vsnprintf(buf, sizeof(buf), fmt, args);
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists