天天看點

Linux核心中斷子產品之中斷處理函數描述

對于具體使用中斷的子產品來說,其中斷處理函數被中斷封裝成一個irqaction對象,此對象的handler就是      
使用者的中斷處理函數。      
struct irqaction {
 irq_handler_t  handler;
 void   *dev_id;
 void __percpu  *percpu_dev_id;
 struct irqaction *next;
 irq_handler_t  thread_fn;
 struct task_struct *thread;
 struct irqaction *secondary;
 unsigned int  irq;
 unsigned int  flags;
 unsigned long  thread_flags;
 unsigned long  thread_mask;
 const char  *name;
 struct proc_dir_entry *dir;
} ____cacheline_internodealigned_in_smp;