rcu: Describe listRCU read-side guarantees
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 22 Aug 2023 20:04:02 +0000 (21:04 +0100)
committerFrederic Weisbecker <frederic@kernel.org>
Mon, 11 Sep 2023 21:09:35 +0000 (23:09 +0200)
More explicitly state what is, and what is not guaranteed to those
who iterate a list while protected by RCU.

[ paulmck: Apply Joel Fernandes feedback. ]

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Joel Fernandes (Google) <joel@joelfernandes.org>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Documentation/RCU/listRCU.rst

index bdc4bcc5289f37d7667332e8ade302e132fc4a11..ed5c9d8c9afe904f42ba7aab479c83334ad60b46 100644 (file)
@@ -8,6 +8,15 @@ One of the most common uses of RCU is protecting read-mostly linked lists
 that all of the required memory ordering is provided by the list macros.
 This document describes several list-based RCU use cases.
 
+When iterating a list while holding the rcu_read_lock(), writers may
+modify the list.  The reader is guaranteed to see all of the elements
+which were added to the list before they acquired the rcu_read_lock()
+and are still on the list when they drop the rcu_read_unlock().
+Elements which are added to, or removed from the list may or may not
+be seen.  If the writer calls list_replace_rcu(), the reader may see
+either the old element or the new element; they will not see both,
+nor will they see neither.
+
 
 Example 1: Read-mostly list: Deferred Destruction
 -------------------------------------------------