]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
iio: magnetometer: Remove IRQF_ONESHOT
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Wed, 28 Jan 2026 09:55:38 +0000 (10:55 +0100)
committerSasha Levin <sashal@kernel.org>
Wed, 4 Mar 2026 12:20:43 +0000 (07:20 -0500)
commit708a4f2ea65eda44fe0e48d025aa58325fff2921
tree6d0505bd5401f1da02c1ed9392a29fc885204978
parentdd18ff5f2d379c6523f3c3b20123a66d27202bd2
iio: magnetometer: Remove IRQF_ONESHOT

[ Upstream commit a54e9440925e6617c98669066b4753c4cdcea8a0 ]

Passing IRQF_ONESHOT ensures that the interrupt source is masked until
the secondary (threaded) handler is done. If only a primary handler is
used then the flag makes no sense because the interrupt can not fire
(again) while its handler is running.
The flag also disallows force-threading of the primary handler and the
irq-core will warn about this.
The force-threading functionality is required on PREEMPT_RT because the
handler is using locks with can sleep on PREEMPT_RT.

Remove IRQF_ONESHOT from irqflags.

Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Reviewed-by: Nuno Sá <nuno.sa@analog.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/iio/magnetometer/ak8975.c