1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Trace files that want to automate creation of all tracepoints defined 4 * in their file should include this file. The following are macros that the 5 * trace file may define: 6 * 7 * TRACE_SYSTEM defines the system the tracepoint is for 8 * 9 * TRACE_INCLUDE_FILE if the file name is something other than TRACE_SYSTEM.h 10 * This macro may be defined to tell define_trace.h what file to include. 11 * Note, leave off the ".h". 12 * 13 * TRACE_INCLUDE_PATH if the path is something other than core kernel include/trace 14 * then this macro can define the path to use. Note, the path is relative to 15 * define_trace.h, not the file including it. Full path names for out of tree 16 * modules must be used. 17 */ 18 19 #ifdef CREATE_TRACE_POINTS 20 21 /* Prevent recursion */ 22 #undef CREATE_TRACE_POINTS 23 24 #include <linux/stringify.h> 25 26 #undef TRACE_EVENT 27 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ 28 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 29 30 #undef TRACE_EVENT_CONDITION 31 #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \ 32 TRACE_EVENT(name, \ 33 PARAMS(proto), \ 34 PARAMS(args), \ 35 PARAMS(tstruct), \ 36 PARAMS(assign), \ 37 PARAMS(print)) 38 39 #undef TRACE_EVENT_FN 40 #define TRACE_EVENT_FN(name, proto, args, tstruct, \ 41 assign, print, reg, unreg) \ 42 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 43 44 #undef TRACE_EVENT_FN_COND 45 #define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \ 46 assign, print, reg, unreg) \ 47 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 48 49 #undef TRACE_EVENT_NOP 50 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) 51 52 #undef DEFINE_EVENT_NOP 53 #define DEFINE_EVENT_NOP(template, name, proto, args) 54 55 #undef DEFINE_EVENT 56 #define DEFINE_EVENT(template, name, proto, args) \ 57 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 58 59 #undef DEFINE_EVENT_FN 60 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \ 61 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 62 63 #undef DEFINE_EVENT_PRINT 64 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ 65 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 66 67 #undef DEFINE_EVENT_CONDITION 68 #define DEFINE_EVENT_CONDITION(template, name, proto, args, cond) \ 69 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) 70 71 #undef DECLARE_TRACE 72 #define DECLARE_TRACE(name, proto, args) \ 73 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 74 75 /* If requested, create helpers for calling these tracepoints from Rust. */ 76 #ifdef CREATE_RUST_TRACE_POINTS 77 #undef DEFINE_RUST_DO_TRACE 78 #define DEFINE_RUST_DO_TRACE(name, proto, args) \ 79 __DEFINE_RUST_DO_TRACE(name, PARAMS(proto), PARAMS(args)) 80 #endif 81 82 #undef TRACE_INCLUDE 83 #undef __TRACE_INCLUDE 84 85 #ifndef TRACE_INCLUDE_FILE 86 # define TRACE_INCLUDE_FILE TRACE_SYSTEM 87 # define UNDEF_TRACE_INCLUDE_FILE 88 #endif 89 90 #ifndef TRACE_INCLUDE_PATH 91 # define __TRACE_INCLUDE(system) <trace/events/system.h> 92 # define UNDEF_TRACE_INCLUDE_PATH 93 #else 94 # define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h) 95 #endif 96 97 # define TRACE_INCLUDE(system) __TRACE_INCLUDE(system) 98 99 /* Let the trace headers be reread */ 100 #define TRACE_HEADER_MULTI_READ 101 102 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE) 103 104 /* Make all open coded DECLARE_TRACE nops */ 105 #undef DECLARE_TRACE 106 #define DECLARE_TRACE(name, proto, args) 107 108 #ifdef TRACEPOINTS_ENABLED 109 #include <trace/trace_events.h> 110 #include <trace/perf.h> 111 #include <trace/bpf_probe.h> 112 #endif 113 114 #undef TRACE_EVENT 115 #undef TRACE_EVENT_FN 116 #undef TRACE_EVENT_FN_COND 117 #undef TRACE_EVENT_CONDITION 118 #undef TRACE_EVENT_NOP 119 #undef DEFINE_EVENT_NOP 120 #undef DECLARE_EVENT_CLASS 121 #undef DEFINE_EVENT 122 #undef DEFINE_EVENT_FN 123 #undef DEFINE_EVENT_PRINT 124 #undef DEFINE_EVENT_CONDITION 125 #undef TRACE_HEADER_MULTI_READ 126 #undef DECLARE_TRACE 127 128 /* Only undef what we defined in this file */ 129 #ifdef UNDEF_TRACE_INCLUDE_FILE 130 # undef TRACE_INCLUDE_FILE 131 # undef UNDEF_TRACE_INCLUDE_FILE 132 #endif 133 134 #ifdef UNDEF_TRACE_INCLUDE_PATH 135 # undef TRACE_INCLUDE_PATH 136 # undef UNDEF_TRACE_INCLUDE_PATH 137 #endif 138 139 #ifdef CREATE_RUST_TRACE_POINTS 140 # undef DEFINE_RUST_DO_TRACE 141 # define DEFINE_RUST_DO_TRACE(name, proto, args) 142 #endif 143 144 /* We may be processing more files */ 145 #define CREATE_TRACE_POINTS 146 147 #endif /* CREATE_TRACE_POINTS */ 148