From: Jeremy Fitzhardinge <jeremy@goop.org> Date: Fri, 8 Dec 2006 10:36:24 +0000 (-0800) Subject: [PATCH] Fix generic WARN_ON message X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=30e25b71e725b150585e17888b130e3324f8cf7c;p=linux.git [PATCH] Fix generic WARN_ON message A warning is a warning, not a BUG. Signed-off-by: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org> --- diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index 47e3561638b15..a06eecd48292a 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h @@ -35,7 +35,7 @@ struct bug_entry { #define WARN_ON(condition) ({ \ typeof(condition) __ret_warn_on = (condition); \ if (unlikely(__ret_warn_on)) { \ - printk("BUG: warning at %s:%d/%s()\n", __FILE__, \ + printk("WARNING at %s:%d %s()\n", __FILE__, \ __LINE__, __FUNCTION__); \ dump_stack(); \ } \