aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irq.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r--include/linux/irq.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h
index d058c57be02d..838a977885e1 100644
--- a/include/linux/irq.h
+++ b/include/linux/irq.h
@@ -142,8 +142,8 @@ struct irq_chip {
142 * @depth: disable-depth, for nested irq_disable() calls 142 * @depth: disable-depth, for nested irq_disable() calls
143 * @wake_depth: enable depth, for multiple set_irq_wake() callers 143 * @wake_depth: enable depth, for multiple set_irq_wake() callers
144 * @irq_count: stats field to detect stalled irqs 144 * @irq_count: stats field to detect stalled irqs
145 * @irqs_unhandled: stats field for spurious unhandled interrupts
146 * @last_unhandled: aging timer for unhandled count 145 * @last_unhandled: aging timer for unhandled count
146 * @irqs_unhandled: stats field for spurious unhandled interrupts
147 * @lock: locking for SMP 147 * @lock: locking for SMP
148 * @affinity: IRQ affinity on SMP 148 * @affinity: IRQ affinity on SMP
149 * @cpu: cpu index useful for balancing 149 * @cpu: cpu index useful for balancing
@@ -165,8 +165,8 @@ struct irq_desc {
165 unsigned int depth; /* nested irq disables */ 165 unsigned int depth; /* nested irq disables */
166 unsigned int wake_depth; /* nested wake enables */ 166 unsigned int wake_depth; /* nested wake enables */
167 unsigned int irq_count; /* For detecting broken IRQs */ 167 unsigned int irq_count; /* For detecting broken IRQs */
168 unsigned int irqs_unhandled;
169 unsigned long last_unhandled; /* Aging timer for unhandled count */ 168 unsigned long last_unhandled; /* Aging timer for unhandled count */
169 unsigned int irqs_unhandled;
170 spinlock_t lock; 170 spinlock_t lock;
171#ifdef CONFIG_SMP 171#ifdef CONFIG_SMP
172 cpumask_t affinity; 172 cpumask_t affinity;