]> git.baikalelectronics.ru Git - kernel.git/commit
rcu/exp: Fix check for idle context in rcu_exp_handler
authorNeeraj Upadhyay <quic_neeraju@quicinc.com>
Mon, 13 Dec 2021 06:10:24 +0000 (11:40 +0530)
committerPaul E. McKenney <paulmck@kernel.org>
Wed, 2 Feb 2022 01:05:10 +0000 (17:05 -0800)
commitb873f91c4a1d3e889f42537bce831d5434412ca0
tree6d345b2308f4f1bd41f53849c999373a0f551c29
parent57f15227f132fba8dbcf097e7a3bae3ccb01e70f
rcu/exp: Fix check for idle context in rcu_exp_handler

For PREEMPT_RCU, the rcu_exp_handler() function checks
whether the current CPU is in idle, by calling
rcu_dynticks_curr_cpu_in_eqs(). However, rcu_exp_handler()
is called in IPI handler context. So, it should be checking
the idle context using rcu_is_cpu_rrupt_from_idle(). Fix this
by using rcu_is_cpu_rrupt_from_idle() instead of
rcu_dynticks_curr_cpu_in_eqs(). Non-preempt configuration
already uses the correct check.

Reviewed-by: Frederic Weisbecker <frederic@kernel.org>
Signed-off-by: Neeraj Upadhyay <quic_neeraju@quicinc.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
kernel/rcu/tree_exp.h