Searched refs:inner_map_meta (Results 1 – 6 of 6) sorted by relevance
25 struct bpf_map *inner_map = map->inner_map_meta; in jeq_infer_not_null_ptr_to_btfid()
470 bpf_arena_alloc_pages(map->inner_map_meta, NULL, map->max_entries, 0, 0); in iter_maps3()
1436 struct bpf_map *map, *inner_map_meta; in array_of_map_alloc() local1438 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd); in array_of_map_alloc()1439 if (IS_ERR(inner_map_meta)) in array_of_map_alloc()1440 return inner_map_meta; in array_of_map_alloc()1444 bpf_map_meta_free(inner_map_meta); in array_of_map_alloc()1448 map->inner_map_meta = inner_map_meta; in array_of_map_alloc()1458 bpf_map_meta_free(map->inner_map_meta); in array_of_map_free()
2677 struct bpf_map *map, *inner_map_meta; in htab_of_map_alloc() local2679 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd); in htab_of_map_alloc()2680 if (IS_ERR(inner_map_meta)) in htab_of_map_alloc()2681 return inner_map_meta; in htab_of_map_alloc()2685 bpf_map_meta_free(inner_map_meta); in htab_of_map_alloc()2689 map->inner_map_meta = inner_map_meta; in htab_of_map_alloc()2724 bpf_map_meta_free(map->inner_map_meta); in htab_of_map_free()
1916 if (map->inner_map_meta) { in refine_map_lookup_value()1918 reg->map_ptr = map->inner_map_meta; in refine_map_lookup_value()1922 if (btf_record_has_field(map->inner_map_meta->record, in refine_map_lookup_value()13348 if (map->inner_map_meta) { in bpf_helper_stack_access_bytes()13349 sz = is_key ? map->inner_map_meta->key_size in bpf_helper_stack_access_bytes()13350 : map->inner_map_meta->value_size; in bpf_helper_stack_access_bytes()
304 struct bpf_map *inner_map_meta; member