Impact: Reduce memory usage. This is the second half of the changes to make the irq_desc_ptrs be variable sized based on nr_cpu_ids. This is done by adding a new "max_nr_irqs" macro to irq_vectors.h (and a dummy in irqnr.h) to return a max NR_IRQS value based on NR_CPUS or nr_cpu_ids. This necessitated moving the define of MAX_IO_APICS to a separate file (asm/apicnum.h) so it could be included without the baggage of the other asm/apicdef.h declarations. Signed-off-by: Mike Travis <travis@sgi.com>
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
#ifndef _LINUX_IRQNR_H
|
|
#define _LINUX_IRQNR_H
|
|
|
|
/*
|
|
* Generic irq_desc iterators:
|
|
*/
|
|
#ifdef __KERNEL__
|
|
|
|
#ifndef CONFIG_GENERIC_HARDIRQS
|
|
#include <asm/irq.h>
|
|
|
|
/*
|
|
* Wrappers for non-genirq architectures:
|
|
*/
|
|
#define nr_irqs NR_IRQS
|
|
#define irq_to_desc(irq) (&irq_desc[irq])
|
|
|
|
# define for_each_irq_desc(irq, desc) \
|
|
for (irq = 0; irq < nr_irqs; irq++)
|
|
|
|
# define for_each_irq_desc_reverse(irq, desc) \
|
|
for (irq = nr_irqs - 1; irq >= 0; irq--)
|
|
|
|
#else /* CONFIG_GENERIC_HARDIRQS */
|
|
|
|
#include <asm/irq_vectors.h> /* need possible max_nr_irqs() */
|
|
|
|
extern int nr_irqs;
|
|
extern struct irq_desc *irq_to_desc(unsigned int irq);
|
|
|
|
# ifndef max_nr_irqs
|
|
# define max_nr_irqs(nr_cpus) NR_IRQS
|
|
# endif
|
|
|
|
# define for_each_irq_desc(irq, desc) \
|
|
for (irq = 0, desc = irq_to_desc(irq); irq < nr_irqs; \
|
|
irq++, desc = irq_to_desc(irq)) \
|
|
if (desc)
|
|
|
|
|
|
# define for_each_irq_desc_reverse(irq, desc) \
|
|
for (irq = nr_irqs - 1, desc = irq_to_desc(irq); irq >= 0; \
|
|
irq--, desc = irq_to_desc(irq)) \
|
|
if (desc)
|
|
|
|
#endif /* CONFIG_GENERIC_HARDIRQS */
|
|
|
|
#define for_each_irq_nr(irq) \
|
|
for (irq = 0; irq < nr_irqs; irq++)
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif
|