public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] get rid of "cut here" from bug output
@ 2010-06-17 12:21 Dan Carpenter
  2010-06-17 12:36 ` Borislav Petkov
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Carpenter @ 2010-06-17 12:21 UTC (permalink / raw)
  To: linux-kernel

It's annoying to have chunks of dmesg output instead just the whole
output.  A lot of times the very interesting information is before
the bug happens.

Signed-off-by: Dan Carpenter <error27@gmail.com>

diff --git a/kernel/panic.c b/kernel/panic.c
index 3b16cd9..2db532a 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -373,7 +373,7 @@ static void warn_slowpath_common(const char *file, int line, void *caller,
 {
 	const char *board;
 
-	printk(KERN_WARNING "------------[ cut here ]------------\n");
+	printk(KERN_WARNING "-----[ paste whole dmesg to bugzilla ]-----\n");
 	printk(KERN_WARNING "WARNING: at %s:%d %pS()\n", file, line, caller);
 	board = dmi_get_system_info(DMI_PRODUCT_NAME);
 	if (board)

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-06-18  9:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-17 12:21 [patch] get rid of "cut here" from bug output Dan Carpenter
2010-06-17 12:36 ` Borislav Petkov
2010-06-18  6:19   ` Andrew Morton
2010-06-18 10:00     ` Borislav Petkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox