diff options
-rw-r--r-- | include/asm-generic/bug.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index e5a3f5880001..12b250cdda81 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h | |||
@@ -165,6 +165,22 @@ extern void warn_slowpath_null(const char *file, const int line); | |||
165 | #define WARN_ON_RATELIMIT(condition, state) \ | 165 | #define WARN_ON_RATELIMIT(condition, state) \ |
166 | WARN_ON((condition) && __ratelimit(state)) | 166 | WARN_ON((condition) && __ratelimit(state)) |
167 | 167 | ||
168 | #define __WARN_RATELIMIT(condition, state, format...) \ | ||
169 | ({ \ | ||
170 | int rtn = 0; \ | ||
171 | if (unlikely(__ratelimit(state))) \ | ||
172 | rtn = WARN(condition, format); \ | ||
173 | rtn; \ | ||
174 | }) | ||
175 | |||
176 | #define WARN_RATELIMIT(condition, format...) \ | ||
177 | ({ \ | ||
178 | static DEFINE_RATELIMIT_STATE(_rs, \ | ||
179 | DEFAULT_RATELIMIT_INTERVAL, \ | ||
180 | DEFAULT_RATELIMIT_BURST); \ | ||
181 | __WARN_RATELIMIT(condition, &_rs, format); \ | ||
182 | }) | ||
183 | |||
168 | /* | 184 | /* |
169 | * WARN_ON_SMP() is for cases that the warning is either | 185 | * WARN_ON_SMP() is for cases that the warning is either |
170 | * meaningless for !SMP or may even cause failures. | 186 | * meaningless for !SMP or may even cause failures. |