]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
srcu: Point call_srcu() to call_rcu() for detailed memory ordering
authorPaul E. McKenney <paulmck@kernel.org>
Thu, 9 Jan 2025 03:35:40 +0000 (19:35 -0800)
committerBoqun Feng <boqun.feng@gmail.com>
Wed, 5 Feb 2025 05:50:06 +0000 (21:50 -0800)
This commit causes the call_srcu() kernel-doc header to reference that
of call_rcu() for detailed memory-ordering guarantees.

Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Boqun Feng <boqun.feng@gmail.com>
kernel/rcu/srcutree.c

index b83c74c4dcc0d99b270c6abd5dd58cc6fe57135a..f87a9fb6d6bb84a17e48994c83c7265fbd13edce 100644 (file)
@@ -1398,8 +1398,12 @@ static void __call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp,
  * read-side critical sections are delimited by srcu_read_lock() and
  * srcu_read_unlock(), and may be nested.
  *
- * The callback will be invoked from process context, but must nevertheless
- * be fast and must not block.
+ * The callback will be invoked from process context, but with bh
+ * disabled.  The callback function must therefore be fast and must
+ * not block.
+ *
+ * See the description of call_rcu() for more detailed information on
+ * memory ordering guarantees.
  */
 void call_srcu(struct srcu_struct *ssp, struct rcu_head *rhp,
               rcu_callback_t func)