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

Linux/Unix编程

开发平台:

Unix_Linux

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