Lines Matching refs:call_rcu
126 c. synchronize_rcu() / call_rcu()
132 express synchronize_rcu() in terms of the call_rcu() callback API.
196 The call_rcu() API is a callback form of synchronize_rcu(),
204 However, the call_rcu() API should not be used lightly, as use
209 of denial-of-service attacks. Code using call_rcu() should limit
315 synchronize_rcu() & call_rcu()
319 rcu_read_unlock(), synchronize_rcu(), and call_rcu() invocations in
321 to their callers and (2) call_rcu() callbacks may be invoked. Efficient
334 call_rcu() rcu_dereference()
455 In such cases, one uses call_rcu() rather than synchronize_rcu().
456 The call_rcu() API is as follows:
458 void call_rcu(struct rcu_head * head,
484 * Uses call_rcu() to ensure that any readers that might have
500 call_rcu(&old_fp->rcu, foo_reclaim);
518 The use of call_rcu() permits the caller of foo_update_a() to
525 that we are now using call_rcu() rather than synchronize_rcu():
527 o Use call_rcu() -after- removing a data element from an
533 If the callback for call_rcu() is not doing anything more than calling
534 kfree() on the structure, you can use kfree_rcu() instead of call_rcu()
805 mechanism that never blocks, namely call_rcu() or kfree_rcu(), that can
864 rcu_read_lock_held call_rcu