1 #ifndef __ASM_HARDIRQ_H
2 #define __ASM_HARDIRQ_H
4 #include <linux/cache.h>
5 #include <linux/threads.h>
11 unsigned int __softirq_pending
;
12 #ifdef CONFIG_LOCAL_TIMERS
13 unsigned int local_timer_irqs
;
16 unsigned int ipi_irqs
[NR_IPI
];
18 } ____cacheline_aligned irq_cpustat_t
;
20 #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
22 #define __inc_irq_stat(cpu, member) __IRQ_STAT(cpu, member)++
23 #define __get_irq_stat(cpu, member) __IRQ_STAT(cpu, member)
26 u64
smp_irq_stat_cpu(unsigned int cpu
);
28 #define smp_irq_stat_cpu(cpu) 0
31 #define arch_irq_stat_cpu smp_irq_stat_cpu
34 #define HARDIRQ_BITS 10
36 #define HARDIRQ_BITS 9
38 #define HARDIRQ_BITS 8
42 * The hardirq mask has to be large enough to have space
43 * for potentially all IRQ sources in the system nesting
46 #if (1 << HARDIRQ_BITS) < NR_IRQS
47 # error HARDIRQ_BITS is too low!
50 #define __ARCH_IRQ_EXIT_IRQS_DISABLED 1
52 #endif /* __ASM_HARDIRQ_H */