Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ARM: versatile: Remove IRQF_ONESHOT

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.

Revert adding IRQF_ONESHOT to irqflags.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Acked-by: Linus Walleij <linusw@kernel.org>
Link: https://patch.msgid.link/20260128095540.863589-9-bigeasy@linutronix.de

authored by

Sebastian Andrzej Siewior and committed by
Thomas Gleixner
a82bf786 bd81f07e

+2 -2
+2 -2
arch/arm/mach-versatile/spc.c
··· 459 459 460 460 readl_relaxed(info->baseaddr + PWC_STATUS); 461 461 462 - ret = request_irq(irq, ve_spc_irq_handler, IRQF_TRIGGER_HIGH 463 - | IRQF_ONESHOT, "vexpress-spc", info); 462 + ret = request_irq(irq, ve_spc_irq_handler, IRQF_TRIGGER_HIGH, 463 + "vexpress-spc", info); 464 464 if (ret) { 465 465 pr_err(SPCLOG "IRQ %d request failed\n", irq); 466 466 kfree(info);