diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-07-06 02:59:36 +0200 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2018-08-31 01:03:23 +0200 |
commit | 4e95020cdd34bbfc86f9c705f4d46ed63fa2e231 (patch) | |
tree | 6c03573dba7cad03d06d395e78b88e36127fd92a /kernel/rcu/tree_plugin.h | |
parent | rcu: Fix typo in force_qs_rnp()'s parameter's parameter (diff) | |
download | linux-4e95020cdd34bbfc86f9c705f4d46ed63fa2e231.tar.xz linux-4e95020cdd34bbfc86f9c705f4d46ed63fa2e231.zip |
rcu: Inline increment_cpu_stall_ticks() into its sole caller
Consolidation of the RCU flavors into one makes increment_cpu_stall_ticks()
a trivial one-line function with only one caller. This commit therefore
inlines it.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Diffstat (limited to 'kernel/rcu/tree_plugin.h')
-rw-r--r-- | kernel/rcu/tree_plugin.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 878a1d2cd465..cd276c46bc14 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -1815,12 +1815,6 @@ static void zero_cpu_stall_ticks(struct rcu_data *rdp) rdp->softirq_snap = kstat_softirqs_cpu(RCU_SOFTIRQ, smp_processor_id()); } -/* Increment ->ticks_this_gp for all flavors of RCU. */ -static void increment_cpu_stall_ticks(void) -{ - raw_cpu_inc(rcu_data.ticks_this_gp); -} - #ifdef CONFIG_RCU_NOCB_CPU /* |