Lines Matching full:protected
436 * lockdep_assert_in_rcu_read_lock - WARN if not protected by rcu_read_lock()
444 * lockdep_assert_in_rcu_read_lock_bh - WARN if not protected by rcu_read_lock_bh()
454 * lockdep_assert_in_rcu_read_lock_sched - WARN if not protected by rcu_read_lock_sched()
467 * type in effect. Note that regions of code protected by things like
515 * unrcu_pointer - mark a pointer as not being RCU protected
552 * RCU_INITIALIZER() - statically initialize an RCU-protected global variable
558 * rcu_assign_pointer() - assign to RCU-protected pointer
562 * Assigns the specified value to the specified RCU-protected
621 * Return the value of the specified RCU-protected pointer, but omit the
624 * not dereferenced, for example, when testing an RCU-protected pointer
676 * which pointers are protected by RCU and checks that the pointer is
731 * Return the value of the specified RCU-protected pointer, but omit
739 * when protected only by rcu_read_lock() will result in infrequent
747 * rcu_dereference() - fetch RCU-protected pointer for dereferencing
755 * rcu_dereference_bh() - fetch an RCU-bh-protected pointer for dereferencing
763 * rcu_dereference_sched() - fetch RCU-sched-protected pointer for dereferencing
966 * RCU_INIT_POINTER() - initialize an RCU protected pointer
970 * Initialize an RCU-protected pointer in special cases where readers
993 * If you are creating an RCU-protected linked structure that is accessed
994 * by a single external-to-structure RCU-protected pointer, then you may
995 * use RCU_INIT_POINTER() to initialize the internal RCU-protected
1010 * RCU_POINTER_INITIALIZER() - statically initialize an RCU protected pointer
1014 * GCC-style initialization for an RCU-protected pointer in a structure field.