diff options
| author | Anton Protopopov <[email protected]> | 2023-07-19 09:29:52 +0000 |
|---|---|---|
| committer | Alexei Starovoitov <[email protected]> | 2023-07-19 09:48:53 -0700 |
| commit | 72829b1c1f1601015cd7332b968befcf5e636c24 (patch) | |
| tree | 591c3e53fbc4e755d8886eb178fe8e75cedc006c /tools/perf/scripts/python | |
| parent | 9c29804961c1bbf5c879a1879fe5fcac6364736f (diff) | |
bpf: allow any program to use the bpf_map_sum_elem_count kfunc
Register the bpf_map_sum_elem_count func for all programs, and update the
map_ptr subtest of the test_progs test to test the new functionality.
The usage is allowed as long as the pointer to the map is trusted (when
using tracing programs) or is a const pointer to map, as in the following
example:
struct {
__uint(type, BPF_MAP_TYPE_HASH);
...
} hash SEC(".maps");
...
static inline int some_bpf_prog(void)
{
struct bpf_map *map = (struct bpf_map *)&hash;
__s64 count;
count = bpf_map_sum_elem_count(map);
...
}
Signed-off-by: Anton Protopopov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Alexei Starovoitov <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions