hc
2023-12-11 6778948f9de86c3cfaf36725a7c87dcff9ba247f
kernel/arch/arm/include/asm/hardirq.h
....@@ -2,11 +2,16 @@
22 #ifndef __ASM_HARDIRQ_H
33 #define __ASM_HARDIRQ_H
44
5
+#include <linux/cache.h>
6
+#include <linux/threads.h>
57 #include <asm/irq.h>
68
7
-#define __ARCH_IRQ_EXIT_IRQS_DISABLED 1
8
-#define ack_bad_irq ack_bad_irq
9
+typedef struct {
10
+ unsigned int __softirq_pending;
11
+} ____cacheline_aligned irq_cpustat_t;
912
10
-#include <asm-generic/hardirq.h>
13
+#include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
14
+
15
+#define __ARCH_IRQ_EXIT_IRQS_DISABLED 1
1116
1217 #endif /* __ASM_HARDIRQ_H */