···132132133133 typeof(*p) atomic_rcu_read(p);
134134135135- atomic_rcu_read() is similar to atomic_mb_read(), but it makes
135135+ atomic_rcu_read() is similar to atomic_load_acquire(), but it makes
136136 some assumptions on the code that calls it. This allows a more
137137 optimized implementation.
138138···154154155155 void atomic_rcu_set(p, typeof(*p) v);
156156157157- atomic_rcu_set() is also similar to atomic_mb_set(), and it also
157157+ atomic_rcu_set() is similar to atomic_store_release(), though it also
158158 makes assumptions on the code that calls it in order to allow a more
159159 optimized implementation.
160160