diff options
Diffstat (limited to 'include/asm-generic/bug.h')
| -rw-r--r-- | include/asm-generic/bug.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asm-generic/bug.h b/include/asm-generic/bug.h index a346e744e77..a3f738cffdb 100644 --- a/include/asm-generic/bug.h +++ b/include/asm-generic/bug.h @@ -97,6 +97,9 @@ extern void warn_slowpath(const char *file, const int line,  	unlikely(__ret_warn_once);				\  }) +#define WARN_ON_RATELIMIT(condition, state)			\ +		WARN_ON((condition) && __ratelimit(state)) +  #ifdef CONFIG_SMP  # define WARN_ON_SMP(x)			WARN_ON(x)  #else  |