diff options
author | Namhyung Kim <namhyung@kernel.org> | 2024-10-30 15:28:18 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2024-11-01 11:08:32 -0700 |
commit | 2e9a548009c2d804e55cdd5b0e9903756cf7d9b3 (patch) | |
tree | fed0fee837e2a98507d9d178e122b99a40863fec /tools/perf/scripts/python/stackcollapse.py | |
parent | e626a13f6fbb4697f8734333432dca577628d09a (diff) |
bpf: Add open coded version of kmem_cache iterator
Add a new open coded iterator for kmem_cache which can be called from a
BPF program like below. It doesn't take any argument and traverses all
kmem_cache entries.
struct kmem_cache *pos;
bpf_for_each(kmem_cache, pos) {
...
}
As it needs to grab slab_mutex, it should be called from sleepable BPF
programs only.
Also update the existing iterator code to use the open coded version
internally as suggested by Andrii.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Link: https://lore.kernel.org/r/20241030222819.1800667-1-namhyung@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python/stackcollapse.py')
0 files changed, 0 insertions, 0 deletions