Symbol: BPF_MAP_TYPE_STACK
include/linux/bpf_types.h
128
BPF_MAP_TYPE(BPF_MAP_TYPE_STACK, stack_map_ops)
kernel/bpf/syscall.c
1500
case BPF_MAP_TYPE_STACK:
kernel/bpf/syscall.c
2241
map->map_type == BPF_MAP_TYPE_STACK)) {
kernel/bpf/syscall.c
2267
map->map_type == BPF_MAP_TYPE_STACK) {
kernel/bpf/syscall.c
291
map->map_type == BPF_MAP_TYPE_STACK ||
kernel/bpf/syscall.c
335
map->map_type == BPF_MAP_TYPE_STACK ||
kernel/bpf/verifier.c
17799
case BPF_MAP_TYPE_STACK:
kernel/bpf/verifier.c
8590
case BPF_MAP_TYPE_STACK:
kernel/bpf/verifier.c
8703
map->map_type != BPF_MAP_TYPE_STACK)
kernel/bpf/verifier.c
8709
map->map_type != BPF_MAP_TYPE_STACK &&
tools/lib/bpf/libbpf.c
188
[BPF_MAP_TYPE_STACK] = "stack",
tools/lib/bpf/libbpf.c
5435
case BPF_MAP_TYPE_STACK:
tools/lib/bpf/libbpf_probes.c
322
case BPF_MAP_TYPE_STACK:
tools/testing/selftests/bpf/prog_tests/token.c
530
map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_wo_bpf", 0, 8, 1, &map_opts);
tools/testing/selftests/bpf/prog_tests/token.c
539
map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_wo_bpf", 0, 8, 1, &map_opts);
tools/testing/selftests/bpf/prog_tests/token.c
553
map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_w_bpf", 0, 8, 1, &map_opts);
tools/testing/selftests/bpf/prog_tests/token.c
562
map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_w_bpf", 0, 8, 1, &map_opts);
tools/testing/selftests/bpf/progs/map_ptr_kern.c
596
__uint(type, BPF_MAP_TYPE_STACK);
tools/testing/selftests/bpf/progs/map_ptr_kern.c
712
VERIFY_TYPE(BPF_MAP_TYPE_STACK, check_stack);
tools/testing/selftests/bpf/progs/test_map_ops.c
17
__uint(type, BPF_MAP_TYPE_STACK);
tools/testing/selftests/bpf/progs/test_stack_map.c
3
#define MAP_TYPE BPF_MAP_TYPE_STACK
tools/testing/selftests/bpf/test_maps.c
1598
map_type == BPF_MAP_TYPE_STACK);
tools/testing/selftests/bpf/test_maps.c
1629
test_map_wronly_stack_or_queue(BPF_MAP_TYPE_STACK);
tools/testing/selftests/bpf/test_maps.c
613
fd = bpf_map_create(BPF_MAP_TYPE_STACK, NULL, 4, sizeof(val), MAP_SIZE, &map_opts);
tools/testing/selftests/bpf/test_maps.c
616
fd = bpf_map_create(BPF_MAP_TYPE_STACK, NULL, 0, sizeof(val), MAP_SIZE, &map_opts);