Skip to content

Commit fb75628

Browse files
committed
Merge tag 'irq-urgent-2022-05-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fix from Thomas Gleixner: "A single fix for a recent (introduced in 5.16) regression in the core interrupt code. The consolidation of the interrupt handler invocation code added an unconditional warning when generic_handle_domain_irq() is invoked from outside hard interrupt context. That's overbroad as the requirement for invoking these handlers in hard interrupt context is only required for certain interrupt types. The subsequently called code already contains a warning which triggers conditionally for interrupt chips which indicate this requirement in their properties. Remove the overbroad one" * tag 'irq-urgent-2022-05-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: genirq: Remove WARN_ON_ONCE() in generic_handle_domain_irq()
2 parents 2fe1020 + 792ea6a commit fb75628

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

kernel/irq/irqdesc.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,6 @@ EXPORT_SYMBOL_GPL(generic_handle_irq_safe);
701701
*/
702702
int generic_handle_domain_irq(struct irq_domain *domain, unsigned int hwirq)
703703
{
704-
WARN_ON_ONCE(!in_hardirq());
705704
return handle_irq_desc(irq_resolve_mapping(domain, hwirq));
706705
}
707706
EXPORT_SYMBOL_GPL(generic_handle_domain_irq);

0 commit comments

Comments
 (0)