diff options
| author | Andrii Nakryiko <[email protected]> | 2024-09-05 21:05:20 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2024-09-05 23:58:51 +0000 |
| commit | 2db2b8cb8f96bb1def9904abbc859d95e3fbf99c (patch) | |
| tree | 1de50f1aa2169ef52af4f3c2bf745928f39b259a | |
| parent | bpf: use type_may_be_null() helper for nullable-param check (diff) | |
| download | kernel-2db2b8cb8f96bb1def9904abbc859d95e3fbf99c.tar.gz kernel-2db2b8cb8f96bb1def9904abbc859d95e3fbf99c.zip | |
bpf: change int cmd argument in __sys_bpf into typed enum bpf_cmd
This improves BTF data recorded about this function and makes
debugging/tracing better, because now command can be displayed as
symbolic name, instead of obscure number.
Signed-off-by: Andrii Nakryiko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
| -rw-r--r-- | kernel/bpf/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/syscall.c b/kernel/bpf/syscall.c index fc62f5c4faf9..6988e432fc3d 100644 --- a/kernel/bpf/syscall.c +++ b/kernel/bpf/syscall.c @@ -5670,7 +5670,7 @@ static int token_create(union bpf_attr *attr) return bpf_token_create(attr); } -static int __sys_bpf(int cmd, bpfptr_t uattr, unsigned int size) +static int __sys_bpf(enum bpf_cmd cmd, bpfptr_t uattr, unsigned int size) { union bpf_attr attr; int err; |
