Lines Matching refs:call_rcu
121 c. synchronize_rcu() / call_rcu()
127 express synchronize_rcu() in terms of the call_rcu() callback API.
191 The call_rcu() API is a callback form of synchronize_rcu(),
199 However, the call_rcu() API should not be used lightly, as use
204 of denial-of-service attacks. Code using call_rcu() should limit
308 synchronize_rcu() & call_rcu()
312 rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
314 to their callers and (2) call_rcu() callbacks may be invoked. Efficient
327 call_rcu() rcu_dereference()
448 In such cases, one uses call_rcu() rather than synchronize_rcu().
449 The call_rcu() API is as follows:
451 void call_rcu(struct rcu_head * head,
477 * Uses call_rcu() to ensure that any readers that might have
493 call_rcu(&old_fp->rcu, foo_reclaim);
511 The use of call_rcu() permits the caller of foo_update_a() to
518 that we are now using call_rcu() rather than synchronize_rcu():
520 o Use call_rcu() -after- removing a data element from an
526 If the callback for call_rcu() is not doing anything more than calling
527 kfree() on the structure, you can use kfree_rcu() instead of call_rcu()
784 mechanism that never blocks, namely call_rcu() or kfree_rcu(), that can
841 rcu_read_lock_held call_rcu