blob: baa8eabbaa56b7ef2c8367ee7a5c407b27cb18c8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Andrew Jones851cf6e2013-08-09 19:51:57 +05302#ifndef _LINUX_JUMP_LABEL_RATELIMIT_H
3#define _LINUX_JUMP_LABEL_RATELIMIT_H
4
5#include <linux/jump_label.h>
6#include <linux/workqueue.h>
7
8#if defined(CC_HAVE_ASM_GOTO) && defined(CONFIG_JUMP_LABEL)
9struct static_key_deferred {
10 struct static_key key;
11 unsigned long timeout;
12 struct delayed_work work;
13};
14#endif
15
16#ifdef HAVE_JUMP_LABEL
17extern void static_key_slow_dec_deferred(struct static_key_deferred *key);
David Matlackb6416e62016-12-16 14:30:35 -080018extern void static_key_deferred_flush(struct static_key_deferred *key);
Andrew Jones851cf6e2013-08-09 19:51:57 +053019extern void
20jump_label_rate_limit(struct static_key_deferred *key, unsigned long rl);
21
22#else /* !HAVE_JUMP_LABEL */
23struct static_key_deferred {
24 struct static_key key;
25};
26static inline void static_key_slow_dec_deferred(struct static_key_deferred *key)
27{
Borislav Petkov5cdda512017-10-18 17:24:28 +020028 STATIC_KEY_CHECK_USE(key);
Andrew Jones851cf6e2013-08-09 19:51:57 +053029 static_key_slow_dec(&key->key);
30}
David Matlackb6416e62016-12-16 14:30:35 -080031static inline void static_key_deferred_flush(struct static_key_deferred *key)
32{
Borislav Petkov5cdda512017-10-18 17:24:28 +020033 STATIC_KEY_CHECK_USE(key);
David Matlackb6416e62016-12-16 14:30:35 -080034}
Andrew Jones851cf6e2013-08-09 19:51:57 +053035static inline void
36jump_label_rate_limit(struct static_key_deferred *key,
37 unsigned long rl)
38{
Borislav Petkov5cdda512017-10-18 17:24:28 +020039 STATIC_KEY_CHECK_USE(key);
Andrew Jones851cf6e2013-08-09 19:51:57 +053040}
41#endif /* HAVE_JUMP_LABEL */
42#endif /* _LINUX_JUMP_LABEL_RATELIMIT_H */