Home | History | Annotate | Download | only in linux

Lines Matching refs:rcu_head

46  * struct rcu_head - callback structure for use with RCU
50 struct rcu_head {
51 struct rcu_head *next;
52 void (*func)(struct rcu_head *head);
56 #define RCU_HEAD(head) struct rcu_head head = RCU_HEAD_INIT
99 struct rcu_head *nxtlist;
100 struct rcu_head **nxttail;
102 struct rcu_head *curlist;
103 struct rcu_head **curtail;
104 struct rcu_head *donelist;
105 struct rcu_head **donetail;
108 struct rcu_head barrier;
280 extern void FASTCALL(call_rcu(struct rcu_head *head,
281 void (*func)(struct rcu_head *head)));
282 extern void FASTCALL(call_rcu_bh(struct rcu_head *head,
283 void (*func)(struct rcu_head *head)));