diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2014-06-04 19:06:59 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:53:58 -0400 |
commit | 02a8efeda894d3541c7143ed818b25b299504190 (patch) | |
tree | b1ce60f0c8cae5cadcfd84c84e6e684af0af8ca9 /include/linux/mmdebug.h | |
parent | ae3a8c1c235345dfeb9b4b8c9e118802e3e84533 (diff) |
include/linux/mmdebug.h: add VM_WARN_ON() and VM_WARN_ON_ONCE()
WARN_ON() and WARN_ON_ONCE(), dependent on CONFIG_DEBUG_VM
Cc: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/mmdebug.h')
-rw-r--r-- | include/linux/mmdebug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mmdebug.h b/include/linux/mmdebug.h index 2d57efa64cc1..a3499d7b0e8a 100644 --- a/include/linux/mmdebug.h +++ b/include/linux/mmdebug.h | |||
@@ -11,9 +11,13 @@ extern void dump_page_badflags(struct page *page, const char *reason, | |||
11 | #define VM_BUG_ON(cond) BUG_ON(cond) | 11 | #define VM_BUG_ON(cond) BUG_ON(cond) |
12 | #define VM_BUG_ON_PAGE(cond, page) \ | 12 | #define VM_BUG_ON_PAGE(cond, page) \ |
13 | do { if (unlikely(cond)) { dump_page(page, NULL); BUG(); } } while (0) | 13 | do { if (unlikely(cond)) { dump_page(page, NULL); BUG(); } } while (0) |
14 | #define VM_WARN_ON(cond) WARN_ON(cond) | ||
15 | #define VM_WARN_ON_ONCE(cond) WARN_ON_ONCE(cond) | ||
14 | #else | 16 | #else |
15 | #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) | 17 | #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) |
16 | #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond) | 18 | #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond) |
19 | #define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond) | ||
20 | #define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond) | ||
17 | #endif | 21 | #endif |
18 | 22 | ||
19 | #ifdef CONFIG_DEBUG_VIRTUAL | 23 | #ifdef CONFIG_DEBUG_VIRTUAL |