]> asedeno.scripts.mit.edu Git - linux.git/commit
rcu: Make list_splice_init_rcu() account for RCU readers
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Fri, 23 Aug 2013 16:40:42 +0000 (09:40 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Mon, 23 Sep 2013 16:13:49 +0000 (09:13 -0700)
commit2a855b644c310d5db5a80b8816c0c7748c167977
treec39eb7a56033c40a380b45b8928ab377722e6b02
parent829511d8aa7a2179bba57ab4ab277d6f9c77ae5b
rcu: Make list_splice_init_rcu() account for RCU readers

The list_splice_init_rcu() function allows a list visible to RCU readers
to be spliced into another list visible to RCU readers.  This is OK,
except for the use of INIT_LIST_HEAD(), which does pointer updates
without doing anything to make those updates safe for concurrent readers.

Of course, most of the time INIT_LIST_HEAD() is being used in reader-free
contexts, such as initialization or cleanup, so it is OK for it to update
pointers in an unsafe-for-RCU-readers manner.  This commit therefore
creates an INIT_LIST_HEAD_RCU() that uses ACCESS_ONCE() to make the updates
reader-safe.  The reason that we can use ACCESS_ONCE() instead of the more
typical rcu_assign_pointer() is that list_splice_init_rcu() is updating the
pointers to reference something that is already visible to readers, so
that there is no problem with pre-initialized values.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
include/linux/rculist.h