blob: 580bd587d916cfa28116e814b24639e1719efe5c [file] [log] [blame]
Jiri Slaby59ea7462008-06-12 13:56:40 +02001#ifndef LINUX_MM_DEBUG_H
2#define LINUX_MM_DEBUG_H 1
3
Jiri Slaby59ea7462008-06-12 13:56:40 +02004#ifdef CONFIG_DEBUG_VM
5#define VM_BUG_ON(cond) BUG_ON(cond)
6#else
Konstantin Khlebnikov02602a12012-05-29 15:06:28 -07007#define VM_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond)
Jiri Slaby59ea7462008-06-12 13:56:40 +02008#endif
9
10#ifdef CONFIG_DEBUG_VIRTUAL
11#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
12#else
Ingo Molnar7aa413d2008-06-19 13:28:11 +020013#define VIRTUAL_BUG_ON(cond) do { } while (0)
Jiri Slaby59ea7462008-06-12 13:56:40 +020014#endif
15
16#endif