define_trace.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * Trace files that want to automate creation of all tracepoints defined
  3. * in their file should include this file. The following are macros that the
  4. * trace file may define:
  5. *
  6. * TRACE_SYSTEM defines the system the tracepoint is for
  7. *
  8. * TRACE_INCLUDE_FILE if the file name is something other than TRACE_SYSTEM.h
  9. * This macro may be defined to tell define_trace.h what file to include.
  10. * Note, leave off the ".h".
  11. *
  12. * TRACE_INCLUDE_PATH if the path is something other than core kernel include/trace
  13. * then this macro can define the path to use. Note, the path is relative to
  14. * define_trace.h, not the file including it. Full path names for out of tree
  15. * modules must be used.
  16. */
  17. #ifdef CREATE_TRACE_POINTS
  18. /* Prevent recursion */
  19. #undef CREATE_TRACE_POINTS
  20. #include <linux/stringify.h>
  21. #undef TRACE_EVENT
  22. #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
  23. DEFINE_TRACE(name)
  24. #undef TRACE_EVENT_CONDITION
  25. #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \
  26. TRACE_EVENT(name, \
  27. PARAMS(proto), \
  28. PARAMS(args), \
  29. PARAMS(tstruct), \
  30. PARAMS(assign), \
  31. PARAMS(print))
  32. #undef TRACE_EVENT_FN
  33. #define TRACE_EVENT_FN(name, proto, args, tstruct, \
  34. assign, print, reg, unreg) \
  35. DEFINE_TRACE_FN(name, reg, unreg)
  36. #undef DEFINE_EVENT
  37. #define DEFINE_EVENT(template, name, proto, args) \
  38. DEFINE_TRACE(name)
  39. #undef DEFINE_EVENT_FN
  40. #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
  41. DEFINE_TRACE_FN(name, reg, unreg)
  42. #undef DEFINE_EVENT_PRINT
  43. #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
  44. DEFINE_TRACE(name)
  45. #undef DEFINE_EVENT_CONDITION
  46. #define DEFINE_EVENT_CONDITION(template, name, proto, args, cond) \
  47. DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
  48. #undef DECLARE_TRACE
  49. #define DECLARE_TRACE(name, proto, args) \
  50. DEFINE_TRACE(name)
  51. #undef TRACE_INCLUDE
  52. #undef __TRACE_INCLUDE
  53. #ifndef TRACE_INCLUDE_FILE
  54. # define TRACE_INCLUDE_FILE TRACE_SYSTEM
  55. # define UNDEF_TRACE_INCLUDE_FILE
  56. #endif
  57. #ifndef TRACE_INCLUDE_PATH
  58. # define __TRACE_INCLUDE(system) <trace/events/system.h>
  59. # define UNDEF_TRACE_INCLUDE_PATH
  60. #else
  61. # define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h)
  62. #endif
  63. # define TRACE_INCLUDE(system) __TRACE_INCLUDE(system)
  64. /* Let the trace headers be reread */
  65. #define TRACE_HEADER_MULTI_READ
  66. #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
  67. /* Make all open coded DECLARE_TRACE nops */
  68. #undef DECLARE_TRACE
  69. #define DECLARE_TRACE(name, proto, args)
  70. #ifdef TRACEPOINTS_ENABLED
  71. #include <trace/trace_events.h>
  72. #include <trace/perf.h>
  73. #endif
  74. #undef TRACE_EVENT
  75. #undef TRACE_EVENT_FN
  76. #undef TRACE_EVENT_CONDITION
  77. #undef DECLARE_EVENT_CLASS
  78. #undef DEFINE_EVENT
  79. #undef DEFINE_EVENT_FN
  80. #undef DEFINE_EVENT_PRINT
  81. #undef DEFINE_EVENT_CONDITION
  82. #undef TRACE_HEADER_MULTI_READ
  83. #undef DECLARE_TRACE
  84. /* Only undef what we defined in this file */
  85. #ifdef UNDEF_TRACE_INCLUDE_FILE
  86. # undef TRACE_INCLUDE_FILE
  87. # undef UNDEF_TRACE_INCLUDE_FILE
  88. #endif
  89. #ifdef UNDEF_TRACE_INCLUDE_PATH
  90. # undef TRACE_INCLUDE_PATH
  91. # undef UNDEF_TRACE_INCLUDE_PATH
  92. #endif
  93. /* We may be processing more files */
  94. #define CREATE_TRACE_POINTS
  95. #endif /* CREATE_TRACE_POINTS */