Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xen/events: Switch to irq_get_nr_irqs()

Use the irq_get_nr_irqs() function instead of the global variable
'nr_irqs'. Prepare for changing 'nr_irqs' from an exported global
variable into a variable with file scope.

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20241015190953.1266194-20-bvanassche@acm.org

authored by

Bart Van Assche and committed by
Thomas Gleixner
3e48fa2e d0c62d51

+1 -1
+1 -1
drivers/xen/events/events_base.c
··· 411 411 { 412 412 const struct irq_info *info = NULL; 413 413 414 - if (likely(irq < nr_irqs)) 414 + if (likely(irq < irq_get_nr_irqs())) 415 415 info = info_for_irq(irq); 416 416 if (!info) 417 417 return 0;