genirq/manage: Rework prepare_percpu_nmi()

Use the new guards to get and lock the interrupt descriptor and tidy up the
code.

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/20250429065422.494561120@linutronix.de
pull/1250/head
Thomas Gleixner 2025-04-29 08:55:49 +02:00
parent 8e3f672b19
commit 65dd1f7ca9
1 changed files with 8 additions and 21 deletions

View File

@ -2606,32 +2606,19 @@ err_out:
*/
int prepare_percpu_nmi(unsigned int irq)
{
unsigned long flags;
struct irq_desc *desc;
int ret = 0;
int ret = -EINVAL;
WARN_ON(preemptible());
desc = irq_get_desc_lock(irq, &flags,
IRQ_GET_DESC_CHECK_PERCPU);
if (!desc)
return -EINVAL;
scoped_irqdesc_get_and_lock(irq, IRQ_GET_DESC_CHECK_PERCPU) {
if (WARN(!irq_is_nmi(scoped_irqdesc),
"prepare_percpu_nmi called for a non-NMI interrupt: irq %u\n", irq))
return -EINVAL;
if (WARN(!irq_is_nmi(desc),
KERN_ERR "prepare_percpu_nmi called for a non-NMI interrupt: irq %u\n",
irq)) {
ret = -EINVAL;
goto out;
ret = irq_nmi_setup(scoped_irqdesc);
if (ret)
pr_err("Failed to setup NMI delivery: irq %u\n", irq);
}
ret = irq_nmi_setup(desc);
if (ret) {
pr_err("Failed to setup NMI delivery: irq %u\n", irq);
goto out;
}
out:
irq_put_desc_unlock(desc, flags);
return ret;
}