define_trace.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Trace files that want to automate creationg 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. /*
  22. * module.h includes tracepoints, and because ftrace.h
  23. * pulls in module.h:
  24. * trace/ftrace.h -> linux/ftrace_event.h -> linux/perf_event.h ->
  25. * linux/ftrace.h -> linux/module.h
  26. * we must include module.h here before we play with any of
  27. * the TRACE_EVENT() macros, otherwise the tracepoints included
  28. * by module.h may break the build.
  29. */
  30. #include <linux/module.h>
  31. #undef TRACE_EVENT
  32. #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
  33. DEFINE_TRACE(name)
  34. #undef TRACE_EVENT_CONDITION
  35. #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \
  36. TRACE_EVENT(name, \
  37. PARAMS(proto), \
  38. PARAMS(args), \
  39. PARAMS(tstruct), \
  40. PARAMS(assign), \
  41. PARAMS(print))
  42. #undef TRACE_EVENT_FN
  43. #define TRACE_EVENT_FN(name, proto, args, tstruct, \
  44. assign, print, reg, unreg) \
  45. DEFINE_TRACE_FN(name, reg, unreg)
  46. #undef DEFINE_EVENT
  47. #define DEFINE_EVENT(template, name, proto, args) \
  48. DEFINE_TRACE(name)
  49. #undef DEFINE_EVENT_PRINT
  50. #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
  51. DEFINE_TRACE(name)
  52. #undef DEFINE_EVENT_CONDITION
  53. #define DEFINE_EVENT_CONDITION(template, name, proto, args, cond) \
  54. DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
  55. #undef DECLARE_TRACE
  56. #define DECLARE_TRACE(name, proto, args) \
  57. DEFINE_TRACE(name)
  58. #undef TRACE_INCLUDE
  59. #undef __TRACE_INCLUDE
  60. #ifndef TRACE_INCLUDE_FILE
  61. # define TRACE_INCLUDE_FILE TRACE_SYSTEM
  62. # define UNDEF_TRACE_INCLUDE_FILE
  63. #endif
  64. #ifndef TRACE_INCLUDE_PATH
  65. # define __TRACE_INCLUDE(system) <trace/events/system.h>
  66. # define UNDEF_TRACE_INCLUDE_PATH
  67. #else
  68. # define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h)
  69. #endif
  70. # define TRACE_INCLUDE(system) __TRACE_INCLUDE(system)
  71. /* Let the trace headers be reread */
  72. #define TRACE_HEADER_MULTI_READ
  73. #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
  74. /* Make all open coded DECLARE_TRACE nops */
  75. #undef DECLARE_TRACE
  76. #define DECLARE_TRACE(name, proto, args)
  77. #ifdef CONFIG_EVENT_TRACING
  78. #include <trace/ftrace.h>
  79. #endif
  80. #undef TRACE_EVENT
  81. #undef TRACE_EVENT_FN
  82. #undef TRACE_EVENT_CONDITION
  83. #undef DECLARE_EVENT_CLASS
  84. #undef DEFINE_EVENT
  85. #undef DEFINE_EVENT_PRINT
  86. #undef DEFINE_EVENT_CONDITION
  87. #undef TRACE_HEADER_MULTI_READ
  88. #undef DECLARE_TRACE
  89. /* Only undef what we defined in this file */
  90. #ifdef UNDEF_TRACE_INCLUDE_FILE
  91. # undef TRACE_INCLUDE_FILE
  92. # undef UNDEF_TRACE_INCLUDE_FILE
  93. #endif
  94. #ifdef UNDEF_TRACE_INCLUDE_PATH
  95. # undef TRACE_INCLUDE_PATH
  96. # undef UNDEF_TRACE_INCLUDE_PATH
  97. #endif
  98. /* We may be processing more files */
  99. #define CREATE_TRACE_POINTS
  100. #endif /* CREATE_TRACE_POINTS */