]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/ratelimit.h
printk: Remove ratelimit.h from kernel.h
[mirror_ubuntu-bionic-kernel.git] / include / linux / ratelimit.h
CommitLineData
717115e1
DY
1#ifndef _LINUX_RATELIMIT_H
2#define _LINUX_RATELIMIT_H
979f693d 3
717115e1 4#include <linux/param.h>
979f693d 5#include <linux/spinlock_types.h>
717115e1 6
979f693d
IM
7#define DEFAULT_RATELIMIT_INTERVAL (5 * HZ)
8#define DEFAULT_RATELIMIT_BURST 10
717115e1
DY
9
10struct ratelimit_state {
979f693d
IM
11 spinlock_t lock; /* protect the state */
12
13 int interval;
14 int burst;
15 int printed;
16 int missed;
17 unsigned long begin;
717115e1
DY
18};
19
979f693d
IM
20#define DEFINE_RATELIMIT_STATE(name, interval_init, burst_init) \
21 \
22 struct ratelimit_state name = { \
23 .lock = __SPIN_LOCK_UNLOCKED(name.lock), \
24 .interval = interval_init, \
25 .burst = burst_init, \
26 }
717115e1
DY
27
28extern int __ratelimit(struct ratelimit_state *rs);
979f693d
IM
29
30#endif /* _LINUX_RATELIMIT_H */