Linux-libre 3.16.85-gnu
[librecmc/linux-libre.git] / include / linux / mmdebug.h
1 #ifndef LINUX_MM_DEBUG_H
2 #define LINUX_MM_DEBUG_H 1
3
4 #include <linux/bug.h>
5 #include <linux/stringify.h>
6
7 struct page;
8
9 extern void dump_page(struct page *page, const char *reason);
10 extern void dump_page_badflags(struct page *page, const char *reason,
11                                unsigned long badflags);
12
13 #ifdef CONFIG_DEBUG_VM
14 #define VM_BUG_ON(cond) BUG_ON(cond)
15 #define VM_BUG_ON_PAGE(cond, page)                                      \
16         do {                                                            \
17                 if (unlikely(cond)) {                                   \
18                         dump_page(page, "VM_BUG_ON_PAGE(" __stringify(cond)")");\
19                         BUG();                                          \
20                 }                                                       \
21         } while (0)
22 #define VM_WARN_ON(cond) WARN_ON(cond)
23 #define VM_WARN_ON_ONCE(cond) WARN_ON_ONCE(cond)
24 #else
25 #define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond)
26 #define VM_BUG_ON_PAGE(cond, page) VM_BUG_ON(cond)
27 #define VM_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond)
28 #define VM_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond)
29 #endif
30
31 #ifdef CONFIG_DEBUG_VIRTUAL
32 #define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
33 #else
34 #define VIRTUAL_BUG_ON(cond) do { } while (0)
35 #endif
36
37 #endif