Home
last modified time | relevance | path

Searched refs:rcu_barrier_func (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/Documentation/RCU/
Drcubarrier.txt213 8 on_each_cpu(rcu_barrier_func, NULL, 0, 1);
221 6 and 7. Line 8 causes each CPU to invoke rcu_barrier_func(), which is
223 ensures that all the calls to rcu_barrier_func() will have completed
229 The rcu_barrier_func() runs on each CPU, where it invokes call_rcu()
232 1 static void rcu_barrier_func(void *notused)
260 Quick Quiz #2: What happens if CPU 0's rcu_barrier_func() executes
262 value one), but the other CPU's rcu_barrier_func() invocations
291 Quick Quiz #2: What happens if CPU 0's rcu_barrier_func() executes
293 value one), but the other CPU's rcu_barrier_func() invocations
301 rcu_barrier_func() has completed. This by itself would prevent
[all …]
/linux-4.1.27/kernel/rcu/
Dtree.c3549 static void rcu_barrier_func(void *type) in rcu_barrier_func() function
3651 smp_call_function_single(cpu, rcu_barrier_func, rsp, 1); in _rcu_barrier()