Searched refs:bpf_mem_alloc (Results 1 – 8 of 8) sorted by relevance
| /linux/include/linux/ |
| H A D | bpf_mem_alloc.h | 11 struct bpf_mem_alloc { struct 31 int bpf_mem_alloc_init(struct bpf_mem_alloc *ma, int size, bool percpu); 33 int bpf_mem_alloc_percpu_init(struct bpf_mem_alloc *ma, struct obj_cgroup *objcg); 35 int bpf_mem_alloc_percpu_unit_init(struct bpf_mem_alloc *ma, int size); 36 void bpf_mem_alloc_destroy(struct bpf_mem_alloc *ma); 37 void bpf_mem_alloc_set_dtor(struct bpf_mem_alloc *ma, 46 void *bpf_mem_alloc(struct bpf_mem_alloc *ma, size_t size); 47 void bpf_mem_free(struct bpf_mem_alloc *ma, void *ptr); 48 void bpf_mem_free_rcu(struct bpf_mem_alloc *ma, void *ptr); 51 void *bpf_mem_cache_alloc(struct bpf_mem_alloc *ma); [all …]
|
| H A D | bpf.h | 70 extern struct bpf_mem_alloc bpf_global_ma, bpf_global_percpu_ma;
|
| /linux/kernel/bpf/ |
| H A D | memalloc.c | 502 int bpf_mem_alloc_init(struct bpf_mem_alloc *ma, int size, bool percpu) in bpf_mem_alloc_init() 570 int bpf_mem_alloc_percpu_init(struct bpf_mem_alloc *ma, struct obj_cgroup *objcg) in bpf_mem_alloc_percpu_init() 584 int bpf_mem_alloc_percpu_unit_init(struct bpf_mem_alloc *ma, int size) in bpf_mem_alloc_percpu_unit_init() 651 static void check_leaked_objs(struct bpf_mem_alloc *ma) in check_leaked_objs() 674 static void free_mem_alloc_no_barrier(struct bpf_mem_alloc *ma) in free_mem_alloc_no_barrier() 686 static void free_mem_alloc(struct bpf_mem_alloc *ma) in free_mem_alloc() 705 struct bpf_mem_alloc *ma = container_of(work, struct bpf_mem_alloc, work); in free_mem_alloc_deferred() 711 static void destroy_mem_alloc(struct bpf_mem_alloc *ma, int rcu_in_progress) in destroy_mem_alloc() 713 struct bpf_mem_alloc *copy; in destroy_mem_alloc() 736 void bpf_mem_alloc_destroy(struct bpf_mem_alloc *ma) in bpf_mem_alloc_destroy() [all …]
|
| H A D | lpm_trie.c | 19 #include <linux/bpf_mem_alloc.h> 36 struct bpf_mem_alloc ma;
|
| H A D | hashtab.c | 19 #include <linux/bpf_mem_alloc.h> 74 * atomic contexts even on RT. Before the introduction of bpf_mem_alloc, 77 * after hash map was fully converted to use bpf_mem_alloc, there will be 88 struct bpf_mem_alloc ma; 89 struct bpf_mem_alloc pcpu_ma; 247 * Preallocated maps do not have a bpf_mem_alloc destructor, so fully in htab_free_prealloced_fields() 504 static int bpf_ma_set_dtor(struct bpf_map *map, struct bpf_mem_alloc *ma, in htab_set_dtor() 1636 /* htab no longer uses call_rcu() directly. bpf_mem_alloc does it in htab_map_free() 2755 struct bpf_mem_alloc ma;
|
| H A D | helpers.c | 24 #include <linux/bpf_mem_alloc.h> 2355 p = bpf_mem_alloc(&bpf_global_ma, size); 2385 return bpf_mem_alloc(&bpf_global_percpu_ma, size); in __bpf_obj_drop_impl() 2396 struct bpf_mem_alloc *ma; in __bpf_obj_drop_impl() 3558 kit->bits = bpf_mem_alloc(&bpf_global_ma, nr_bytes); in bpf_copy_from_user_str()
|
| H A D | core.c | 39 #include <linux/bpf_mem_alloc.h> 70 struct bpf_mem_alloc bpf_global_ma;
|
| H A D | verifier.c | 30 #include <linux/bpf_mem_alloc.h> 54 struct bpf_mem_alloc bpf_global_percpu_ma;
|