Home
last modified time | relevance | path

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

/kernel/
Drcupreempt.c240 int nesting; in __rcu_read_lock() local
242 nesting = ACCESS_ONCE(t->rcu_read_lock_nesting); in __rcu_read_lock()
243 if (nesting != 0) { in __rcu_read_lock()
247 t->rcu_read_lock_nesting = nesting + 1; in __rcu_read_lock()
287 ACCESS_ONCE(t->rcu_read_lock_nesting) = nesting + 1; in __rcu_read_lock()
306 int nesting; in __rcu_read_unlock() local
308 nesting = ACCESS_ONCE(t->rcu_read_lock_nesting); in __rcu_read_unlock()
309 if (nesting > 1) { in __rcu_read_unlock()
316 t->rcu_read_lock_nesting = nesting - 1; in __rcu_read_unlock()
355 ACCESS_ONCE(t->rcu_read_lock_nesting) = nesting - 1; in __rcu_read_unlock()