rcu: do not mention atomic_mb_read/set in documentation
authorPaolo Bonzini <pbonzini@redhat.com>
Mon, 6 Apr 2020 09:40:07 +0000 (11:40 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 13 Apr 2020 06:56:18 +0000 (02:56 -0400)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
docs/devel/rcu.txt

index d83fed2f7902797f38fe62e949b025a6d616567b..0ce15ba198ac00ce0052c7c860b151b84c210e90 100644 (file)
@@ -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.
 
@@ -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.