Symbol: BPF_MAP_TYPE_LPM_TRIE
include/linux/bpf_types.h
103
BPF_MAP_TYPE(BPF_MAP_TYPE_LPM_TRIE, trie_map_ops)
kernel/bpf/syscall.c
1480
case BPF_MAP_TYPE_LPM_TRIE:
samples/bpf/map_perf_test.bpf.c
82
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
samples/bpf/xdp_router_ipv4.bpf.c
43
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
tools/lib/bpf/libbpf.c
171
[BPF_MAP_TYPE_LPM_TRIE] = "lpm_trie",
tools/lib/bpf/libbpf_probes.c
297
case BPF_MAP_TYPE_LPM_TRIE:
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
255
map = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL,
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
365
map_fd_ipv4 = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL,
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
370
map_fd_ipv6 = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL,
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
452
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL,
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
562
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL, key_size, sizeof(value), 100, &opts);
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
774
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, NULL, key_size, value_size, 100, &opts);
tools/testing/selftests/bpf/map_tests/lpm_trie_map_basic_ops.c
797
fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, "lpm_trie", key_size, value_size, max_entries,
tools/testing/selftests/bpf/map_tests/lpm_trie_map_batch_ops.c
80
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, "lpm_trie_map",
tools/testing/selftests/bpf/map_tests/lpm_trie_map_get_next_key.c
75
map_fd = bpf_map_create(BPF_MAP_TYPE_LPM_TRIE, "lpm_trie_map",
tools/testing/selftests/bpf/progs/lpm_trie_bench.c
21
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
tools/testing/selftests/bpf/progs/lpm_trie_bench.c
47
if (map_type != BPF_MAP_TYPE_LPM_TRIE)
tools/testing/selftests/bpf/progs/lpm_trie_map.c
14
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
tools/testing/selftests/bpf/progs/map_ptr_kern.c
324
__uint(type, BPF_MAP_TYPE_LPM_TRIE);
tools/testing/selftests/bpf/progs/map_ptr_kern.c
681
VERIFY_TYPE(BPF_MAP_TYPE_LPM_TRIE, check_lpm_trie);
tools/testing/selftests/bpf/progs/xdpwall.c
58
__uint(type, BPF_MAP_TYPE_LPM_TRIE);