Skip to content

Commit

Permalink
rcu: do not mention atomic_mb_read/set in documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Apr 13, 2020
1 parent de99dab commit fb8a967
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/devel/rcu.txt
Expand Up @@ -132,7 +132,7 @@ The core RCU API is small:

typeof(*p) atomic_rcu_read(p);

atomic_rcu_read() is similar to atomic_mb_read(), but it makes
atomic_rcu_read() is similar to atomic_load_acquire(), but it makes
some assumptions on the code that calls it. This allows a more
optimized implementation.

Expand All @@ -154,7 +154,7 @@ The core RCU API is small:

void atomic_rcu_set(p, typeof(*p) v);

atomic_rcu_set() is also similar to atomic_mb_set(), and it also
atomic_rcu_set() is similar to atomic_store_release(), though it also
makes assumptions on the code that calls it in order to allow a more
optimized implementation.

Expand Down

0 comments on commit fb8a967

Please sign in to comment.