trace-events-sample.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * If TRACE_SYSTEM is defined, that will be the directory created
  4. * in the ftrace directory under /sys/kernel/tracing/events/<system>
  5. *
  6. * The define_trace.h below will also look for a file name of
  7. * TRACE_SYSTEM.h where TRACE_SYSTEM is what is defined here.
  8. * In this case, it would look for sample-trace.h
  9. *
  10. * If the header name will be different than the system name
  11. * (as in this case), then you can override the header name that
  12. * define_trace.h will look up by defining TRACE_INCLUDE_FILE
  13. *
  14. * This file is called trace-events-sample.h but we want the system
  15. * to be called "sample-trace". Therefore we must define the name of this
  16. * file:
  17. *
  18. * #define TRACE_INCLUDE_FILE trace-events-sample
  19. *
  20. * As we do an the bottom of this file.
  21. *
  22. * Notice that TRACE_SYSTEM should be defined outside of #if
  23. * protection, just like TRACE_INCLUDE_FILE.
  24. */
  25. #undef TRACE_SYSTEM
  26. #define TRACE_SYSTEM sample-trace
  27. /*
  28. * TRACE_SYSTEM is expected to be a C valid variable (alpha-numeric
  29. * and underscore), although it may start with numbers. If for some
  30. * reason it is not, you need to add the following lines:
  31. */
  32. #undef TRACE_SYSTEM_VAR
  33. #define TRACE_SYSTEM_VAR sample_trace
  34. /*
  35. * But the above is only needed if TRACE_SYSTEM is not alpha-numeric
  36. * and underscored. By default, TRACE_SYSTEM_VAR will be equal to
  37. * TRACE_SYSTEM. As TRACE_SYSTEM_VAR must be alpha-numeric, if
  38. * TRACE_SYSTEM is not, then TRACE_SYSTEM_VAR must be defined with
  39. * only alpha-numeric and underscores.
  40. *
  41. * The TRACE_SYSTEM_VAR is only used internally and not visible to
  42. * user space.
  43. */
  44. /*
  45. * Notice that this file is not protected like a normal header.
  46. * We also must allow for rereading of this file. The
  47. *
  48. * || defined(TRACE_HEADER_MULTI_READ)
  49. *
  50. * serves this purpose.
  51. */
  52. #if !defined(_TRACE_EVENT_SAMPLE_H) || defined(TRACE_HEADER_MULTI_READ)
  53. #define _TRACE_EVENT_SAMPLE_H
  54. /*
  55. * All trace headers should include tracepoint.h, until we finally
  56. * make it into a standard header.
  57. */
  58. #include <linux/tracepoint.h>
  59. /*
  60. * The TRACE_EVENT macro is broken up into 5 parts.
  61. *
  62. * name: name of the trace point. This is also how to enable the tracepoint.
  63. * A function called trace_foo_bar() will be created.
  64. *
  65. * proto: the prototype of the function trace_foo_bar()
  66. * Here it is trace_foo_bar(char *foo, int bar).
  67. *
  68. * args: must match the arguments in the prototype.
  69. * Here it is simply "foo, bar".
  70. *
  71. * struct: This defines the way the data will be stored in the ring buffer.
  72. * The items declared here become part of a special structure
  73. * called "__entry", which can be used in the fast_assign part of the
  74. * TRACE_EVENT macro.
  75. *
  76. * Here are the currently defined types you can use:
  77. *
  78. * __field : Is broken up into type and name. Where type can be any
  79. * primitive type (integer, long or pointer).
  80. *
  81. * __field(int, foo)
  82. *
  83. * __entry->foo = 5;
  84. *
  85. * __field_struct : This can be any static complex data type (struct, union
  86. * but not an array). Be careful using complex types, as each
  87. * event is limited in size, and copying large amounts of data
  88. * into the ring buffer can slow things down.
  89. *
  90. * __field_struct(struct bar, foo)
  91. *
  92. * __entry->bar.x = y;
  93. * __array: There are three fields (type, name, size). The type is the
  94. * type of elements in the array, the name is the name of the array.
  95. * size is the number of items in the array (not the total size).
  96. *
  97. * __array( char, foo, 10) is the same as saying: char foo[10];
  98. *
  99. * Assigning arrays can be done like any array:
  100. *
  101. * __entry->foo[0] = 'a';
  102. *
  103. * memcpy(__entry->foo, bar, 10);
  104. *
  105. * __dynamic_array: This is similar to array, but can vary its size from
  106. * instance to instance of the tracepoint being called.
  107. * Like __array, this too has three elements (type, name, size);
  108. * type is the type of the element, name is the name of the array.
  109. * The size is different than __array. It is not a static number,
  110. * but the algorithm to figure out the length of the array for the
  111. * specific instance of tracepoint. Again, size is the number of
  112. * items in the array, not the total length in bytes.
  113. *
  114. * __dynamic_array( int, foo, bar) is similar to: int foo[bar];
  115. *
  116. * Note, unlike arrays, you must use the __get_dynamic_array() macro
  117. * to access the array.
  118. *
  119. * memcpy(__get_dynamic_array(foo), bar, 10);
  120. *
  121. * Notice, that "__entry" is not needed here.
  122. *
  123. * __string: This is a special kind of __dynamic_array. It expects to
  124. * have a null terminated character array passed to it (it allows
  125. * for NULL too, which would be converted into "(null)"). __string
  126. * takes two parameter (name, src), where name is the name of
  127. * the string saved, and src is the string to copy into the
  128. * ring buffer.
  129. *
  130. * __string(foo, bar) is similar to: strcpy(foo, bar)
  131. *
  132. * To assign a string, use the helper macro __assign_str().
  133. *
  134. * __assign_str(foo, bar);
  135. *
  136. * In most cases, the __assign_str() macro will take the same
  137. * parameters as the __string() macro had to declare the string.
  138. *
  139. * __vstring: This is similar to __string() but instead of taking a
  140. * dynamic length, it takes a variable list va_list 'va' variable.
  141. * Some event callers already have a message from parameters saved
  142. * in a va_list. Passing in the format and the va_list variable
  143. * will save just enough on the ring buffer for that string.
  144. * Note, the va variable used is a pointer to a va_list, not
  145. * to the va_list directly.
  146. *
  147. * (va_list *va)
  148. *
  149. * __vstring(foo, fmt, va) is similar to: vsnprintf(foo, fmt, va)
  150. *
  151. * To assign the string, use the helper macro __assign_vstr().
  152. *
  153. * __assign_vstr(foo, fmt, va);
  154. *
  155. * In most cases, the __assign_vstr() macro will take the same
  156. * parameters as the __vstring() macro had to declare the string.
  157. * Use __get_str() to retrieve the __vstring() just like it would for
  158. * __string().
  159. *
  160. * __string_len: This is a helper to a __dynamic_array, but it understands
  161. * that the array has characters in it, and with the combined
  162. * use of __assign_str_len(), it will allocate 'len' + 1 bytes
  163. * in the ring buffer and add a '\0' to the string. This is
  164. * useful if the string being saved has no terminating '\0' byte.
  165. * It requires that the length of the string is known as it acts
  166. * like a memcpy().
  167. *
  168. * Declared with:
  169. *
  170. * __string_len(foo, bar, len)
  171. *
  172. * To assign this string, use the helper macro __assign_str_len().
  173. *
  174. * __assign_str_len(foo, bar, len);
  175. *
  176. * Then len + 1 is allocated to the ring buffer, and a nul terminating
  177. * byte is added. This is similar to:
  178. *
  179. * memcpy(__get_str(foo), bar, len);
  180. * __get_str(foo)[len] = 0;
  181. *
  182. * The advantage of using this over __dynamic_array, is that it
  183. * takes care of allocating the extra byte on the ring buffer
  184. * for the '\0' terminating byte, and __get_str(foo) can be used
  185. * in the TP_printk().
  186. *
  187. * __bitmask: This is another kind of __dynamic_array, but it expects
  188. * an array of longs, and the number of bits to parse. It takes
  189. * two parameters (name, nr_bits), where name is the name of the
  190. * bitmask to save, and the nr_bits is the number of bits to record.
  191. *
  192. * __bitmask(target_cpu, nr_cpumask_bits)
  193. *
  194. * To assign a bitmask, use the __assign_bitmask() helper macro.
  195. *
  196. * __assign_bitmask(target_cpus, cpumask_bits(bar), nr_cpumask_bits);
  197. *
  198. *
  199. * fast_assign: This is a C like function that is used to store the items
  200. * into the ring buffer. A special variable called "__entry" will be the
  201. * structure that points into the ring buffer and has the same fields as
  202. * described by the struct part of TRACE_EVENT above.
  203. *
  204. * printk: This is a way to print out the data in pretty print. This is
  205. * useful if the system crashes and you are logging via a serial line,
  206. * the data can be printed to the console using this "printk" method.
  207. * This is also used to print out the data from the trace files.
  208. * Again, the __entry macro is used to access the data from the ring buffer.
  209. *
  210. * Note, __dynamic_array, __string, and __bitmask require special helpers
  211. * to access the data.
  212. *
  213. * For __dynamic_array(int, foo, bar) use __get_dynamic_array(foo)
  214. * Use __get_dynamic_array_len(foo) to get the length of the array
  215. * saved. Note, __get_dynamic_array_len() returns the total allocated
  216. * length of the dynamic array; __print_array() expects the second
  217. * parameter to be the number of elements. To get that, the array length
  218. * needs to be divided by the element size.
  219. *
  220. * For __string(foo, bar) use __get_str(foo)
  221. *
  222. * For __bitmask(target_cpus, nr_cpumask_bits) use __get_bitmask(target_cpus)
  223. *
  224. *
  225. * Note, that for both the assign and the printk, __entry is the handler
  226. * to the data structure in the ring buffer, and is defined by the
  227. * TP_STRUCT__entry.
  228. */
  229. /*
  230. * It is OK to have helper functions in the file, but they need to be protected
  231. * from being defined more than once. Remember, this file gets included more
  232. * than once.
  233. */
  234. #ifndef __TRACE_EVENT_SAMPLE_HELPER_FUNCTIONS
  235. #define __TRACE_EVENT_SAMPLE_HELPER_FUNCTIONS
  236. static inline int __length_of(const int *list)
  237. {
  238. int i;
  239. if (!list)
  240. return 0;
  241. for (i = 0; list[i]; i++)
  242. ;
  243. return i;
  244. }
  245. enum {
  246. TRACE_SAMPLE_FOO = 2,
  247. TRACE_SAMPLE_BAR = 4,
  248. TRACE_SAMPLE_ZOO = 8,
  249. };
  250. #endif
  251. /*
  252. * If enums are used in the TP_printk(), their names will be shown in
  253. * format files and not their values. This can cause problems with user
  254. * space programs that parse the format files to know how to translate
  255. * the raw binary trace output into human readable text.
  256. *
  257. * To help out user space programs, any enum that is used in the TP_printk()
  258. * should be defined by TRACE_DEFINE_ENUM() macro. All that is needed to
  259. * be done is to add this macro with the enum within it in the trace
  260. * header file, and it will be converted in the output.
  261. */
  262. TRACE_DEFINE_ENUM(TRACE_SAMPLE_FOO);
  263. TRACE_DEFINE_ENUM(TRACE_SAMPLE_BAR);
  264. TRACE_DEFINE_ENUM(TRACE_SAMPLE_ZOO);
  265. TRACE_EVENT(foo_bar,
  266. TP_PROTO(const char *foo, int bar, const int *lst,
  267. const char *string, const struct cpumask *mask,
  268. const char *fmt, va_list *va),
  269. TP_ARGS(foo, bar, lst, string, mask, fmt, va),
  270. TP_STRUCT__entry(
  271. __array( char, foo, 10 )
  272. __field( int, bar )
  273. __dynamic_array(int, list, __length_of(lst))
  274. __string( str, string )
  275. __bitmask( cpus, num_possible_cpus() )
  276. __vstring( vstr, fmt, va )
  277. ),
  278. TP_fast_assign(
  279. strlcpy(__entry->foo, foo, 10);
  280. __entry->bar = bar;
  281. memcpy(__get_dynamic_array(list), lst,
  282. __length_of(lst) * sizeof(int));
  283. __assign_str(str, string);
  284. __assign_vstr(vstr, fmt, va);
  285. __assign_bitmask(cpus, cpumask_bits(mask), num_possible_cpus());
  286. ),
  287. TP_printk("foo %s %d %s %s %s %s (%s) %s", __entry->foo, __entry->bar,
  288. /*
  289. * Notice here the use of some helper functions. This includes:
  290. *
  291. * __print_symbolic( variable, { value, "string" }, ... ),
  292. *
  293. * The variable is tested against each value of the { } pair. If
  294. * the variable matches one of the values, then it will print the
  295. * string in that pair. If non are matched, it returns a string
  296. * version of the number (if __entry->bar == 7 then "7" is returned).
  297. */
  298. __print_symbolic(__entry->bar,
  299. { 0, "zero" },
  300. { TRACE_SAMPLE_FOO, "TWO" },
  301. { TRACE_SAMPLE_BAR, "FOUR" },
  302. { TRACE_SAMPLE_ZOO, "EIGHT" },
  303. { 10, "TEN" }
  304. ),
  305. /*
  306. * __print_flags( variable, "delim", { value, "flag" }, ... ),
  307. *
  308. * This is similar to __print_symbolic, except that it tests the bits
  309. * of the value. If ((FLAG & variable) == FLAG) then the string is
  310. * printed. If more than one flag matches, then each one that does is
  311. * also printed with delim in between them.
  312. * If not all bits are accounted for, then the not found bits will be
  313. * added in hex format: 0x506 will show BIT2|BIT4|0x500
  314. */
  315. __print_flags(__entry->bar, "|",
  316. { 1, "BIT1" },
  317. { 2, "BIT2" },
  318. { 4, "BIT3" },
  319. { 8, "BIT4" }
  320. ),
  321. /*
  322. * __print_array( array, len, element_size )
  323. *
  324. * This prints out the array that is defined by __array in a nice format.
  325. */
  326. __print_array(__get_dynamic_array(list),
  327. __get_dynamic_array_len(list) / sizeof(int),
  328. sizeof(int)),
  329. __get_str(str), __get_bitmask(cpus), __get_str(vstr))
  330. );
  331. /*
  332. * There may be a case where a tracepoint should only be called if
  333. * some condition is set. Otherwise the tracepoint should not be called.
  334. * But to do something like:
  335. *
  336. * if (cond)
  337. * trace_foo();
  338. *
  339. * Would cause a little overhead when tracing is not enabled, and that
  340. * overhead, even if small, is not something we want. As tracepoints
  341. * use static branch (aka jump_labels), where no branch is taken to
  342. * skip the tracepoint when not enabled, and a jmp is placed to jump
  343. * to the tracepoint code when it is enabled, having a if statement
  344. * nullifies that optimization. It would be nice to place that
  345. * condition within the static branch. This is where TRACE_EVENT_CONDITION
  346. * comes in.
  347. *
  348. * TRACE_EVENT_CONDITION() is just like TRACE_EVENT, except it adds another
  349. * parameter just after args. Where TRACE_EVENT has:
  350. *
  351. * TRACE_EVENT(name, proto, args, struct, assign, printk)
  352. *
  353. * the CONDITION version has:
  354. *
  355. * TRACE_EVENT_CONDITION(name, proto, args, cond, struct, assign, printk)
  356. *
  357. * Everything is the same as TRACE_EVENT except for the new cond. Think
  358. * of the cond variable as:
  359. *
  360. * if (cond)
  361. * trace_foo_bar_with_cond();
  362. *
  363. * Except that the logic for the if branch is placed after the static branch.
  364. * That is, the if statement that processes the condition will not be
  365. * executed unless that traecpoint is enabled. Otherwise it still remains
  366. * a nop.
  367. */
  368. TRACE_EVENT_CONDITION(foo_bar_with_cond,
  369. TP_PROTO(const char *foo, int bar),
  370. TP_ARGS(foo, bar),
  371. TP_CONDITION(!(bar % 10)),
  372. TP_STRUCT__entry(
  373. __string( foo, foo )
  374. __field( int, bar )
  375. ),
  376. TP_fast_assign(
  377. __assign_str(foo, foo);
  378. __entry->bar = bar;
  379. ),
  380. TP_printk("foo %s %d", __get_str(foo), __entry->bar)
  381. );
  382. int foo_bar_reg(void);
  383. void foo_bar_unreg(void);
  384. /*
  385. * Now in the case that some function needs to be called when the
  386. * tracepoint is enabled and/or when it is disabled, the
  387. * TRACE_EVENT_FN() serves this purpose. This is just like TRACE_EVENT()
  388. * but adds two more parameters at the end:
  389. *
  390. * TRACE_EVENT_FN( name, proto, args, struct, assign, printk, reg, unreg)
  391. *
  392. * reg and unreg are functions with the prototype of:
  393. *
  394. * void reg(void)
  395. *
  396. * The reg function gets called before the tracepoint is enabled, and
  397. * the unreg function gets called after the tracepoint is disabled.
  398. *
  399. * Note, reg and unreg are allowed to be NULL. If you only need to
  400. * call a function before enabling, or after disabling, just set one
  401. * function and pass in NULL for the other parameter.
  402. */
  403. TRACE_EVENT_FN(foo_bar_with_fn,
  404. TP_PROTO(const char *foo, int bar),
  405. TP_ARGS(foo, bar),
  406. TP_STRUCT__entry(
  407. __string( foo, foo )
  408. __field( int, bar )
  409. ),
  410. TP_fast_assign(
  411. __assign_str(foo, foo);
  412. __entry->bar = bar;
  413. ),
  414. TP_printk("foo %s %d", __get_str(foo), __entry->bar),
  415. foo_bar_reg, foo_bar_unreg
  416. );
  417. /*
  418. * Each TRACE_EVENT macro creates several helper functions to produce
  419. * the code to add the tracepoint, create the files in the trace
  420. * directory, hook it to perf, assign the values and to print out
  421. * the raw data from the ring buffer. To prevent too much bloat,
  422. * if there are more than one tracepoint that uses the same format
  423. * for the proto, args, struct, assign and printk, and only the name
  424. * is different, it is highly recommended to use the DECLARE_EVENT_CLASS
  425. *
  426. * DECLARE_EVENT_CLASS() macro creates most of the functions for the
  427. * tracepoint. Then DEFINE_EVENT() is use to hook a tracepoint to those
  428. * functions. This DEFINE_EVENT() is an instance of the class and can
  429. * be enabled and disabled separately from other events (either TRACE_EVENT
  430. * or other DEFINE_EVENT()s).
  431. *
  432. * Note, TRACE_EVENT() itself is simply defined as:
  433. *
  434. * #define TRACE_EVENT(name, proto, args, tstruct, assign, printk) \
  435. * DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, printk); \
  436. * DEFINE_EVENT(name, name, proto, args)
  437. *
  438. * The DEFINE_EVENT() also can be declared with conditions and reg functions:
  439. *
  440. * DEFINE_EVENT_CONDITION(template, name, proto, args, cond);
  441. * DEFINE_EVENT_FN(template, name, proto, args, reg, unreg);
  442. */
  443. DECLARE_EVENT_CLASS(foo_template,
  444. TP_PROTO(const char *foo, int bar),
  445. TP_ARGS(foo, bar),
  446. TP_STRUCT__entry(
  447. __string( foo, foo )
  448. __field( int, bar )
  449. ),
  450. TP_fast_assign(
  451. __assign_str(foo, foo);
  452. __entry->bar = bar;
  453. ),
  454. TP_printk("foo %s %d", __get_str(foo), __entry->bar)
  455. );
  456. /*
  457. * Here's a better way for the previous samples (except, the first
  458. * example had more fields and could not be used here).
  459. */
  460. DEFINE_EVENT(foo_template, foo_with_template_simple,
  461. TP_PROTO(const char *foo, int bar),
  462. TP_ARGS(foo, bar));
  463. DEFINE_EVENT_CONDITION(foo_template, foo_with_template_cond,
  464. TP_PROTO(const char *foo, int bar),
  465. TP_ARGS(foo, bar),
  466. TP_CONDITION(!(bar % 8)));
  467. DEFINE_EVENT_FN(foo_template, foo_with_template_fn,
  468. TP_PROTO(const char *foo, int bar),
  469. TP_ARGS(foo, bar),
  470. foo_bar_reg, foo_bar_unreg);
  471. /*
  472. * Anytime two events share basically the same values and have
  473. * the same output, use the DECLARE_EVENT_CLASS() and DEFINE_EVENT()
  474. * when ever possible.
  475. */
  476. /*
  477. * If the event is similar to the DECLARE_EVENT_CLASS, but you need
  478. * to have a different output, then use DEFINE_EVENT_PRINT() which
  479. * lets you override the TP_printk() of the class.
  480. */
  481. DEFINE_EVENT_PRINT(foo_template, foo_with_template_print,
  482. TP_PROTO(const char *foo, int bar),
  483. TP_ARGS(foo, bar),
  484. TP_printk("bar %s %d", __get_str(foo), __entry->bar));
  485. /*
  486. * There are yet another __rel_loc dynamic data attribute. If you
  487. * use __rel_dynamic_array() and __rel_string() etc. macros, you
  488. * can use this attribute. There is no difference from the viewpoint
  489. * of functionality with/without 'rel' but the encoding is a bit
  490. * different. This is expected to be used with user-space event,
  491. * there is no reason that the kernel event use this, but only for
  492. * testing.
  493. */
  494. TRACE_EVENT(foo_rel_loc,
  495. TP_PROTO(const char *foo, int bar, unsigned long *mask),
  496. TP_ARGS(foo, bar, mask),
  497. TP_STRUCT__entry(
  498. __rel_string( foo, foo )
  499. __field( int, bar )
  500. __rel_bitmask( bitmask,
  501. BITS_PER_BYTE * sizeof(unsigned long) )
  502. ),
  503. TP_fast_assign(
  504. __assign_rel_str(foo, foo);
  505. __entry->bar = bar;
  506. __assign_rel_bitmask(bitmask, mask,
  507. BITS_PER_BYTE * sizeof(unsigned long));
  508. ),
  509. TP_printk("foo_rel_loc %s, %d, %s", __get_rel_str(foo), __entry->bar,
  510. __get_rel_bitmask(bitmask))
  511. );
  512. #endif
  513. /***** NOTICE! The #if protection ends here. *****/
  514. /*
  515. * There are several ways I could have done this. If I left out the
  516. * TRACE_INCLUDE_PATH, then it would default to the kernel source
  517. * include/trace/events directory.
  518. *
  519. * I could specify a path from the define_trace.h file back to this
  520. * file.
  521. *
  522. * #define TRACE_INCLUDE_PATH ../../samples/trace_events
  523. *
  524. * But the safest and easiest way to simply make it use the directory
  525. * that the file is in is to add in the Makefile:
  526. *
  527. * CFLAGS_trace-events-sample.o := -I$(src)
  528. *
  529. * This will make sure the current path is part of the include
  530. * structure for our file so that define_trace.h can find it.
  531. *
  532. * I could have made only the top level directory the include:
  533. *
  534. * CFLAGS_trace-events-sample.o := -I$(PWD)
  535. *
  536. * And then let the path to this directory be the TRACE_INCLUDE_PATH:
  537. *
  538. * #define TRACE_INCLUDE_PATH samples/trace_events
  539. *
  540. * But then if something defines "samples" or "trace_events" as a macro
  541. * then we could risk that being converted too, and give us an unexpected
  542. * result.
  543. */
  544. #undef TRACE_INCLUDE_PATH
  545. #undef TRACE_INCLUDE_FILE
  546. #define TRACE_INCLUDE_PATH .
  547. /*
  548. * TRACE_INCLUDE_FILE is not needed if the filename and TRACE_SYSTEM are equal
  549. */
  550. #define TRACE_INCLUDE_FILE trace-events-sample
  551. #include <trace/define_trace.h>