Lines Matching defs:rhp
28 void rcu_cblist_enqueue(struct rcu_cblist *rclp, struct rcu_head *rhp)
30 *rclp->tail = rhp;
31 rclp->tail = &rhp->next;
37 * any contents of the first. If rhp is non-NULL, enqueue it as the sole
45 struct rcu_head *rhp)
53 if (!rhp) {
56 rhp->next = NULL;
57 srclp->head = rhp;
58 srclp->tail = &rhp->next;
69 struct rcu_head *rhp;
71 rhp = rclp->head;
72 if (!rhp)
75 rclp->head = rhp->next;
78 return rhp;
245 struct rcu_head *rhp)
249 rhp->next = NULL;
250 WRITE_ONCE(*rsclp->tails[RCU_NEXT_TAIL], rhp);
251 WRITE_ONCE(rsclp->tails[RCU_NEXT_TAIL], &rhp->next);
265 struct rcu_head *rhp)
273 rhp->next = NULL;
277 WRITE_ONCE(*rsclp->tails[i], rhp);
279 WRITE_ONCE(rsclp->tails[i], &rhp->next);