irqflags.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*
  2. * include/linux/irqflags.h
  3. *
  4. * IRQ flags tracing: follow the state of the hardirq and softirq flags and
  5. * provide callbacks for transitions between ON and OFF states.
  6. *
  7. * This file gets included from lowlevel asm headers too, to provide
  8. * wrapped versions of the local_irq_*() APIs, based on the
  9. * raw_local_irq_*() macros from the lowlevel headers.
  10. */
  11. #ifndef _LINUX_TRACE_IRQFLAGS_H
  12. #define _LINUX_TRACE_IRQFLAGS_H
  13. #ifdef CONFIG_TRACE_IRQFLAGS
  14. extern void trace_softirqs_on(unsigned long ip);
  15. extern void trace_softirqs_off(unsigned long ip);
  16. extern void trace_hardirqs_on(void);
  17. extern void trace_hardirqs_off(void);
  18. # define trace_hardirq_context(p) ((p)->hardirq_context)
  19. # define trace_softirq_context(p) ((p)->softirq_context)
  20. # define trace_hardirqs_enabled(p) ((p)->hardirqs_enabled)
  21. # define trace_softirqs_enabled(p) ((p)->softirqs_enabled)
  22. # define trace_hardirq_enter() do { current->hardirq_context++; } while (0)
  23. # define trace_hardirq_exit() do { current->hardirq_context--; } while (0)
  24. # define trace_softirq_enter() do { current->softirq_context++; } while (0)
  25. # define trace_softirq_exit() do { current->softirq_context--; } while (0)
  26. # define INIT_TRACE_IRQFLAGS .softirqs_enabled = 1,
  27. #else
  28. # define trace_hardirqs_on() do { } while (0)
  29. # define trace_hardirqs_off() do { } while (0)
  30. # define trace_softirqs_on(ip) do { } while (0)
  31. # define trace_softirqs_off(ip) do { } while (0)
  32. # define trace_hardirq_context(p) 0
  33. # define trace_softirq_context(p) 0
  34. # define trace_hardirqs_enabled(p) 0
  35. # define trace_softirqs_enabled(p) 0
  36. # define trace_hardirq_enter() do { } while (0)
  37. # define trace_hardirq_exit() do { } while (0)
  38. # define trace_softirq_enter() do { } while (0)
  39. # define trace_softirq_exit() do { } while (0)
  40. # define INIT_TRACE_IRQFLAGS
  41. #endif
  42. #if defined(CONFIG_IRQSOFF_TRACER) || \
  43. defined(CONFIG_PREEMPT_TRACER)
  44. extern void stop_critical_timings(void);
  45. extern void start_critical_timings(void);
  46. #else
  47. # define stop_critical_timings() do { } while (0)
  48. # define start_critical_timings() do { } while (0)
  49. #endif
  50. #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
  51. #include <asm/irqflags.h>
  52. #define local_irq_enable() \
  53. do { trace_hardirqs_on(); raw_local_irq_enable(); } while (0)
  54. #define local_irq_disable() \
  55. do { raw_local_irq_disable(); trace_hardirqs_off(); } while (0)
  56. #define local_irq_save(flags) \
  57. do { raw_local_irq_save(flags); trace_hardirqs_off(); } while (0)
  58. #define local_irq_restore(flags) \
  59. do { \
  60. if (raw_irqs_disabled_flags(flags)) { \
  61. raw_local_irq_restore(flags); \
  62. trace_hardirqs_off(); \
  63. } else { \
  64. trace_hardirqs_on(); \
  65. raw_local_irq_restore(flags); \
  66. } \
  67. } while (0)
  68. #else /* !CONFIG_TRACE_IRQFLAGS_SUPPORT */
  69. /*
  70. * The local_irq_*() APIs are equal to the raw_local_irq*()
  71. * if !TRACE_IRQFLAGS.
  72. */
  73. # define raw_local_irq_disable() local_irq_disable()
  74. # define raw_local_irq_enable() local_irq_enable()
  75. # define raw_local_irq_save(flags) local_irq_save(flags)
  76. # define raw_local_irq_restore(flags) local_irq_restore(flags)
  77. #endif /* CONFIG_TRACE_IRQFLAGS_SUPPORT */
  78. #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
  79. #define safe_halt() \
  80. do { \
  81. trace_hardirqs_on(); \
  82. raw_safe_halt(); \
  83. } while (0)
  84. #define local_save_flags(flags) raw_local_save_flags(flags)
  85. #define irqs_disabled() \
  86. ({ \
  87. unsigned long _flags; \
  88. \
  89. raw_local_save_flags(_flags); \
  90. raw_irqs_disabled_flags(_flags); \
  91. })
  92. #define irqs_disabled_flags(flags) raw_irqs_disabled_flags(flags)
  93. #endif /* CONFIG_X86 */
  94. #endif