Lines Matching refs:cond
48 #define bch2_fs_inconsistent_on(cond, ...) \ argument
50 bool _ret = unlikely(!!(cond)); \
67 #define bch2_trans_inconsistent_on(cond, trans, ...) \ argument
69 bool _ret = unlikely(!!(cond)); \
123 #define __fsck_err_on(cond, c, _flags, _err_type, ...) \ argument
130 (unlikely(cond) ? __fsck_err(c, _flags, _err_type, __VA_ARGS__) : false);\
136 #define mustfix_fsck_err_on(cond, c, _err_type, ...) \ argument
137 __fsck_err_on(cond, c, FSCK_CAN_FIX, _err_type, __VA_ARGS__)
142 #define fsck_err_on(cond, c, _err_type, ...) \ argument
143 __fsck_err_on(cond, c, FSCK_CAN_FIX|FSCK_CAN_IGNORE, _err_type, __VA_ARGS__)
148 #define log_fsck_err_on(cond, ...) \ argument
150 bool _ret = unlikely(!!(cond)); \
180 #define bkey_fsck_err_on(cond, ...) \ argument
182 if (unlikely(cond)) \
199 #define bch2_fs_fatal_err_on(cond, c, ...) \ argument
201 bool _ret = unlikely(!!(cond)); \
219 #define bch2_dev_io_err_on(cond, ca, _type, ...) \ argument
221 bool _ret = (cond); \
230 #define bch2_dev_inum_io_err_on(cond, ca, _type, ...) \ argument
232 bool _ret = (cond); \