Commit 30e25b71 authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge Committed by Linus Torvalds

[PATCH] Fix generic WARN_ON message

A warning is a warning, not a BUG.
Signed-off-by: default avatarJeremy Fitzhardinge <jeremy@goop.org>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a8605aef
...@@ -35,7 +35,7 @@ struct bug_entry { ...@@ -35,7 +35,7 @@ struct bug_entry {
#define WARN_ON(condition) ({ \ #define WARN_ON(condition) ({ \
typeof(condition) __ret_warn_on = (condition); \ typeof(condition) __ret_warn_on = (condition); \
if (unlikely(__ret_warn_on)) { \ if (unlikely(__ret_warn_on)) { \
printk("BUG: warning at %s:%d/%s()\n", __FILE__, \ printk("WARNING at %s:%d %s()\n", __FILE__, \
__LINE__, __FUNCTION__); \ __LINE__, __FUNCTION__); \
dump_stack(); \ dump_stack(); \
} \ } \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment