Commit 684f9783 authored by Herbert Xu's avatar Herbert Xu Committed by Linus Torvalds

[PATCH] Let WARN_ON/WARN_ON_ONCE return the condition

Letting WARN_ON/WARN_ON_ONCE return the condition means that you could do

if (WARN_ON(blah)) {
	handle_impossible_case
}

Rather than

if (unlikely(blah)) {
	WARN_ON(1)
	handle_impossible_case
}

I checked all the newly added WARN_ON_ONCE users and none of them test the
return status so we can still change it.

[akpm@osdl.org: warning fix]
[akpm@osdl.org: build fix]
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
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 6299a2de
...@@ -16,12 +16,15 @@ ...@@ -16,12 +16,15 @@
#endif #endif
#ifndef HAVE_ARCH_WARN_ON #ifndef HAVE_ARCH_WARN_ON
#define WARN_ON(condition) do { \ #define WARN_ON(condition) ({ \
if (unlikely((condition)!=0)) { \ typeof(condition) __ret_warn_on = (condition); \
printk("BUG: warning at %s:%d/%s()\n", __FILE__, __LINE__, __FUNCTION__); \ if (unlikely(__ret_warn_on)) { \
dump_stack(); \ printk("BUG: warning at %s:%d/%s()\n", __FILE__, \
} \ __LINE__, __FUNCTION__); \
} while (0) dump_stack(); \
} \
unlikely(__ret_warn_on); \
})
#endif #endif
#else /* !CONFIG_BUG */ #else /* !CONFIG_BUG */
...@@ -34,21 +37,18 @@ ...@@ -34,21 +37,18 @@
#endif #endif
#ifndef HAVE_ARCH_WARN_ON #ifndef HAVE_ARCH_WARN_ON
#define WARN_ON(condition) do { if (condition) ; } while(0) #define WARN_ON(condition) unlikely((condition))
#endif #endif
#endif #endif
#define WARN_ON_ONCE(condition) \ #define WARN_ON_ONCE(condition) ({ \
({ \
static int __warn_once = 1; \ static int __warn_once = 1; \
int __ret = 0; \ typeof(condition) __ret_warn_once = (condition);\
\ \
if (unlikely((condition) && __warn_once)) { \ if (likely(__warn_once)) \
__warn_once = 0; \ if (WARN_ON(__ret_warn_once)) \
WARN_ON(1); \ __warn_once = 0; \
__ret = 1; \ unlikely(__ret_warn_once); \
} \
__ret; \
}) })
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
......
...@@ -70,9 +70,10 @@ struct bug_entry *find_bug(unsigned long bugaddr); ...@@ -70,9 +70,10 @@ struct bug_entry *find_bug(unsigned long bugaddr);
"i" (__FILE__), "i" (__FUNCTION__)); \ "i" (__FILE__), "i" (__FUNCTION__)); \
} while (0) } while (0)
#define WARN_ON(x) do { \ #define WARN_ON(x) ({ \
if (__builtin_constant_p(x)) { \ typeof(x) __ret_warn_on = (x); \
if (x) \ if (__builtin_constant_p(__ret_warn_on)) { \
if (__ret_warn_on) \
__WARN(); \ __WARN(); \
} else { \ } else { \
__asm__ __volatile__( \ __asm__ __volatile__( \
...@@ -80,11 +81,12 @@ struct bug_entry *find_bug(unsigned long bugaddr); ...@@ -80,11 +81,12 @@ struct bug_entry *find_bug(unsigned long bugaddr);
".section __bug_table,\"a\"\n" \ ".section __bug_table,\"a\"\n" \
"\t"PPC_LONG" 1b,%1,%2,%3\n" \ "\t"PPC_LONG" 1b,%1,%2,%3\n" \
".previous" \ ".previous" \
: : "r" ((long)(x)), \ : : "r" (__ret_warn_on), \
"i" (__LINE__ + BUG_WARNING_TRAP), \ "i" (__LINE__ + BUG_WARNING_TRAP), \
"i" (__FILE__), "i" (__FUNCTION__)); \ "i" (__FILE__), "i" (__FUNCTION__)); \
} \ } \
} while (0) unlikely(__ret_warn_on); \
})
#define HAVE_ARCH_BUG #define HAVE_ARCH_BUG
#define HAVE_ARCH_BUG_ON #define HAVE_ARCH_BUG_ON
......
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