]> git.baikalelectronics.ru Git - kernel.git/commit
irq_work: Allow irq_work_sync() to sleep if irq_work() no IRQ support.
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 6 Oct 2021 11:18:50 +0000 (13:18 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 15 Oct 2021 09:25:17 +0000 (11:25 +0200)
commited2d7252404ac62f72675f447f2496fd58dd36bd
treea9d692207ee2df66d8292a5fe89ef0440465d419
parent9a8f0e5f86cd6f8373df0c27d7ea114a759674ce
irq_work: Allow irq_work_sync() to sleep if irq_work() no IRQ support.

irq_work() triggers instantly an interrupt if supported by the
architecture. Otherwise the work will be processed on the next timer
tick. In worst case irq_work_sync() could spin up to a jiffy.

irq_work_sync() is usually used in tear down context which is fully
preemptible. Based on review irq_work_sync() is invoked from preemptible
context and there is one waiter at a time. This qualifies it to use
rcuwait for synchronisation.

Let irq_work_sync() synchronize with rcuwait if the architecture
processes irqwork via the timer tick.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20211006111852.1514359-3-bigeasy@linutronix.de
include/linux/irq_work.h
kernel/irq_work.c