2 * ratelimit.c - Do something with rate limit.
4 * Isolated from kernel/printk.c by Dave Young <hidave.darkstar@gmail.com>
6 * 2008-05-01 rewrite the function and use a ratelimit_state data struct as
7 * parameter. Now every user can use their own standalone ratelimit_state.
9 * This file is released under the GPLv2.
12 #include <linux/ratelimit.h>
13 #include <linux/jiffies.h>
14 #include <linux/module.h>
17 * __ratelimit - rate limiting
18 * @rs: ratelimit_state data
20 * This enforces a rate limit: not more than @rs->ratelimit_burst callbacks
21 * in every @rs->ratelimit_jiffies
23 int ___ratelimit(struct ratelimit_state *rs, const char *func)
32 * If we contend on this state's lock then almost
33 * by definition we are too busy to print a message,
34 * in addition to the one that will be printed by
35 * the entity that is holding the lock already:
37 if (!spin_trylock_irqsave(&rs->lock, flags))
43 if (time_is_before_jiffies(rs->begin + rs->interval)) {
45 printk(KERN_WARNING "%s: %d callbacks suppressed\n",
51 if (rs->burst && rs->burst > rs->printed) {
58 spin_unlock_irqrestore(&rs->lock, flags);
62 EXPORT_SYMBOL(___ratelimit);