hardirq.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __ASM_HARDIRQ_H
  2. #define __ASM_HARDIRQ_H
  3. #include <linux/config.h>
  4. #include <linux/threads.h>
  5. #include <linux/irq.h>
  6. /* assembly code in softirq.h is sensitive to the offsets of these fields */
  7. typedef struct {
  8. unsigned int __softirq_pending;
  9. unsigned int __local_irq_count;
  10. unsigned int __local_bh_count;
  11. unsigned int __syscall_count;
  12. struct task_struct * __ksoftirqd_task; /* waitqueue is too large */
  13. unsigned int __nmi_count; /* arch dependent */
  14. } ____cacheline_aligned irq_cpustat_t;
  15. #include <linux/irq_cpustat.h> /* Standard mappings for irq_cpustat_t above */
  16. /*
  17.  * Are we in an interrupt context? Either doing bottom half
  18.  * or hardware interrupt processing?
  19.  */
  20. #define in_interrupt() ({ int __cpu = smp_processor_id(); 
  21. (local_irq_count(__cpu) + local_bh_count(__cpu) != 0); })
  22. #define in_irq() (local_irq_count(smp_processor_id()) != 0)
  23. #ifndef CONFIG_SMP
  24. #define hardirq_trylock(cpu) (local_irq_count(cpu) == 0)
  25. #define hardirq_endlock(cpu) do { } while (0)
  26. #define irq_enter(cpu, irq) (local_irq_count(cpu)++)
  27. #define irq_exit(cpu, irq) (local_irq_count(cpu)--)
  28. #define synchronize_irq() barrier()
  29. #else
  30. #include <asm/atomic.h>
  31. #include <asm/smp.h>
  32. extern unsigned char global_irq_holder;
  33. extern unsigned volatile long global_irq_lock; /* long for set_bit -RR */
  34. static inline int irqs_running (void)
  35. {
  36. int i;
  37. for (i = 0; i < smp_num_cpus; i++)
  38. if (local_irq_count(i))
  39. return 1;
  40. return 0;
  41. }
  42. static inline void release_irqlock(int cpu)
  43. {
  44. /* if we didn't own the irq lock, just ignore.. */
  45. if (global_irq_holder == (unsigned char) cpu) {
  46. global_irq_holder = NO_PROC_ID;
  47. clear_bit(0,&global_irq_lock);
  48. }
  49. }
  50. static inline void irq_enter(int cpu, int irq)
  51. {
  52. ++local_irq_count(cpu);
  53. while (test_bit(0,&global_irq_lock)) {
  54. cpu_relax();
  55. }
  56. }
  57. static inline void irq_exit(int cpu, int irq)
  58. {
  59. --local_irq_count(cpu);
  60. }
  61. static inline int hardirq_trylock(int cpu)
  62. {
  63. return !local_irq_count(cpu) && !test_bit(0,&global_irq_lock);
  64. }
  65. #define hardirq_endlock(cpu) do { } while (0)
  66. extern void synchronize_irq(void);
  67. #endif /* CONFIG_SMP */
  68. #endif /* __ASM_HARDIRQ_H */