]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
genirq/chip: Rework handle_level_irq()
authorThomas Gleixner <tglx@linutronix.de>
Tue, 29 Apr 2025 06:55:10 +0000 (08:55 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 7 May 2025 07:08:13 +0000 (09:08 +0200)
Use the new helpers to decide whether the interrupt should be handled and
switch the descriptor locking to guard().

Fixup the kernel doc comment while at it.

No functional change.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/all/20250429065420.926362488@linutronix.de
kernel/irq/chip.c

index 48f62fc7a773aaec7c1ae561cdcfd2f257c4cdc0..eddf0c60dd6b7bbd8330a820f61a9ccb1f031d77 100644 (file)
@@ -609,40 +609,26 @@ static void cond_unmask_irq(struct irq_desc *desc)
 }
 
 /**
- *     handle_level_irq - Level type irq handler
- *     @desc:  the interrupt description structure for this irq
+ * handle_level_irq - Level type irq handler
+ * @desc:      the interrupt description structure for this irq
  *
- *     Level type interrupts are active as long as the hardware line has
- *     the active level. This may require to mask the interrupt and unmask
- *     it after the associated handler has acknowledged the device, so the
- *     interrupt line is back to inactive.
+ * Level type interrupts are active as long as the hardware line has the
+ * active level. This may require to mask the interrupt and unmask it after
+ * the associated handler has acknowledged the device, so the interrupt
+ * line is back to inactive.
  */
 void handle_level_irq(struct irq_desc *desc)
 {
-       raw_spin_lock(&desc->lock);
+       guard(raw_spinlock)(&desc->lock);
        mask_ack_irq(desc);
 
-       if (!irq_can_handle_pm(desc))
-               goto out_unlock;
-
-       desc->istate &= ~(IRQS_REPLAY | IRQS_WAITING);
-
-       /*
-        * If its disabled or no action available
-        * keep it masked and get out of here
-        */
-       if (unlikely(!desc->action || irqd_irq_disabled(&desc->irq_data))) {
-               desc->istate |= IRQS_PENDING;
-               goto out_unlock;
-       }
+       if (!irq_can_handle(desc))
+               return;
 
        kstat_incr_irqs_this_cpu(desc);
        handle_irq_event(desc);
 
        cond_unmask_irq(desc);
-
-out_unlock:
-       raw_spin_unlock(&desc->lock);
 }
 EXPORT_SYMBOL_GPL(handle_level_irq);