Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Daniel Xu and committed by
Alexei Starovoitov
ac42f636 89f0b1ab

+1 -1
+1 -1
tools/testing/selftests/bpf/progs/map_percpu_stats.c
··· 7 7 8 8 __u32 target_id; 9 9 10 - __s64 bpf_map_sum_elem_count(struct bpf_map *map) __ksym; 10 + __s64 bpf_map_sum_elem_count(const struct bpf_map *map) __ksym; 11 11 12 12 SEC("iter/bpf_map") 13 13 int dump_bpf_map(struct bpf_iter__bpf_map *ctx)