1 #ifndef __ASM_HARDIRQ_H
2 #define __ASM_HARDIRQ_H
4 #include <linux/config.h>
5 #include <linux/threads.h>
9 unsigned int __softirq_pending
;
10 unsigned long idle_timestamp
;
11 unsigned int __nmi_count
; /* arch dependent */
12 unsigned int apic_timer_irqs
; /* arch dependent */
13 } ____cacheline_aligned irq_cpustat_t
;
15 DECLARE_PER_CPU(irq_cpustat_t
, irq_stat
);
16 extern irq_cpustat_t irq_stat
[];
18 #define __ARCH_IRQ_STAT
19 #define __IRQ_STAT(cpu, member) (per_cpu(irq_stat, cpu).member)
21 void ack_bad_irq(unsigned int irq
);
22 #include <linux/irq_cpustat.h>
24 #endif /* __ASM_HARDIRQ_H */