Lines Matching defs:bpf_map_ops

62 struct bpf_map_ops {  struct
64 int (*map_alloc_check)(union bpf_attr *attr);
65 struct bpf_map *(*map_alloc)(union bpf_attr *attr);
66 void (*map_release)(struct bpf_map *map, struct file *map_file);
67 void (*map_free)(struct bpf_map *map);
68 int (*map_get_next_key)(struct bpf_map *map, void *key, void *next_key);
69 void (*map_release_uref)(struct bpf_map *map);
70 void *(*map_lookup_elem_sys_only)(struct bpf_map *map, void *key);
71 int (*map_lookup_batch)(struct bpf_map *map, const union bpf_attr *attr,
73 int (*map_lookup_and_delete_elem)(struct bpf_map *map, void *key,
75 int (*map_lookup_and_delete_batch)(struct bpf_map *map,
78 int (*map_update_batch)(struct bpf_map *map, const union bpf_attr *attr,
80 int (*map_delete_batch)(struct bpf_map *map, const union bpf_attr *attr,
84 void *(*map_lookup_elem)(struct bpf_map *map, void *key);
85 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
86 int (*map_delete_elem)(struct bpf_map *map, void *key);
87 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
88 int (*map_pop_elem)(struct bpf_map *map, void *value);
89 int (*map_peek_elem)(struct bpf_map *map, void *value);
92 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file,
94 void (*map_fd_put_ptr)(void *ptr);
95 int (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf);
96 u32 (*map_fd_sys_lookup_elem)(void *ptr);
97 void (*map_seq_show_elem)(struct bpf_map *map, void *key,
99 int (*map_check_btf)(const struct bpf_map *map,
105 int (*map_poke_track)(struct bpf_map *map, struct bpf_prog_aux *aux);
106 void (*map_poke_untrack)(struct bpf_map *map, struct bpf_prog_aux *aux);
107 void (*map_poke_run)(struct bpf_map *map, u32 key, struct bpf_prog *old,
111 int (*map_direct_value_addr)(const struct bpf_map *map,
113 int (*map_direct_value_meta)(const struct bpf_map *map,
115 int (*map_mmap)(struct bpf_map *map, struct vm_area_struct *vma);
116 __poll_t (*map_poll)(struct bpf_map *map, struct file *filp,
120 int (*map_local_storage_charge)(struct bpf_local_storage_map *smap,
122 void (*map_local_storage_uncharge)(struct bpf_local_storage_map *smap,
124 struct bpf_local_storage __rcu ** (*map_owner_storage_ptr)(void *owner);
127 int (*map_redirect)(struct bpf_map *map, u32 ifindex, u64 flags);
160 const struct bpf_map_ops *ops ____cacheline_aligned; argument