Lines Matching full:storage
60 struct dummy_storage *storage; in BPF_PROG() local
65 storage = bpf_inode_storage_get(&inode_storage_map, victim->d_inode, 0, in BPF_PROG()
67 if (!storage) in BPF_PROG()
70 if (storage->value == DUMMY_STORAGE_VALUE) in BPF_PROG()
84 struct dummy_storage *storage; in BPF_PROG() local
89 storage = bpf_sk_storage_get(&sk_storage_map, sock->sk, 0, in BPF_PROG()
91 if (!storage) in BPF_PROG()
94 if (storage->value == DUMMY_STORAGE_VALUE) in BPF_PROG()
106 struct dummy_storage *storage; in BPF_PROG() local
111 storage = bpf_sk_storage_get(&sk_storage_map, sock->sk, 0, in BPF_PROG()
113 if (!storage) in BPF_PROG()
116 storage->value = DUMMY_STORAGE_VALUE; in BPF_PROG()
125 struct dummy_storage *storage; in BPF_PROG() local
133 storage = bpf_inode_storage_get(&inode_storage_map, file->f_inode, 0, in BPF_PROG()
135 if (!storage) in BPF_PROG()
138 storage->value = DUMMY_STORAGE_VALUE; in BPF_PROG()