Lines Matching refs:storage
57 struct local_storage *storage; in BPF_PROG() local
63 storage = bpf_task_storage_get(&task_storage_map, in BPF_PROG()
65 if (storage) { in BPF_PROG()
67 is_self_unlink = storage->exec_inode == victim->d_inode; in BPF_PROG()
81 struct local_storage *storage; in BPF_PROG() local
91 storage = bpf_inode_storage_get(&inode_storage_map, old_dentry->d_inode, in BPF_PROG()
93 if (!storage) in BPF_PROG()
96 if (storage->value != DUMMY_STORAGE_VALUE) in BPF_PROG()
111 struct local_storage *storage; in BPF_PROG() local
117 storage = bpf_sk_storage_get(&sk_storage_map, sock->sk, 0, in BPF_PROG()
119 if (!storage) in BPF_PROG()
122 if (storage->value != DUMMY_STORAGE_VALUE) in BPF_PROG()
128 storage = bpf_sk_storage_get(&sk_storage_map2, sock->sk, 0, in BPF_PROG()
130 if (!storage) in BPF_PROG()
149 struct local_storage *storage; in BPF_PROG() local
154 storage = bpf_sk_storage_get(&sk_storage_map, sock->sk, 0, in BPF_PROG()
156 if (!storage) in BPF_PROG()
159 storage->value = DUMMY_STORAGE_VALUE; in BPF_PROG()
171 struct local_storage *storage; in BPF_PROG() local
176 storage = bpf_task_storage_get(&task_storage_map, in BPF_PROG()
179 if (storage) in BPF_PROG()
180 storage->exec_inode = bprm->file->f_inode; in BPF_PROG()
182 storage = bpf_inode_storage_get(&inode_storage_map, bprm->file->f_inode, in BPF_PROG()
184 if (!storage) in BPF_PROG()
187 storage->value = DUMMY_STORAGE_VALUE; in BPF_PROG()