]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/trace/define_trace.h
btrfs: Get rid of the confusing btrfs_file_extent_inline_len
[mirror_ubuntu-bionic-kernel.git] / include / trace / define_trace.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
a8d154b0 2/*
4907cb7b 3 * Trace files that want to automate creation of all tracepoints defined
a8d154b0
SR
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)
29
287050d3
SR
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
97419875
JS
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)
43
2701121b
DK
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)
48
ff038f5c
SR
49#undef DEFINE_EVENT
50#define DEFINE_EVENT(template, name, proto, args) \
51 DEFINE_TRACE(name)
52
f5abaa1b
SR
53#undef DEFINE_EVENT_FN
54#define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \
55 DEFINE_TRACE_FN(name, reg, unreg)
56
e5bc9721
SR
57#undef DEFINE_EVENT_PRINT
58#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
59 DEFINE_TRACE(name)
60
287050d3
SR
61#undef DEFINE_EVENT_CONDITION
62#define DEFINE_EVENT_CONDITION(template, name, proto, args, cond) \
63 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
64
a8d154b0
SR
65#undef DECLARE_TRACE
66#define DECLARE_TRACE(name, proto, args) \
67 DEFINE_TRACE(name)
68
69#undef TRACE_INCLUDE
70#undef __TRACE_INCLUDE
71
72#ifndef TRACE_INCLUDE_FILE
73# define TRACE_INCLUDE_FILE TRACE_SYSTEM
74# define UNDEF_TRACE_INCLUDE_FILE
75#endif
76
77#ifndef TRACE_INCLUDE_PATH
ad8d75ff 78# define __TRACE_INCLUDE(system) <trace/events/system.h>
c2518c43 79# define UNDEF_TRACE_INCLUDE_PATH
a8d154b0
SR
80#else
81# define __TRACE_INCLUDE(system) __stringify(TRACE_INCLUDE_PATH/system.h)
82#endif
83
84# define TRACE_INCLUDE(system) __TRACE_INCLUDE(system)
85
86/* Let the trace headers be reread */
87#define TRACE_HEADER_MULTI_READ
88
89#include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
90
2e26ca71
SR
91/* Make all open coded DECLARE_TRACE nops */
92#undef DECLARE_TRACE
93#define DECLARE_TRACE(name, proto, args)
94
c63b7682 95#ifdef TRACEPOINTS_ENABLED
2167ae72 96#include <trace/trace_events.h>
ee53bbd1 97#include <trace/perf.h>
f42c85e7
SR
98#endif
99
5ac35daa 100#undef TRACE_EVENT
6c347d43 101#undef TRACE_EVENT_FN
2701121b 102#undef TRACE_EVENT_FN_COND
287050d3 103#undef TRACE_EVENT_CONDITION
091ad365 104#undef DECLARE_EVENT_CLASS
ff038f5c 105#undef DEFINE_EVENT
f5abaa1b 106#undef DEFINE_EVENT_FN
e5bc9721 107#undef DEFINE_EVENT_PRINT
287050d3 108#undef DEFINE_EVENT_CONDITION
a8d154b0 109#undef TRACE_HEADER_MULTI_READ
2e26ca71 110#undef DECLARE_TRACE
a8d154b0
SR
111
112/* Only undef what we defined in this file */
113#ifdef UNDEF_TRACE_INCLUDE_FILE
c2518c43 114# undef TRACE_INCLUDE_FILE
a8d154b0
SR
115# undef UNDEF_TRACE_INCLUDE_FILE
116#endif
117
c2518c43 118#ifdef UNDEF_TRACE_INCLUDE_PATH
a8d154b0 119# undef TRACE_INCLUDE_PATH
c2518c43 120# undef UNDEF_TRACE_INCLUDE_PATH
a8d154b0
SR
121#endif
122
123/* We may be processing more files */
124#define CREATE_TRACE_POINTS
125
126#endif /* CREATE_TRACE_POINTS */