Home
last modified time | relevance | path

Searched refs:percpu_hash (Results 1 – 7 of 7) sorted by relevance

/external/bcc/src/cc/export/
Dhelpers.h281 BPF_TABLE("percpu_hash", u64, u64, _name, 10240)
283 BPF_TABLE("percpu_hash", _key_type, u64, _name, 10240)
285 BPF_TABLE("percpu_hash", _key_type, _leaf_type, _name, 10240)
287 BPF_TABLE("percpu_hash", _key_type, _leaf_type, _name, _size)
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dlsm.c45 } percpu_hash SEC(".maps");
134 value = bpf_map_lookup_elem(&percpu_hash, &key); in BPF_PROG()
Dmap_ptr_kern.c210 struct bpf_htab *percpu_hash = (struct bpf_htab *)&m_percpu_hash; in check_percpu_hash() local
213 VERIFY(check_default(&percpu_hash->map, map)); in check_percpu_hash()
/external/bcc/tools/
Dkvmexit_example.txt169 We use a PERCPU_ARRAY: pcpuArrayA and a percpu_hash: hashA to collaboratively
174 things up; and for other cases, then use a percpu_hash.
/external/bpftool/docs/
Dbpftool-map.rst52 | *TYPE* := { **hash** | **array** | **prog_array** | **perf_event_array** | **percpu_hash**
/external/bpftool/bash-completion/
Dbpftool707 prog_array perf_event_array percpu_hash \
/external/bcc/docs/
Dreference_guide.md1038 This is a wrapper macro for `BPF_TABLE("percpu_hash", ...)`.