Lines Matching refs:stype
217 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_free() local
219 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_free()
220 bpf_cgroup_storage_free(storages[stype]); in bpf_cgroup_storages_free()
229 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_alloc() local
236 for_each_cgroup_storage_type(stype) { in bpf_cgroup_storages_alloc()
237 map = prog->aux->cgroup_storage[stype]; in bpf_cgroup_storages_alloc()
241 storages[stype] = cgroup_storage_lookup((void *)map, &key, false); in bpf_cgroup_storages_alloc()
242 if (storages[stype]) in bpf_cgroup_storages_alloc()
245 storages[stype] = bpf_cgroup_storage_alloc(prog, stype); in bpf_cgroup_storages_alloc()
246 if (IS_ERR(storages[stype])) { in bpf_cgroup_storages_alloc()
251 new_storages[stype] = storages[stype]; in bpf_cgroup_storages_alloc()
260 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_assign() local
262 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_assign()
263 dst[stype] = src[stype]; in bpf_cgroup_storages_assign()
270 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_link() local
272 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_link()
273 bpf_cgroup_storage_link(storages[stype], cgrp, attach_type); in bpf_cgroup_storages_link()
1592 enum bpf_cgroup_storage_type stype = cgroup_storage_type(map); in BPF_CALL_2() local
1599 storage = ctx->prog_item->cgroup_storage[stype]; in BPF_CALL_2()
1601 if (stype == BPF_CGROUP_STORAGE_SHARED) in BPF_CALL_2()