aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmdebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mmdebug.h')
-rw-r--r--include/linux/mmdebug.h4
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