diff options
author | Daniel Xu <dxu@dxuuu.xyz> | 2024-06-12 18:58:29 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-06-12 21:01:31 +0300 |
commit | ac42f636dc11b2e8d6dea9dd5bb10a39c7bec342 (patch) | |
tree | 94ecb2c00b4d6e4efed2f684420bc0109cdee0b3 /tools | |
parent | 89f0b1abac497c47d0851b780abecc756c1e8734 (diff) | |
download | linux-ac42f636dc11b2e8d6dea9dd5bb10a39c7bec342.tar.xz |
bpf: selftests: Fix bpf_map_sum_elem_count() kfunc prototype
The prototype in progs/map_percpu_stats.c is not in line with how the
actual kfuncs are defined in kernel/bpf/map_iter.c. This causes
compilation errors when kfunc prototypes are generated from BTF.
Fix by aligning with actual kfunc definitions.
Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
Link: https://lore.kernel.org/r/0497e11a71472dcb71ada7c90ad691523ae87c3b.1718207789.git.dxu@dxuuu.xyz
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/bpf/progs/map_percpu_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/progs/map_percpu_stats.c b/tools/testing/selftests/bpf/progs/map_percpu_stats.c index 10b2325c1720..63245785eb69 100644 --- a/tools/testing/selftests/bpf/progs/map_percpu_stats.c +++ b/tools/testing/selftests/bpf/progs/map_percpu_stats.c @@ -7,7 +7,7 @@ __u32 target_id; -__s64 bpf_map_sum_elem_count(struct bpf_map *map) __ksym; +__s64 bpf_map_sum_elem_count(const struct bpf_map *map) __ksym; SEC("iter/bpf_map") int dump_bpf_map(struct bpf_iter__bpf_map *ctx) |