Searched refs:bpf_map_push_elem (Results 1 – 6 of 6) sorted by relevance
/openbmc/linux/Documentation/bpf/ |
H A D | map_queue_stack.rst | 31 bpf_map_push_elem() 36 long bpf_map_push_elem(struct bpf_map *map, const void *value, u64 flags) 39 ``bpf_map_push_elem`` helper. The ``flags`` parameter must be set to 80 same semantics as the ``bpf_map_push_elem`` kernel helper. Returns ``0`` on
|
H A D | map_bloom_filter.rst | 23 BPF programs must use ``bpf_map_push_elem`` to add an element to the 54 bpf_map_push_elem() 59 long bpf_map_push_elem(struct bpf_map *map, const void *value, u64 flags) 62 ``bpf_map_push_elem()`` helper. The ``flags`` parameter must be set to
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_queue_stack_map.h | 50 err = bpf_map_push_elem(&map_out, &iph->saddr, 0); in _test()
|
H A D | test_map_ops.c | 72 err = bpf_map_push_elem(&stack_map, &val, 0); in map_push()
|
H A D | bloom_filter_bench.c | 77 err = bpf_map_push_elem(data->map, val, 0); in bloom_callback()
|
/openbmc/linux/kernel/bpf/ |
H A D | helpers.c | 88 BPF_CALL_3(bpf_map_push_elem, struct bpf_map *, map, void *, value, u64, flags) in BPF_CALL_3() argument 94 .func = bpf_map_push_elem,
|