Subversion Repositories Kolibri OS

Rev

Rev 6336 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6336 Rev 6936
Line 54... Line 54...
54
#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
54
#define VIRTUAL_BUG_ON(cond) BUG_ON(cond)
55
#else
55
#else
56
#define VIRTUAL_BUG_ON(cond) do { } while (0)
56
#define VIRTUAL_BUG_ON(cond) do { } while (0)
57
#endif
57
#endif
Line -... Line 58...
-
 
58
 
-
 
59
#ifdef CONFIG_DEBUG_VM_PGFLAGS
-
 
60
#define VM_BUG_ON_PGFLAGS(cond, page) VM_BUG_ON_PAGE(cond, page)
-
 
61
#else
-
 
62
#define VM_BUG_ON_PGFLAGS(cond, page) BUILD_BUG_ON_INVALID(cond)
-
 
63
#endif
58
 
64