Lines Matching refs:owner
99 int (*map_local_storage_charge)(struct bpf_local_storage_map *smap, void *owner, u32 size);
100 void (*map_local_storage_uncharge)(struct bpf_local_storage_map *smap, void *owner, u32 size);
101 struct bpf_local_storage __rcu **(*map_owner_storage_ptr)(void *owner);
869 } owner;
929 static inline bool bpf_try_module_get(const void *data, struct module *owner)
931 if (owner == BPF_MODULE_OWNER) {
934 return try_module_get(owner);
937 static inline void bpf_module_put(const void *data, struct module *owner)
939 if (owner == BPF_MODULE_OWNER) {
942 module_put(owner);
953 static inline bool bpf_try_module_get(const void *data, struct module *owner)
955 return try_module_get(owner);
957 static inline void bpf_module_put(const void *data, struct module *owner)
959 module_put(owner);