2008-07-25 08:45:58 +00:00
|
|
|
#ifndef _LINUX_RATELIMIT_H
|
|
|
|
#define _LINUX_RATELIMIT_H
|
2009-09-22 12:44:11 +00:00
|
|
|
|
2008-07-25 08:45:58 +00:00
|
|
|
#include <linux/param.h>
|
2016-08-02 21:04:04 +00:00
|
|
|
#include <linux/sched.h>
|
2010-05-24 21:33:11 +00:00
|
|
|
#include <linux/spinlock.h>
|
2008-07-25 08:45:58 +00:00
|
|
|
|
2009-09-22 12:44:11 +00:00
|
|
|
#define DEFAULT_RATELIMIT_INTERVAL (5 * HZ)
|
|
|
|
#define DEFAULT_RATELIMIT_BURST 10
|
2008-07-25 08:45:58 +00:00
|
|
|
|
2016-08-02 21:04:04 +00:00
|
|
|
/* issue num suppressed message on exit */
|
|
|
|
#define RATELIMIT_MSG_ON_RELEASE BIT(0)
|
|
|
|
|
2008-07-25 08:45:58 +00:00
|
|
|
struct ratelimit_state {
|
2009-07-25 15:50:36 +00:00
|
|
|
raw_spinlock_t lock; /* protect the state */
|
2009-09-22 12:44:11 +00:00
|
|
|
|
|
|
|
int interval;
|
|
|
|
int burst;
|
|
|
|
int printed;
|
|
|
|
int missed;
|
|
|
|
unsigned long begin;
|
2016-08-02 21:04:04 +00:00
|
|
|
unsigned long flags;
|
2008-07-25 08:45:58 +00:00
|
|
|
};
|
|
|
|
|
2014-12-13 00:57:57 +00:00
|
|
|
#define RATELIMIT_STATE_INIT(name, interval_init, burst_init) { \
|
2009-07-25 15:50:36 +00:00
|
|
|
.lock = __RAW_SPIN_LOCK_UNLOCKED(name.lock), \
|
2009-09-22 12:44:11 +00:00
|
|
|
.interval = interval_init, \
|
|
|
|
.burst = burst_init, \
|
|
|
|
}
|
2008-07-25 08:45:58 +00:00
|
|
|
|
2014-12-13 00:57:57 +00:00
|
|
|
#define RATELIMIT_STATE_INIT_DISABLED \
|
|
|
|
RATELIMIT_STATE_INIT(ratelimit_state, 0, DEFAULT_RATELIMIT_BURST)
|
|
|
|
|
|
|
|
#define DEFINE_RATELIMIT_STATE(name, interval_init, burst_init) \
|
|
|
|
\
|
|
|
|
struct ratelimit_state name = \
|
|
|
|
RATELIMIT_STATE_INIT(name, interval_init, burst_init) \
|
|
|
|
|
2010-05-24 21:33:11 +00:00
|
|
|
static inline void ratelimit_state_init(struct ratelimit_state *rs,
|
|
|
|
int interval, int burst)
|
|
|
|
{
|
2016-08-02 21:04:04 +00:00
|
|
|
memset(rs, 0, sizeof(*rs));
|
|
|
|
|
2009-07-25 15:50:36 +00:00
|
|
|
raw_spin_lock_init(&rs->lock);
|
2016-08-02 21:04:04 +00:00
|
|
|
rs->interval = interval;
|
|
|
|
rs->burst = burst;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ratelimit_default_init(struct ratelimit_state *rs)
|
|
|
|
{
|
|
|
|
return ratelimit_state_init(rs, DEFAULT_RATELIMIT_INTERVAL,
|
|
|
|
DEFAULT_RATELIMIT_BURST);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ratelimit_state_exit(struct ratelimit_state *rs)
|
|
|
|
{
|
|
|
|
if (!(rs->flags & RATELIMIT_MSG_ON_RELEASE))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (rs->missed) {
|
|
|
|
pr_warn("%s: %d output lines suppressed due to ratelimiting\n",
|
|
|
|
current->comm, rs->missed);
|
|
|
|
rs->missed = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
ratelimit_set_flags(struct ratelimit_state *rs, unsigned long flags)
|
|
|
|
{
|
|
|
|
rs->flags = flags;
|
2010-05-24 21:33:11 +00:00
|
|
|
}
|
|
|
|
|
2010-10-26 21:22:49 +00:00
|
|
|
extern struct ratelimit_state printk_ratelimit_state;
|
|
|
|
|
2009-10-23 12:58:11 +00:00
|
|
|
extern int ___ratelimit(struct ratelimit_state *rs, const char *func);
|
|
|
|
#define __ratelimit(state) ___ratelimit(state, __func__)
|
2009-09-22 12:44:11 +00:00
|
|
|
|
2011-05-26 19:00:31 +00:00
|
|
|
#ifdef CONFIG_PRINTK
|
|
|
|
|
2016-12-20 00:23:12 +00:00
|
|
|
#define WARN_ON_RATELIMIT(condition, state) ({ \
|
|
|
|
bool __rtn_cond = !!(condition); \
|
|
|
|
WARN_ON(__rtn_cond && __ratelimit(state)); \
|
|
|
|
__rtn_cond; \
|
|
|
|
})
|
2011-05-26 19:00:31 +00:00
|
|
|
|
2012-10-05 12:57:17 +00:00
|
|
|
#define WARN_RATELIMIT(condition, format, ...) \
|
2011-05-26 19:00:31 +00:00
|
|
|
({ \
|
|
|
|
static DEFINE_RATELIMIT_STATE(_rs, \
|
|
|
|
DEFAULT_RATELIMIT_INTERVAL, \
|
|
|
|
DEFAULT_RATELIMIT_BURST); \
|
2012-10-05 12:57:17 +00:00
|
|
|
int rtn = !!(condition); \
|
|
|
|
\
|
|
|
|
if (unlikely(rtn && __ratelimit(&_rs))) \
|
|
|
|
WARN(rtn, format, ##__VA_ARGS__); \
|
|
|
|
\
|
|
|
|
rtn; \
|
2011-05-26 19:00:31 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define WARN_ON_RATELIMIT(condition, state) \
|
|
|
|
WARN_ON(condition)
|
|
|
|
|
2012-10-05 12:57:17 +00:00
|
|
|
#define WARN_RATELIMIT(condition, format, ...) \
|
2011-05-26 19:00:31 +00:00
|
|
|
({ \
|
2012-10-05 12:57:17 +00:00
|
|
|
int rtn = WARN(condition, format, ##__VA_ARGS__); \
|
2011-05-26 19:00:31 +00:00
|
|
|
rtn; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-09-22 12:44:11 +00:00
|
|
|
#endif /* _LINUX_RATELIMIT_H */
|