Lines Matching defs:ssp
44 static inline rcu_gp_poll_state_t __get_state_synchronize_rcu(struct srcu_struct *ssp)
46 return ssp
47 ? get_state_synchronize_srcu(ssp)
51 static inline rcu_gp_poll_state_t __start_poll_synchronize_rcu(struct srcu_struct *ssp)
53 return ssp
54 ? start_poll_synchronize_srcu(ssp)
58 static inline bool __poll_state_synchronize_rcu(struct srcu_struct *ssp, rcu_gp_poll_state_t cookie)
60 return ssp
61 ? poll_state_synchronize_srcu(ssp, cookie)
65 static inline void __rcu_barrier(struct srcu_struct *ssp)
67 return ssp
68 ? srcu_barrier(ssp)
72 static inline void __call_rcu(struct srcu_struct *ssp, struct rcu_head *rhp,
75 if (ssp)
76 call_srcu(ssp, rhp, func);