hardirq.h 609 B

12345678910111213141516171819202122232425262728
  1. #ifndef __V850_HARDIRQ_H__
  2. #define __V850_HARDIRQ_H__
  3. #include <linux/threads.h>
  4. #include <linux/cache.h>
  5. #include <asm/irq.h>
  6. typedef struct {
  7. unsigned int __softirq_pending;
  8. } ____cacheline_aligned irq_cpustat_t;
  9. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  10. #define HARDIRQ_BITS 8
  11. /*
  12. * The hardirq mask has to be large enough to have
  13. * space for potentially all IRQ sources in the system
  14. * nesting on a single CPU:
  15. */
  16. #if (1 << HARDIRQ_BITS) < NR_IRQS
  17. # error HARDIRQ_BITS is too low!
  18. #endif
  19. void ack_bad_irq(unsigned int irq);
  20. #endif /* __V850_HARDIRQ_H__ */