srcu_lock_nesting   17 include/linux/srcutiny.h 	short srcu_lock_nesting[2];	/* srcu_read_lock() nesting depth. */
srcu_lock_nesting   63 include/linux/srcutiny.h 	WRITE_ONCE(ssp->srcu_lock_nesting[idx], ssp->srcu_lock_nesting[idx] + 1);
srcu_lock_nesting   86 include/linux/srcutiny.h 		 READ_ONCE(ssp->srcu_lock_nesting[!idx]),
srcu_lock_nesting   87 include/linux/srcutiny.h 		 READ_ONCE(ssp->srcu_lock_nesting[idx]));
srcu_lock_nesting   29 kernel/rcu/srcutiny.c 	ssp->srcu_lock_nesting[0] = 0;
srcu_lock_nesting   30 kernel/rcu/srcutiny.c 	ssp->srcu_lock_nesting[1] = 0;
srcu_lock_nesting   81 kernel/rcu/srcutiny.c 	WARN_ON(ssp->srcu_lock_nesting[0] || ssp->srcu_lock_nesting[1]);
srcu_lock_nesting   96 kernel/rcu/srcutiny.c 	int newval = ssp->srcu_lock_nesting[idx] - 1;
srcu_lock_nesting   98 kernel/rcu/srcutiny.c 	WRITE_ONCE(ssp->srcu_lock_nesting[idx], newval);
srcu_lock_nesting  130 kernel/rcu/srcutiny.c 	swait_event_exclusive(ssp->srcu_wq, !READ_ONCE(ssp->srcu_lock_nesting[idx]));