Lines Matching defs:condition
55 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument
85 #define WARN_ON(condition) ({ \ argument
94 #define WARN(condition, format...) ({ \ argument
102 #define WARN_TAINT(condition, taint, format...) ({ \ argument
109 #define WARN_ON_ONCE(condition) ({ \ argument
119 #define WARN_ONCE(condition, format...) ({ \ argument
129 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \ argument
145 #define BUG_ON(condition) do { if (condition) ; } while (0) argument
149 #define WARN_ON(condition) ({ \ argument
156 #define WARN(condition, format...) ({ \ argument
163 #define WARN_ON_ONCE(condition) WARN_ON(condition) argument
164 #define WARN_ONCE(condition, format...) WARN(condition, format) argument
165 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) argument
166 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format) argument