linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch] x86: print out early faults via early_printk()
@ 2006-02-06 20:00 Ingo Molnar
  0 siblings, 0 replies; only message in thread
From: Ingo Molnar @ 2006-02-06 20:00 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton

lost a few hours debugging an early-bootup fault within printk itself, 
which manifested itself as a hard to debug early hang.

This patch makes it much easier by printing out early faults via 
early_printk(), which function is alot simpler than a full printk, and 
hence more likely to succeed in emergencies. (We do not recover from 
early faults anyway, so there's no loss from not having these messages 
in the normal printk buffer.)

Signed-off-by: Ingo Molnar <mingo@elte.hu>

----
 arch/i386/kernel/head.S |    4 ++++
 1 files changed, 4 insertions(+)

Index: linux/arch/i386/kernel/head.S
===================================================================
--- linux.orig/arch/i386/kernel/head.S
+++ linux/arch/i386/kernel/head.S
@@ -398,7 +398,11 @@ ignore_int:
 	pushl 32(%esp)
 	pushl 40(%esp)
 	pushl $int_msg
+#ifdef CONFIG_EARLY_PRINTK
+	call early_printk
+#else
 	call printk
+#endif
 	addl $(5*4),%esp
 	popl %ds
 	popl %es

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2006-02-06 20:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-06 20:00 [patch] x86: print out early faults via early_printk() Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).