diff options
author | Benjamin Tissoires <bentiss@kernel.org> | 2024-02-21 17:25:17 +0100 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-02-23 02:42:23 +0100 |
commit | 55bad79e33aeb670317290158a4b2ff71cdc8380 (patch) | |
tree | 57e5032537f1bcceb4e98608df9ac6dee06f19a6 /kernel/bpf | |
parent | Merge branch 'Check cfi_stubs before registering a struct_ops type.' (diff) | |
download | linux-55bad79e33aeb670317290158a4b2ff71cdc8380.tar.xz linux-55bad79e33aeb670317290158a4b2ff71cdc8380.zip |
bpf: allow more maps in sleepable bpf programs
These 2 maps types are required for HID-BPF when a user wants to do
IO with a device from a sleepable tracing point.
Allowing BPF_MAP_TYPE_QUEUE (and therefore BPF_MAP_TYPE_STACK) allows
for a BPF program to prepare from an IRQ the list of HID commands to send
back to the device and then these commands can be retrieved from the
sleepable trace point.
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Link: https://lore.kernel.org/r/20240221-hid-bpf-sleepable-v3-1-1fb378ca6301@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'kernel/bpf')
-rw-r--r-- | kernel/bpf/verifier.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 011d54a1dc53..88e9d2e4c29f 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -18022,6 +18022,8 @@ static int check_map_prog_compatibility(struct bpf_verifier_env *env, case BPF_MAP_TYPE_SK_STORAGE: case BPF_MAP_TYPE_TASK_STORAGE: case BPF_MAP_TYPE_CGRP_STORAGE: + case BPF_MAP_TYPE_QUEUE: + case BPF_MAP_TYPE_STACK: break; default: verbose(env, |