Lines Matching defs:_map
130 static void *cgroup_storage_lookup_elem(struct bpf_map *_map, void *key)
132 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
181 int bpf_percpu_cgroup_storage_copy(struct bpf_map *_map, void *key,
184 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
200 size = round_up(_map->value_size, 8);
210 int bpf_percpu_cgroup_storage_update(struct bpf_map *_map, void *key,
213 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
234 size = round_up(_map->value_size, 8);
244 static int cgroup_storage_get_next_key(struct bpf_map *_map, void *key,
247 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
332 static void cgroup_storage_map_free(struct bpf_map *_map)
334 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
465 int bpf_cgroup_storage_assign(struct bpf_prog_aux *aux, struct bpf_map *_map)
467 enum bpf_cgroup_storage_type stype = cgroup_storage_type(_map);
470 aux->cgroup_storage[stype] != _map)
473 aux->cgroup_storage[stype] = _map;