diff options
author | Paul E. McKenney <paulmck@kernel.org> | 2019-11-27 14:24:58 -0800 |
---|---|---|
committer | Paul E. McKenney <paulmck@kernel.org> | 2019-12-09 12:24:59 -0800 |
commit | 28f0361fdfab267a392cd6a6401446c9ea64de95 (patch) | |
tree | 8167183d7914a866d5e2ce1b435e3b9771d6b6c0 /kernel/rcu/tree_exp.h | |
parent | de8cd0a533bfb57ff4ec6c85e3bdca013a5adcb7 (diff) | |
download | linux-28f0361fdfab267a392cd6a6401446c9ea64de95.tar.gz linux-28f0361fdfab267a392cd6a6401446c9ea64de95.tar.bz2 linux-28f0361fdfab267a392cd6a6401446c9ea64de95.zip |
rcu: Replace synchronize_sched_expedited_wait() "_sched" with "_rcu"
After RCU flavor consolidation, synchronize_sched_expedited_wait() does
both RCU-preempt and RCU-sched, whichever happens to have been built into
the running kernel. This commit therefore changes this function's name
to synchronize_rcu_expedited_wait() to reflect its new generic nature.
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'kernel/rcu/tree_exp.h')
-rw-r--r-- | kernel/rcu/tree_exp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcu/tree_exp.h b/kernel/rcu/tree_exp.h index 1eafbcd56679..081a17942e57 100644 --- a/kernel/rcu/tree_exp.h +++ b/kernel/rcu/tree_exp.h @@ -453,7 +453,7 @@ static void sync_rcu_exp_select_cpus(void) * Wait for the expedited grace period to elapse, issuing any needed * RCU CPU stall warnings along the way. */ -static void synchronize_sched_expedited_wait(void) +static void synchronize_rcu_expedited_wait(void) { int cpu; unsigned long jiffies_stall; @@ -538,7 +538,7 @@ static void rcu_exp_wait_wake(unsigned long s) { struct rcu_node *rnp; - synchronize_sched_expedited_wait(); + synchronize_rcu_expedited_wait(); // Switch over to wakeup mode, allowing the next GP to proceed. // End the previous grace period only after acquiring the mutex |