All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] workqueue: Use raise_softirq() in bh_pool_kick_.*()
@ 2026-08-19 14:19 Sebastian Andrzej Siewior
  2026-08-19 14:34 ` Bradley Morgan
  2026-08-19 20:41 ` Tejun Heo
  0 siblings, 2 replies; 6+ messages in thread
From: Sebastian Andrzej Siewior @ 2026-08-19 14:19 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Lai Jiangshan, Thomas Gleixner, Peter Zijlstra, linux-kernel

bh_pool_kick_normal() is used as irq_work callback to schedule softirq
on a remote CPU.
On PREEMPT_RT the default irq_work item is initialized as IRQ_WORK_LAZY
and is invoked in a thread with enabled interrupts (!RT would use
softirq but interrupts would remain enabled). This triggers the warning
in raise_softirq_irqoff() which expects interrupts to off while the
softirq irq mask is modified.

The kick function triggers an IPI and the remote CPU
wakes of irq_work/ and the callback wakes ksoftirqd/.

By initialising the irq_work as IRQ_WORK_INIT_HARD via
| *bh_pool_irq_work(pool) = IRQ_WORK_INIT_HARD(irq_work_fns[i]);
we get the IPI and either (directly) a wake of ksoftirqd or "injected"
the softirq into the current context if it is already in BH-disabled
context which is in general undesired.
Even if ksoftirqd is woken up, the softirq work could be picked up by
random task which decided to do softirqs and then "drains" the pending
queue.

Scheduling a remote BH-work is undesired because of the possible context
stealing. Using raise_softirq() here avoids the warning. As of today I
did not see any users.

Use raise_softirq() in bh_pool_kick_.*() to avoid a warning in
PREEMPT_RT.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
---
 kernel/workqueue.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index 78068ae8f28a6..0bb978df02005 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -7923,12 +7923,12 @@ static inline void wq_watchdog_init(void) { }
 
 static void bh_pool_kick_normal(struct irq_work *irq_work)
 {
-	raise_softirq_irqoff(TASKLET_SOFTIRQ);
+	raise_softirq(TASKLET_SOFTIRQ);
 }
 
 static void bh_pool_kick_highpri(struct irq_work *irq_work)
 {
-	raise_softirq_irqoff(HI_SOFTIRQ);
+	raise_softirq(HI_SOFTIRQ);
 }
 
 static void __init restrict_unbound_cpumask(const char *name, const struct cpumask *mask)
-- 
2.55.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-08-20  6:16 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19 14:19 [PATCH] workqueue: Use raise_softirq() in bh_pool_kick_.*() Sebastian Andrzej Siewior
2026-08-19 14:34 ` Bradley Morgan
2026-08-19 19:29   ` Tejun Heo
2026-08-19 19:36     ` Bradley Morgan
2026-08-19 20:41 ` Tejun Heo
2026-08-20  6:16   ` Sebastian Andrzej Siewior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.