Lines Matching defs:cond
12 #define VFS_BUG_ON(cond) BUG_ON(cond) argument
13 #define VFS_WARN_ON(cond) (void)WARN_ON(cond) argument
14 #define VFS_WARN_ON_ONCE(cond) (void)WARN_ON_ONCE(cond) argument
15 #define VFS_WARN_ONCE(cond, format...) (void)WARN_ONCE(cond, format) argument
16 #define VFS_WARN(cond, format...) (void)WARN(cond, format) argument
18 #define VFS_BUG_ON_INODE(cond, inode) ({ \ argument
25 #define VFS_WARN_ON_INODE(cond, inode) ({ \ argument
35 #define VFS_BUG_ON(cond) BUILD_BUG_ON_INVALID(cond) argument
36 #define VFS_WARN_ON(cond) BUILD_BUG_ON_INVALID(cond) argument
37 #define VFS_WARN_ON_ONCE(cond) BUILD_BUG_ON_INVALID(cond) argument
38 #define VFS_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond) argument
39 #define VFS_WARN(cond, format...) BUILD_BUG_ON_INVALID(cond) argument
41 #define VFS_BUG_ON_INODE(cond, inode) VFS_BUG_ON(cond) argument
42 #define VFS_WARN_ON_INODE(cond, inode) BUILD_BUG_ON_INVALID(cond) argument