Lines Matching full:protected
442 * lockdep_assert_in_rcu_read_lock - WARN if not protected by rcu_read_lock()
450 * lockdep_assert_in_rcu_read_lock_bh - WARN if not protected by rcu_read_lock_bh()
460 * lockdep_assert_in_rcu_read_lock_sched - WARN if not protected by rcu_read_lock_sched()
473 * type in effect. Note that regions of code protected by things like
521 * unrcu_pointer - mark a pointer as not being RCU protected
558 * RCU_INITIALIZER() - statically initialize an RCU-protected global variable
564 * rcu_assign_pointer() - assign to RCU-protected pointer
568 * Assigns the specified value to the specified RCU-protected
627 * Return the value of the specified RCU-protected pointer, but omit the
630 * not dereferenced, for example, when testing an RCU-protected pointer
682 * which pointers are protected by RCU and checks that the pointer is
737 * Return the value of the specified RCU-protected pointer, but omit
745 * when protected only by rcu_read_lock() will result in infrequent
753 * rcu_dereference() - fetch RCU-protected pointer for dereferencing
761 * rcu_dereference_bh() - fetch an RCU-bh-protected pointer for dereferencing
769 * rcu_dereference_sched() - fetch RCU-sched-protected pointer for dereferencing
975 * RCU_INIT_POINTER() - initialize an RCU protected pointer
979 * Initialize an RCU-protected pointer in special cases where readers
1002 * If you are creating an RCU-protected linked structure that is accessed
1003 * by a single external-to-structure RCU-protected pointer, then you may
1004 * use RCU_INIT_POINTER() to initialize the internal RCU-protected
1019 * RCU_POINTER_INITIALIZER() - statically initialize an RCU protected pointer
1023 * GCC-style initialization for an RCU-protected pointer in a structure field.