Lines Matching refs:bpf_cgroup_storage

10 DEFINE_PER_CPU(void*, bpf_cgroup_storage);
46 static struct bpf_cgroup_storage *cgroup_storage_lookup( in cgroup_storage_lookup()
58 struct bpf_cgroup_storage *storage; in cgroup_storage_lookup()
60 storage = container_of(node, struct bpf_cgroup_storage, node); in cgroup_storage_lookup()
83 struct bpf_cgroup_storage *storage) in cgroup_storage_insert()
89 struct bpf_cgroup_storage *this; in cgroup_storage_insert()
91 this = container_of(*new, struct bpf_cgroup_storage, node); in cgroup_storage_insert()
116 struct bpf_cgroup_storage *storage; in cgroup_storage_lookup_elem()
129 struct bpf_cgroup_storage *storage; in cgroup_storage_update_elem()
160 struct bpf_cgroup_storage *storage; in cgroup_storage_get_next_key()
177 struct bpf_cgroup_storage, list); in cgroup_storage_get_next_key()
289 struct bpf_cgroup_storage *bpf_cgroup_storage_alloc(struct bpf_prog *prog) in bpf_cgroup_storage_alloc()
291 struct bpf_cgroup_storage *storage; in bpf_cgroup_storage_alloc()
299 pages = round_up(sizeof(struct bpf_cgroup_storage) + in bpf_cgroup_storage_alloc()
305 storage = kmalloc_node(sizeof(struct bpf_cgroup_storage), in bpf_cgroup_storage_alloc()
326 void bpf_cgroup_storage_free(struct bpf_cgroup_storage *storage) in bpf_cgroup_storage_free()
335 pages = round_up(sizeof(struct bpf_cgroup_storage) + in bpf_cgroup_storage_free()
344 void bpf_cgroup_storage_link(struct bpf_cgroup_storage *storage, in bpf_cgroup_storage_link()
364 void bpf_cgroup_storage_unlink(struct bpf_cgroup_storage *storage) in bpf_cgroup_storage_unlink()