Home
last modified time | relevance | path

Searched refs:rcu_head (Results 1 – 7 of 7) sorted by relevance

/tools/testing/radix-tree/linux/
Dradix-tree.h10 static inline void trace_call_rcu(struct rcu_head *head, in trace_call_rcu()
11 void (*func)(struct rcu_head *head)) in trace_call_rcu()
15 offsetof(struct radix_tree_node, rcu_head)); in trace_call_rcu()
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/src/
Dmisc.c7 struct rcu_head;
9 void wakeme_after_rcu(struct rcu_head *head) in wakeme_after_rcu()
Dmisc.h40 struct rcu_head head;
44 void wakeme_after_rcu(struct rcu_head *head);
/tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/
Dtypes.h143 #define rcu_head callback_head macro
145 typedef void (*rcu_callback_t)(struct rcu_head *head);
146 typedef void (*call_rcu_func_t)(struct rcu_head *head, rcu_callback_t func);
/tools/testing/radix-tree/
Dtest.h8 struct rcu_head rcu_head; member
Dregression1.c50 struct rcu_head rcu;
66 static void page_rcu_free(struct rcu_head *rcu) in page_rcu_free()
Dtest.c72 static void item_free_rcu(struct rcu_head *head) in item_free_rcu()
74 struct item *item = container_of(head, struct item, rcu_head); in item_free_rcu()
85 call_rcu(&item->rcu_head, item_free_rcu); in item_delete_rcu()