Skip to content

Commit df8561a

Browse files
committed
rcu: Clean up flavor-related definitions and comments in rcupdate_wait.h
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
1 parent aff5f03 commit df8561a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

include/linux/rcupdate_wait.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,17 @@ do { \
3333

3434
/**
3535
* synchronize_rcu_mult - Wait concurrently for multiple grace periods
36-
* @...: List of call_rcu() functions for the flavors to wait on.
36+
* @...: List of call_rcu() functions for different grace periods to wait on
3737
*
38-
* This macro waits concurrently for multiple flavors of RCU grace periods.
39-
* For example, synchronize_rcu_mult(call_rcu, call_rcu_sched) would wait
40-
* on concurrent RCU and RCU-sched grace periods. Waiting on a give SRCU
38+
* This macro waits concurrently for multiple types of RCU grace periods.
39+
* For example, synchronize_rcu_mult(call_rcu, call_rcu_tasks) would wait
40+
* on concurrent RCU and RCU-tasks grace periods. Waiting on a give SRCU
4141
* domain requires you to write a wrapper function for that SRCU domain's
4242
* call_srcu() function, supplying the corresponding srcu_struct.
4343
*
44-
* If Tiny RCU, tell _wait_rcu_gp() not to bother waiting for RCU
45-
* or RCU-sched, given that anywhere synchronize_rcu_mult() can be called
46-
* is automatically a grace period.
44+
* If Tiny RCU, tell _wait_rcu_gp() does not bother waiting for RCU,
45+
* given that anywhere synchronize_rcu_mult() can be called is automatically
46+
* a grace period.
4747
*/
4848
#define synchronize_rcu_mult(...) \
4949
_wait_rcu_gp(IS_ENABLED(CONFIG_TINY_RCU), __VA_ARGS__)

0 commit comments

Comments
 (0)