Lines Matching refs:an
14 carefully, leaving an old version of the data structure in place until all
19 How can an RCU writer possibly determine when all readers are finished,
22 pre-existing readers have completed. An updater wishing to delete an
23 element p from a linked list might do the following, while holding an
31 primitive must be used instead. This primitive takes a pointer to an
34 structure. Code to delete an element p from the linked list from IRQ
53 But what if p_callback is defined in an unloadable module?
169 module is an exception to this rule, and therefore needs to set this
200 queues. His implementation queues an RCU callback on each of the per-CPU
230 to post an RCU callback, as follows:
271 you are using RCU from an unloadable module, you need to use rcu_barrier()
319 is to add an rcu_read_lock() before line 8 of rcu_barrier()
320 and an rcu_read_unlock() after line 8 of this same function. If