1 #ifndef __LINUX_RCU_TYPES_H
2 #define __LINUX_RCU_TYPES_H
7 * struct rcu_head - callback structure for use with RCU
8 * @next: next update requests in a list
9 * @func: actual update function to call after the grace period.
12 struct rcu_head
*next
;
13 void (*func
)(struct rcu_head
*head
);