aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org> 2022-05-15 06:37:05 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org> 2022-05-15 06:37:05 -0700
commitfb756280f97788525e898181adfc4feb106c79d3 (patch)
tree1eea784e1a101e14c3b0cc9828e75578203abd10 /kernel
parentMerge tag 'perf-tools-fixes-for-v5.18-2022-05-14' of git://git.kernel.org/pub... (diff)
parentgenirq: Remove WARN_ON_ONCE() in generic_handle_domain_irq() (diff)
downloadlinux-fb756280f97788525e898181adfc4feb106c79d3.tar.gz
linux-fb756280f97788525e898181adfc4feb106c79d3.tar.bz2
linux-fb756280f97788525e898181adfc4feb106c79d3.zip
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()
Diffstat (limited to 'kernel')
-rw-r--r--kernel/irq/irqdesc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c
index 0099b87dd853..d323b180b0f3 100644
--- a/kernel/irq/irqdesc.c
+++ b/kernel/irq/irqdesc.c
@@ -701,7 +701,6 @@ EXPORT_SYMBOL_GPL(generic_handle_irq_safe);
*/
int generic_handle_domain_irq(struct irq_domain *domain, unsigned int hwirq)
{
- WARN_ON_ONCE(!in_hardirq());
return handle_irq_desc(irq_resolve_mapping(domain, hwirq));
}
EXPORT_SYMBOL_GPL(generic_handle_domain_irq);