Lines Matching refs:synchronize_rcu

126 c.	synchronize_rcu() / call_rcu()
132 express synchronize_rcu() in terms of the call_rcu() callback API.
160 synchronize_rcu()
162 void synchronize_rcu(void);
167 Note that synchronize_rcu() will -not- necessarily wait for
174 2. enters synchronize_rcu()
177 5. exits synchronize_rcu()
180 To reiterate, synchronize_rcu() waits only for ongoing RCU
182 any that begin after synchronize_rcu() is invoked.
184 Of course, synchronize_rcu() does not necessarily return
189 further delay synchronize_rcu().
191 Since synchronize_rcu() is the API that must figure out when
194 synchronize_rcu()'s overhead must also be quite small.
196 The call_rcu() API is a callback form of synchronize_rcu(),
205 of the synchronize_rcu() API generally results in simpler code.
206 In addition, the synchronize_rcu() API has the nice property
328 synchronize_rcu() & call_rcu()
332 rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
333 order to determine when (1) synchronize_rcu() invocations may return
395 * Uses synchronize_rcu() to ensure that any readers that might
411 synchronize_rcu();
450 o Use synchronize_rcu() -after- removing a data element from an
467 In such cases, one uses call_rcu() rather than synchronize_rcu().
537 that we are now using call_rcu() rather than synchronize_rcu():
600 void synchronize_rcu(void)
624 and release a global reader-writer lock. The synchronize_rcu()
626 that once synchronize_rcu() exits, all RCU read-side critical sections
627 that were in progress before synchronize_rcu() was called are guaranteed
628 to have completed -- there is no way that synchronize_rcu() would have
630 promotes synchronize_rcu() to a full memory barrier in compliance with
638 that the only thing that can block rcu_read_lock() is a synchronize_rcu().
639 But synchronize_rcu() does not acquire any locks while holding rcu_gp_mutex,
659 void synchronize_rcu(void)
673 The implementation of synchronize_rcu() simply schedules itself on each
689 synchronize_rcu(). Once synchronize_rcu() returns, we are guaranteed
747 + synchronize_rcu();
795 10 synchronize_rcu();
806 a reader-writer lock to a simple spinlock, and a synchronize_rcu()
815 Also, the presence of synchronize_rcu() means that the RCU version of
818 be used in place of synchronize_rcu().
874 rcu_read_unlock synchronize_rcu
883 rcu_read_unlock_bh synchronize_rcu
894 rcu_read_unlock_sched synchronize_rcu
983 2. CPU 1 enters synchronize_rcu(), write-acquiring
1003 readers through synchronize_rcu(). To see this,
1014 cannot be blocked by tasks executing synchronize_rcu().