| /linux/tools/testing/selftests/bpf/map_tests/ |
| H A D | map_in_map_batch_ops.c | 66 static int create_outer_map(enum bpf_map_type map_type, __u32 inner_map_fd) in create_outer_map() argument 71 attr.inner_map_fd = inner_map_fd; in create_outer_map() 88 int inner_map_fd, entry, err; in validate_fetch_results() local 93 inner_map_fd = bpf_map_get_fd_by_id(outer_map_value); in validate_fetch_results() 94 CHECK(inner_map_fd < 0, in validate_fetch_results() 98 err = bpf_map_get_next_key(inner_map_fd, NULL, &inner_map_key); in validate_fetch_results() 103 err = bpf_map_lookup_elem(inner_map_fd, &inner_map_key, in validate_fetch_results() 106 close(inner_map_fd); in validate_fetch_results()
|
| H A D | map_percpu_stats.c | 396 .inner_map_fd = create_small_hash(), in create_hash_of_maps() 402 close(map_opts.inner_map_fd); in create_hash_of_maps()
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | bloom_filter_map.c | 112 int outer_map_fd, inner_map_fd, err, i, key = 0; in test_inner_map() local 116 inner_map_fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(*rand_vals), in test_inner_map() 118 if (!ASSERT_GE(inner_map_fd, 0, "bpf_map_create bloom filter inner map")) in test_inner_map() 122 err = bpf_map_update_elem(inner_map_fd, NULL, rand_vals + i, BPF_ANY); in test_inner_map() 129 err = bpf_map_update_elem(outer_map_fd, &key, &inner_map_fd, BPF_ANY); in test_inner_map() 150 close(inner_map_fd); in test_inner_map()
|
| H A D | btf_map_in_map.c | 112 int err, inner_map_fd, zero = 0; in test_diff_size() local 118 inner_map_fd = bpf_map__fd(skel->maps.sockarr_sz2); in test_diff_size() 120 &inner_map_fd, 0); in test_diff_size() 124 inner_map_fd = bpf_map__fd(skel->maps.inner_map_sz2); in test_diff_size() 126 &inner_map_fd, 0); in test_diff_size()
|
| H A D | select_reuseport.c | 73 opts.inner_map_fd = reuseport_array; in create_maps()
|
| /linux/samples/bpf/ |
| H A D | test_map_in_map_user.c | 35 static void check_map_id(int inner_map_fd, int map_in_map_fd, uint32_t key) in check_map_id() argument 41 ret = bpf_map_get_info_by_fd(inner_map_fd, &info, &info_len); in check_map_id()
|
| /linux/tools/bpf/bpftool/ |
| H A D | map.c | 1326 int inner_map_fd; in do_create() local 1331 inner_map_fd = map_parse_fd_and_info(&argc, &argv, in do_create() 1333 if (inner_map_fd < 0) in do_create() 1335 attr.inner_map_fd = inner_map_fd; in do_create() 1364 if (attr.inner_map_fd > 0) in do_create() 1365 close(attr.inner_map_fd); in do_create()
|
| /linux/Documentation/bpf/ |
| H A D | map_of_maps.rst | 98 LIBBPF_OPTS(bpf_map_create_opts, opts, .inner_map_fd = inner_fd);
|
| /linux/tools/lib/bpf/ |
| H A D | libbpf_probes.c | 383 opts.inner_map_fd = fd_inner; in probe_map_create()
|
| H A D | libbpf.c | 575 int inner_map_fd; member 1812 map->inner_map_fd = -1; in bpf_object__add_map() 5354 map->inner_map_fd = map->inner_map->fd; in bpf_object__create_map() 5356 if (map->inner_map_fd >= 0) in bpf_object__create_map() 5357 create_attr.inner_map_fd = map->inner_map_fd; in bpf_object__create_map() 10804 if (map->inner_map_fd != -1) { in bpf_map__set_inner_map_fd() 10812 map->inner_map_fd = fd; in bpf_map__set_inner_map_fd()
|
| /linux/include/uapi/linux/ |
| H A D | bpf.h | 1497 __u32 inner_map_fd; /* fd pointing to the inner map */ 1493 __u32 inner_map_fd; /* fd pointing to the inner map */ global() member
|
| /linux/tools/include/uapi/linux/ |
| H A D | bpf.h | 1497 __u32 inner_map_fd; /* fd pointing to the inner map */ 1493 __u32 inner_map_fd; /* fd pointing to the inner map */ global() member
|