diff options
Diffstat (limited to 'include/linux/irqdesc.h')
| -rw-r--r-- | include/linux/irqdesc.h | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/irqdesc.h b/include/linux/irqdesc.h index dd1e40ddac7d..d6e2ab538ef2 100644 --- a/include/linux/irqdesc.h +++ b/include/linux/irqdesc.h @@ -28,6 +28,7 @@ struct pt_regs;   * @core_internal_state__do_not_mess_with_it: core internal status information   * @depth:		disable-depth, for nested irq_disable() calls   * @wake_depth:		enable depth, for multiple irq_set_irq_wake() callers + * @tot_count:		stats field for non-percpu irqs   * @irq_count:		stats field to detect stalled irqs   * @last_unhandled:	aging timer for unhandled count   * @irqs_unhandled:	stats field for spurious unhandled interrupts @@ -65,6 +66,7 @@ struct irq_desc {  	unsigned int		core_internal_state__do_not_mess_with_it;  	unsigned int		depth;		/* nested irq disables */  	unsigned int		wake_depth;	/* nested wake enables */ +	unsigned int		tot_count;  	unsigned int		irq_count;	/* For detecting broken IRQs */  	unsigned long		last_unhandled;	/* Aging timer for unhandled count */  	unsigned int		irqs_unhandled; @@ -171,6 +173,11 @@ static inline int handle_domain_irq(struct irq_domain *domain,  {  	return __handle_domain_irq(domain, hwirq, true, regs);  } + +#ifdef CONFIG_IRQ_DOMAIN +int handle_domain_nmi(struct irq_domain *domain, unsigned int hwirq, +		      struct pt_regs *regs); +#endif  #endif  /* Test to see if a driver has successfully requested an irq */  |