summaryrefslogtreecommitdiffstats
path: root/kernel/rcu/tree_exp.h
diff options
context:
space:
mode:
authorPaul E. McKenney <paulmck@kernel.org>2020-06-18 09:51:12 -0700
committerPaul E. McKenney <paulmck@kernel.org>2020-08-24 18:36:03 -0700
commit7487ea07dfa9bd782a13469cab18973ea0ab8c57 (patch)
tree6cc2d2d5963770aea5fac4c2e63882af3e1c9ad3 /kernel/rcu/tree_exp.h
parentd9b60741318f6f8bcb2adc4beaef724c923fcb93 (diff)
downloadlinux-stable-7487ea07dfa9bd782a13469cab18973ea0ab8c57.tar.gz
linux-stable-7487ea07dfa9bd782a13469cab18973ea0ab8c57.tar.bz2
linux-stable-7487ea07dfa9bd782a13469cab18973ea0ab8c57.zip
rcu: Initialize at declaration time in rcu_exp_handler()
This commit moves the initialization of the CONFIG_PREEMPT=n version of the rcu_exp_handler() function's rdp and rnp local variables into their respective declarations to save a couple lines of code. Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to 'kernel/rcu/tree_exp.h')
-rw-r--r--kernel/rcu/tree_exp.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/rcu/tree_exp.h b/kernel/rcu/tree_exp.h
index 1888c0eb1216..8760b6ead770 100644
--- a/kernel/rcu/tree_exp.h
+++ b/kernel/rcu/tree_exp.h
@@ -732,11 +732,9 @@ static void rcu_exp_need_qs(void)
/* Invoked on each online non-idle CPU for expedited quiescent state. */
static void rcu_exp_handler(void *unused)
{
- struct rcu_data *rdp;
- struct rcu_node *rnp;
+ struct rcu_data *rdp = this_cpu_ptr(&rcu_data);
+ struct rcu_node *rnp = rdp->mynode;
- rdp = this_cpu_ptr(&rcu_data);
- rnp = rdp->mynode;
if (!(READ_ONCE(rnp->expmask) & rdp->grpmask) ||
__this_cpu_read(rcu_data.cpu_no_qs.b.exp))
return;