Lines Matching refs:stype
229 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_free() local
231 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_free()
232 bpf_cgroup_storage_free(storages[stype]); in bpf_cgroup_storages_free()
241 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_alloc() local
248 for_each_cgroup_storage_type(stype) { in bpf_cgroup_storages_alloc()
249 map = prog->aux->cgroup_storage[stype]; in bpf_cgroup_storages_alloc()
253 storages[stype] = cgroup_storage_lookup((void *)map, &key, false); in bpf_cgroup_storages_alloc()
254 if (storages[stype]) in bpf_cgroup_storages_alloc()
257 storages[stype] = bpf_cgroup_storage_alloc(prog, stype); in bpf_cgroup_storages_alloc()
258 if (IS_ERR(storages[stype])) { in bpf_cgroup_storages_alloc()
263 new_storages[stype] = storages[stype]; in bpf_cgroup_storages_alloc()
272 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_assign() local
274 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_assign()
275 dst[stype] = src[stype]; in bpf_cgroup_storages_assign()
282 enum bpf_cgroup_storage_type stype; in bpf_cgroup_storages_link() local
284 for_each_cgroup_storage_type(stype) in bpf_cgroup_storages_link()
285 bpf_cgroup_storage_link(storages[stype], cgrp, attach_type); in bpf_cgroup_storages_link()
1762 enum bpf_cgroup_storage_type stype = cgroup_storage_type(map); in BPF_CALL_2() local
1769 storage = ctx->prog_item->cgroup_storage[stype]; in BPF_CALL_2()
1771 if (stype == BPF_CGROUP_STORAGE_SHARED) in BPF_CALL_2()