define_trace.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. #undef TRACE_EVENT
  22. #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
  23. DEFINE_TRACE(name)
  24. #undef TRACE_EVENT_FN
  25. #define TRACE_EVENT_FN(name, proto, args, tstruct, \
  26. assign, print, reg, unreg) \
  27. DEFINE_TRACE_FN(name, reg, unreg)
  28. #undef DEFINE_EVENT
  29. #define DEFINE_EVENT(template, name, proto, args) \
  30. DEFINE_TRACE(name)
  31. #undef DEFINE_EVENT_PRINT
  32. #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
  33. DEFINE_TRACE(name)
  34. #undef DECLARE_TRACE
  35. #define DECLARE_TRACE(name, proto, args) \
  36. DEFINE_TRACE(name)
  37. #undef TRACE_INCLUDE
  38. #undef __TRACE_INCLUDE
  39. #ifndef TRACE_INCLUDE_FILE
  40. # define TRACE_INCLUDE_FILE TRACE_SYSTEM
  41. # define UNDEF_TRACE_INCLUDE_FILE
  42. #endif
  43. #ifndef TRACE_INCLUDE_PATH
  44. # define __TRACE_INCLUDE(system) <trace/events/system.h>
  45. # define UNDEF_TRACE_INCLUDE_PATH
  46. #else
  47. # define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h)
  48. #endif
  49. # define TRACE_INCLUDE(system) __TRACE_INCLUDE(system)
  50. /* Let the trace headers be reread */
  51. #define TRACE_HEADER_MULTI_READ
  52. #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
  53. /* Make all open coded DECLARE_TRACE nops */
  54. #undef DECLARE_TRACE
  55. #define DECLARE_TRACE(name, proto, args)
  56. #ifdef CONFIG_EVENT_TRACING
  57. #include <trace/ftrace.h>
  58. #endif
  59. #undef TRACE_EVENT
  60. #undef TRACE_EVENT_FN
  61. #undef DECLARE_EVENT_CLASS
  62. #undef DEFINE_EVENT
  63. #undef DEFINE_EVENT_PRINT
  64. #undef TRACE_HEADER_MULTI_READ
  65. #undef DECLARE_TRACE
  66. /* Only undef what we defined in this file */
  67. #ifdef UNDEF_TRACE_INCLUDE_FILE
  68. # undef TRACE_INCLUDE_FILE
  69. # undef UNDEF_TRACE_INCLUDE_FILE
  70. #endif
  71. #ifdef UNDEF_TRACE_INCLUDE_PATH
  72. # undef TRACE_INCLUDE_PATH
  73. # undef UNDEF_TRACE_INCLUDE_PATH
  74. #endif
  75. /* We may be processing more files */
  76. #define CREATE_TRACE_POINTS
  77. #endif /* CREATE_TRACE_POINTS */