Lines Matching refs:m

77 	struct node_data *n, *m;  in __insert_in_tree_and_list()  local
83 m = bpf_refcount_acquire(n); in __insert_in_tree_and_list()
84 m->key = 123; in __insert_in_tree_and_list()
85 m->list_data = 456; in __insert_in_tree_and_list()
91 bpf_obj_drop(m); in __insert_in_tree_and_list()
97 if (bpf_list_push_front(head, &m->l)) { in __insert_in_tree_and_list()
110 struct node_data *n, *m; in __stash_map_insert_tree() local
121 m = bpf_refcount_acquire(n); in __stash_map_insert_tree()
126 bpf_obj_drop(m); in __stash_map_insert_tree()
131 if (bpf_rbtree_add(root, &m->r, less)) { in __stash_map_insert_tree()
374 struct node_acquire *n, *m; in rbtree_refcounted_node_ref_escapes() local
382 m = bpf_refcount_acquire(n); in rbtree_refcounted_node_ref_escapes()
384 if (!m) in rbtree_refcounted_node_ref_escapes()
387 m->key = 2; in rbtree_refcounted_node_ref_escapes()
388 bpf_obj_drop(m); in rbtree_refcounted_node_ref_escapes()
396 struct node_acquire *n, *m; in rbtree_refcounted_node_ref_escapes_owning_input() local
402 m = bpf_refcount_acquire(n); in rbtree_refcounted_node_ref_escapes_owning_input()
403 m->key = 2; in rbtree_refcounted_node_ref_escapes_owning_input()
409 bpf_obj_drop(m); in rbtree_refcounted_node_ref_escapes_owning_input()
433 struct node_data *n, *m; in rbtree_wrong_owner_remove_fail_a1() local
438 m = bpf_refcount_acquire(n); in rbtree_wrong_owner_remove_fail_a1()
441 bpf_obj_drop(m); in rbtree_wrong_owner_remove_fail_a1()
445 if (__stash_map_empty_xchg(m, 1)) in rbtree_wrong_owner_remove_fail_a1()
479 struct node_data *m; in rbtree_wrong_owner_remove_fail_a2() local
486 m = bpf_kptr_xchg(&mapval->node, NULL); in rbtree_wrong_owner_remove_fail_a2()
487 if (!m) in rbtree_wrong_owner_remove_fail_a2()
492 bpf_list_push_back(&head, &m->l); in rbtree_wrong_owner_remove_fail_a2()
493 res = bpf_rbtree_remove(&root, &m->r); in rbtree_wrong_owner_remove_fail_a2()
510 struct node_data *n, *m = NULL; in BPF_PROG() local
527 m = container_of(rb, struct node_data, r); in BPF_PROG()
532 if (m) in BPF_PROG()
533 bpf_obj_drop(m); in BPF_PROG()
544 struct node_data *n, *m = NULL; in BPF_PROG() local
561 m = container_of(rb, struct node_data, r); in BPF_PROG()
566 if (m) in BPF_PROG()
567 bpf_obj_drop(m); in BPF_PROG()