Searched refs:inner_map_meta (Results 1 – 5 of 5) sorted by relevance
11 struct bpf_map *inner_map, *inner_map_meta; in bpf_map_meta_alloc() local21 if (inner_map->inner_map_meta) { in bpf_map_meta_alloc()36 inner_map_meta_size = sizeof(*inner_map_meta); in bpf_map_meta_alloc()41 inner_map_meta = kzalloc(inner_map_meta_size, GFP_USER); in bpf_map_meta_alloc()42 if (!inner_map_meta) { in bpf_map_meta_alloc()47 inner_map_meta->map_type = inner_map->map_type; in bpf_map_meta_alloc()48 inner_map_meta->key_size = inner_map->key_size; in bpf_map_meta_alloc()49 inner_map_meta->value_size = inner_map->value_size; in bpf_map_meta_alloc()50 inner_map_meta->map_flags = inner_map->map_flags; in bpf_map_meta_alloc()51 inner_map_meta->max_entries = inner_map->max_entries; in bpf_map_meta_alloc()[all …]
1222 struct bpf_map *map, *inner_map_meta; in array_of_map_alloc() local1224 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd); in array_of_map_alloc()1225 if (IS_ERR(inner_map_meta)) in array_of_map_alloc()1226 return inner_map_meta; in array_of_map_alloc()1230 bpf_map_meta_free(inner_map_meta); in array_of_map_alloc()1234 map->inner_map_meta = inner_map_meta; in array_of_map_alloc()1244 bpf_map_meta_free(map->inner_map_meta); in array_of_map_free()
2072 struct bpf_map *map, *inner_map_meta; in htab_of_map_alloc() local2074 inner_map_meta = bpf_map_meta_alloc(attr->inner_map_fd); in htab_of_map_alloc()2075 if (IS_ERR(inner_map_meta)) in htab_of_map_alloc()2076 return inner_map_meta; in htab_of_map_alloc()2080 bpf_map_meta_free(inner_map_meta); in htab_of_map_alloc()2084 map->inner_map_meta = inner_map_meta; in htab_of_map_alloc()2119 bpf_map_meta_free(map->inner_map_meta); in htab_of_map_free()
7230 if (map->inner_map_meta) { in mark_ptr_or_null_reg()7232 reg->map_ptr = map->inner_map_meta; in mark_ptr_or_null_reg()9693 if (map->inner_map_meta && !check_map_prealloc(map->inner_map_meta)) in is_preallocated_map()
146 struct bpf_map *inner_map_meta; member