diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-07-09 15:35:13 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2021-07-09 15:35:13 +0200 |
commit | 48400483565f0b7e633cbef94b139ff295b59de3 (patch) | |
tree | 485f5563bf2f0eafcf4d88c29d1aac265e51436b /kernel | |
parent | Merge tag 'drm-next-2021-07-08-1' of git://anongit.freedesktop.org/drm/drm (diff) | |
parent | irqchip/mips: Fix RCU violation when using irqdomain lookup on interrupt entry (diff) | |
download | linux-48400483565f0b7e633cbef94b139ff295b59de3.tar.xz linux-48400483565f0b7e633cbef94b139ff295b59de3.zip |
Merge tag 'irqchip-fixes-5.14-1' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
Pull irqchip fixes from Marc Zyngier:
- Fix a MIPS bug where irqdomain loopkups could occur in a context
where RCU is not allowed
- Fix a documentation bug for handle_domain_irq
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/irq/irqdesc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c index f4dd5186858a..fadb93766020 100644 --- a/kernel/irq/irqdesc.c +++ b/kernel/irq/irqdesc.c @@ -682,7 +682,6 @@ EXPORT_SYMBOL_GPL(generic_handle_domain_irq); * usually for a root interrupt controller * @domain: The domain where to perform the lookup * @hwirq: The HW irq number to convert to a logical one - * @lookup: Whether to perform the domain lookup or not * @regs: Register file coming from the low-level handling code * * Returns: 0 on success, or -EINVAL if conversion has failed |