tracing: move tgid out of generic entry and into userstack
[deliverable/linux.git] / include / linux / ftrace_event.h
CommitLineData
97f20251
SR
1#ifndef _LINUX_FTRACE_EVENT_H
2#define _LINUX_FTRACE_EVENT_H
3
4#include <linux/trace_seq.h>
5#include <linux/ring_buffer.h>
be74b73a 6#include <linux/percpu.h>
97f20251
SR
7
8struct trace_array;
9struct tracer;
6d723736 10struct dentry;
97f20251 11
be74b73a
SR
12DECLARE_PER_CPU(struct trace_seq, ftrace_event_seq);
13
14struct trace_print_flags {
15 unsigned long mask;
16 const char *name;
17};
18
19const char *ftrace_print_flags_seq(struct trace_seq *p, const char *delim,
20 unsigned long flags,
21 const struct trace_print_flags *flag_array);
22
0f4fc29d
SR
23const char *ftrace_print_symbols_seq(struct trace_seq *p, unsigned long val,
24 const struct trace_print_flags *symbol_array);
25
97f20251
SR
26/*
27 * The trace entry - the most basic unit of tracing. This is what
28 * is printed in the end as a single line in the trace output, such as:
29 *
30 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
31 */
32struct trace_entry {
89ec0dee 33 unsigned short type;
97f20251
SR
34 unsigned char flags;
35 unsigned char preempt_count;
36 int pid;
97f20251
SR
37};
38
89ec0dee
SR
39#define FTRACE_MAX_EVENT \
40 ((1 << (sizeof(((struct trace_entry *)0)->type) * 8)) - 1)
41
97f20251
SR
42/*
43 * Trace iterator - used by printout routines who present trace
44 * results to users and which routines might sleep, etc:
45 */
46struct trace_iterator {
47 struct trace_array *tr;
48 struct tracer *trace;
49 void *private;
50 int cpu_file;
51 struct mutex mutex;
52 struct ring_buffer_iter *buffer_iter[NR_CPUS];
112f38a7 53 unsigned long iter_flags;
97f20251
SR
54
55 /* The below is zeroed out in pipe_read */
56 struct trace_seq seq;
57 struct trace_entry *ent;
58 int cpu;
59 u64 ts;
60
97f20251
SR
61 loff_t pos;
62 long idx;
63
64 cpumask_var_t started;
65};
66
67
68typedef enum print_line_t (*trace_print_func)(struct trace_iterator *iter,
69 int flags);
70struct trace_event {
71 struct hlist_node node;
060fa5c8 72 struct list_head list;
97f20251
SR
73 int type;
74 trace_print_func trace;
75 trace_print_func raw;
76 trace_print_func hex;
77 trace_print_func binary;
78};
79
80extern int register_ftrace_event(struct trace_event *event);
81extern int unregister_ftrace_event(struct trace_event *event);
82
83/* Return values for print_line callback */
84enum print_line_t {
85 TRACE_TYPE_PARTIAL_LINE = 0, /* Retry after flushing the seq */
86 TRACE_TYPE_HANDLED = 1,
87 TRACE_TYPE_UNHANDLED = 2, /* Relay to other output functions */
88 TRACE_TYPE_NO_CONSUME = 3 /* Handled but ask to not consume */
89};
90
f413cdb8
FW
91void tracing_generic_entry_update(struct trace_entry *entry,
92 unsigned long flags,
93 int pc);
97f20251 94struct ring_buffer_event *
e77405ad
SR
95trace_current_buffer_lock_reserve(struct ring_buffer **current_buffer,
96 int type, unsigned long len,
97f20251 97 unsigned long flags, int pc);
e77405ad
SR
98void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
99 struct ring_buffer_event *event,
97f20251 100 unsigned long flags, int pc);
e77405ad
SR
101void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
102 struct ring_buffer_event *event,
97f20251 103 unsigned long flags, int pc);
e77405ad
SR
104void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
105 struct ring_buffer_event *event);
97f20251
SR
106
107void tracing_record_cmdline(struct task_struct *tsk);
108
1f9963cb
LZ
109struct event_filter;
110
97f20251 111struct ftrace_event_call {
a59fd602 112 struct list_head list;
97f20251
SR
113 char *name;
114 char *system;
115 struct dentry *dir;
6d723736 116 struct trace_event *event;
97f20251 117 int enabled;
69fd4f0e
JB
118 int (*regfunc)(void *);
119 void (*unregfunc)(void *);
97f20251
SR
120 int id;
121 int (*raw_init)(void);
e8f9f4d7
FW
122 int (*show_format)(struct ftrace_event_call *call,
123 struct trace_seq *s);
14be96c9 124 int (*define_fields)(struct ftrace_event_call *);
97f20251 125 struct list_head fields;
30e673b2 126 int filter_active;
1f9963cb 127 struct event_filter *filter;
6d723736 128 void *mod;
69fd4f0e 129 void *data;
97f20251 130
af6af30c
PZ
131 atomic_t profile_count;
132 int (*profile_enable)(struct ftrace_event_call *);
133 void (*profile_disable)(struct ftrace_event_call *);
97f20251
SR
134};
135
8b372562 136#define MAX_FILTER_PRED 32
97f20251
SR
137#define MAX_FILTER_STR_VAL 128
138
2df75e41 139extern void destroy_preds(struct ftrace_event_call *call);
97f20251 140extern int filter_match_preds(struct ftrace_event_call *call, void *rec);
e77405ad
SR
141extern int filter_current_check_discard(struct ring_buffer *buffer,
142 struct ftrace_event_call *call,
97f20251
SR
143 void *rec,
144 struct ring_buffer_event *event);
145
43b51ead
LZ
146enum {
147 FILTER_OTHER = 0,
148 FILTER_STATIC_STRING,
149 FILTER_DYN_STRING,
87a342f5 150 FILTER_PTR_STRING,
43b51ead
LZ
151};
152
540b7b8d
LZ
153extern int trace_define_field(struct ftrace_event_call *call,
154 const char *type, const char *name,
43b51ead
LZ
155 int offset, int size, int is_signed,
156 int filter_type);
e647d6b3 157extern int trace_define_common_fields(struct ftrace_event_call *call);
97f20251 158
a118e4d1 159#define is_signed_type(type) (((type)(-1)) < 0)
97f20251 160
4671c794
SR
161int trace_set_clr_event(const char *system, const char *event, int set);
162
97f20251
SR
163/*
164 * The double __builtin_constant_p is because gcc will give us an error
165 * if we try to allocate the static variable to fmt if it is not a
166 * constant. Even with the outer if statement optimizing out.
167 */
168#define event_trace_printk(ip, fmt, args...) \
169do { \
170 __trace_printk_check_format(fmt, ##args); \
171 tracing_record_cmdline(current); \
172 if (__builtin_constant_p(fmt)) { \
173 static const char *trace_printk_fmt \
174 __attribute__((section("__trace_printk_fmt"))) = \
175 __builtin_constant_p(fmt) ? fmt : NULL; \
176 \
177 __trace_bprintk(ip, trace_printk_fmt, ##args); \
178 } else \
179 __trace_printk(ip, fmt, ##args); \
180} while (0)
181
97f20251 182#endif /* _LINUX_FTRACE_EVENT_H */
This page took 0.061778 seconds and 5 git commands to generate.