diff options
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 8da6643e39a6..e116fef274cd 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -99,6 +99,7 @@ typedef irqreturn_t (*irq_handler_t)(int, void *); | |||
99 | * @thread_fn: interupt handler function for threaded interrupts | 99 | * @thread_fn: interupt handler function for threaded interrupts |
100 | * @thread: thread pointer for threaded interrupts | 100 | * @thread: thread pointer for threaded interrupts |
101 | * @thread_flags: flags related to @thread | 101 | * @thread_flags: flags related to @thread |
102 | * @thread_mask: bitmask for keeping track of @thread activity | ||
102 | */ | 103 | */ |
103 | struct irqaction { | 104 | struct irqaction { |
104 | irq_handler_t handler; | 105 | irq_handler_t handler; |
@@ -109,6 +110,7 @@ struct irqaction { | |||
109 | irq_handler_t thread_fn; | 110 | irq_handler_t thread_fn; |
110 | struct task_struct *thread; | 111 | struct task_struct *thread; |
111 | unsigned long thread_flags; | 112 | unsigned long thread_flags; |
113 | unsigned long thread_mask; | ||
112 | const char *name; | 114 | const char *name; |
113 | struct proc_dir_entry *dir; | 115 | struct proc_dir_entry *dir; |
114 | } ____cacheline_internodealigned_in_smp; | 116 | } ____cacheline_internodealigned_in_smp; |