The patch titled panic: always print panic message on current console has been removed from the -mm tree. Its filename was always-print-panic-message-on-current-console.patch This patch was dropped because it was nacked The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: panic: always print panic message on current console From: Bernhard Walle <bernhard@xxxxxxxxx> 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@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/panic.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN kernel/panic.c~always-print-panic-message-on-current-console kernel/panic.c --- a/kernel/panic.c~always-print-panic-message-on-current-console +++ a/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); _ Patches currently in -mm which might be from bernhard@xxxxxxxxx are origin.patch always-print-panic-message-on-current-console.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html