diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2022-08-06 00:48:14 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2022-08-09 19:11:17 +0300 |
commit | fa96b24204af42274ec13dfb2f2e6990d7510e55 (patch) | |
tree | ccc467d01ec4d09c09f9531b43e16b16ac6e490e /include/linux/btf.h | |
parent | ca34ce29fc4b0e929cc6aada40829d17ab50fee4 (diff) | |
download | linux-fa96b24204af42274ec13dfb2f2e6990d7510e55.tar.xz |
btf: Add a new kfunc flag which allows to mark a function to be sleepable
This allows to declare a kfunc as sleepable and prevents its use in
a non sleepable program.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Co-developed-by: Yosry Ahmed <yosryahmed@google.com>
Signed-off-by: Yosry Ahmed <yosryahmed@google.com>
Signed-off-by: Hao Luo <haoluo@google.com>
Link: https://lore.kernel.org/r/20220805214821.1058337-2-haoluo@google.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux/btf.h')
-rw-r--r-- | include/linux/btf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/btf.h b/include/linux/btf.h index cdb376d53238..976cbdd2981f 100644 --- a/include/linux/btf.h +++ b/include/linux/btf.h @@ -49,6 +49,7 @@ * for this case. */ #define KF_TRUSTED_ARGS (1 << 4) /* kfunc only takes trusted pointer arguments */ +#define KF_SLEEPABLE (1 << 5) /* kfunc may sleep */ struct btf; struct btf_member; |