|
@@ -114,15 +114,15 @@ typedef irqreturn_t (*irq_handler_t)(int, void *);
|
|
struct irqaction {
|
|
struct irqaction {
|
|
irq_handler_t handler;
|
|
irq_handler_t handler;
|
|
unsigned long flags;
|
|
unsigned long flags;
|
|
- const char *name;
|
|
|
|
void *dev_id;
|
|
void *dev_id;
|
|
struct irqaction *next;
|
|
struct irqaction *next;
|
|
int irq;
|
|
int irq;
|
|
- struct proc_dir_entry *dir;
|
|
|
|
irq_handler_t thread_fn;
|
|
irq_handler_t thread_fn;
|
|
struct task_struct *thread;
|
|
struct task_struct *thread;
|
|
unsigned long thread_flags;
|
|
unsigned long thread_flags;
|
|
-};
|
|
|
|
|
|
+ const char *name;
|
|
|
|
+ struct proc_dir_entry *dir;
|
|
|
|
+} ____cacheline_internodealigned_in_smp;
|
|
|
|
|
|
extern irqreturn_t no_action(int cpl, void *dev_id);
|
|
extern irqreturn_t no_action(int cpl, void *dev_id);
|
|
|
|
|