Lines Matching defs:irq_desc
49 struct irq_desc { struct
50 struct irq_data irq_data;
51 unsigned int __percpu *kstat_irqs;
52 irq_flow_handler_t handle_irq;
54 irq_preflow_handler_t preflow_handler;
56 struct irqaction *action; /* IRQ action list */
57 unsigned int status_use_accessors;
58 unsigned int core_internal_state__do_not_mess_with_it;
59 unsigned int depth; /* nested irq disables */
60 unsigned int wake_depth; /* nested wake enables */
61 unsigned int irq_count; /* For detecting broken IRQs */
62 unsigned long last_unhandled; /* Aging timer for unhandled count */
63 unsigned int irqs_unhandled;
64 atomic_t threads_handled;
65 int threads_handled_last;
66 raw_spinlock_t lock;
67 struct cpumask *percpu_enabled;
69 const struct cpumask *affinity_hint;
93 extern struct irq_desc irq_desc[NR_IRQS]; argument