Lines Matching refs:rcu_barrier_func
212 8 on_each_cpu(rcu_barrier_func, NULL, 0, 1);
220 6 and 7. Line 8 causes each CPU to invoke rcu_barrier_func(), which is
222 ensures that all the calls to rcu_barrier_func() will have completed
228 The rcu_barrier_func() runs on each CPU, where it invokes call_rcu()
231 1 static void rcu_barrier_func(void *notused)
259 Quick Quiz #2: What happens if CPU 0's rcu_barrier_func() executes
261 value one), but the other CPU's rcu_barrier_func() invocations
295 Quick Quiz #2: What happens if CPU 0's rcu_barrier_func() executes
297 value one), but the other CPU's rcu_barrier_func() invocations
305 rcu_barrier_func() has completed. This by itself would prevent
313 rcu_barrier_func(). This prevents the local CPU from context
315 means that all CPUs have executed rcu_barrier_func() before