Skip to content

Commit 0598a4d

Browse files
Frederic Weisbeckerpaulmckrcu
authored andcommitted
rcu/nocb: Don't invoke local rcu core on callback overload from nocb kthread
rcu_core() tries to ensure that its self-invocation in case of callbacks overload only happen in softirq/rcuc mode. Indeed it doesn't make sense to trigger local RCU core from nocb_cb kthread since it can execute on a CPU different from the target rdp. Also in case of overload, the nocb_cb kthread simply iterates a new loop of callbacks processing. However the "offloaded" check that aims at preventing misplaced rcu_core() invocations is wrong. First of all that state is volatile and second: softirq/rcuc can execute while the target rdp is offloaded. As a result rcu_core() can be invoked on the wrong CPU while in the process of (de-)offloading. Fix that with moving the rcu_core() self-invocation to rcu_core() itself, irrespective of the rdp offloaded state. Tested-by: Valentin Schneider <valentin.schneider@arm.com> Tested-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Frederic Weisbecker <frederic@kernel.org> Cc: Valentin Schneider <valentin.schneider@arm.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Cc: Josh Triplett <josh@joshtriplett.org> Cc: Joel Fernandes <joel@joelfernandes.org> Cc: Boqun Feng <boqun.feng@gmail.com> Cc: Neeraj Upadhyay <neeraju@codeaurora.org> Cc: Uladzislau Rezki <urezki@gmail.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
1 parent a554ba2 commit 0598a4d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

kernel/rcu/tree.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2460,7 +2460,6 @@ static void rcu_do_batch(struct rcu_data *rdp)
24602460
int div;
24612461
bool __maybe_unused empty;
24622462
unsigned long flags;
2463-
const bool offloaded = rcu_rdp_is_offloaded(rdp);
24642463
struct rcu_head *rhp;
24652464
struct rcu_cblist rcl = RCU_CBLIST_INITIALIZER(rcl);
24662465
long bl, count = 0;
@@ -2582,9 +2581,6 @@ static void rcu_do_batch(struct rcu_data *rdp)
25822581

25832582
rcu_nocb_unlock_irqrestore(rdp, flags);
25842583

2585-
/* Re-invoke RCU core processing if there are callbacks remaining. */
2586-
if (!offloaded && rcu_segcblist_ready_cbs(&rdp->cblist))
2587-
invoke_rcu_core();
25882584
tick_dep_clear_task(current, TICK_DEP_BIT_RCU);
25892585
}
25902586

@@ -2771,8 +2767,12 @@ static __latent_entropy void rcu_core(void)
27712767

27722768
/* If there are callbacks ready, invoke them. */
27732769
if (do_batch && rcu_segcblist_ready_cbs(&rdp->cblist) &&
2774-
likely(READ_ONCE(rcu_scheduler_fully_active)))
2770+
likely(READ_ONCE(rcu_scheduler_fully_active))) {
27752771
rcu_do_batch(rdp);
2772+
/* Re-invoke RCU core processing if there are callbacks remaining. */
2773+
if (rcu_segcblist_ready_cbs(&rdp->cblist))
2774+
invoke_rcu_core();
2775+
}
27762776

27772777
/* Do any needed deferred wakeups of rcuo kthreads. */
27782778
do_nocb_deferred_wakeup(rdp);

0 commit comments

Comments
 (0)