blob: b0408356f0e07e2e8e609f8802e7defb85a32995 [file] [log] [blame]
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001#ifndef _LINUX_KERNEL_TRACE_H
2#define _LINUX_KERNEL_TRACE_H
3
4#include <linux/fs.h>
5#include <asm/atomic.h>
6#include <linux/sched.h>
7#include <linux/clocksource.h>
8
9/*
10 * Function trace entry - function address and parent function addres:
11 */
12struct ftrace_entry {
13 unsigned long ip;
14 unsigned long parent_ip;
15};
16
17/*
18 * Context switch trace entry - which task (and prio) we switched from/to:
19 */
20struct ctx_switch_entry {
21 unsigned int prev_pid;
22 unsigned char prev_prio;
23 unsigned char prev_state;
24 unsigned int next_pid;
25 unsigned char next_prio;
26};
27
28/*
29 * The trace entry - the most basic unit of tracing. This is what
30 * is printed in the end as a single line in the trace output, such as:
31 *
32 * bash-15816 [01] 235.197585: idle_cpu <- irq_enter
33 */
34struct trace_entry {
35 char type;
36 char cpu;
37 char flags;
38 char preempt_count;
39 int pid;
40 cycle_t t;
41 unsigned long idx;
42 union {
43 struct ftrace_entry fn;
44 struct ctx_switch_entry ctx;
45 };
46};
47
48#define TRACE_ENTRY_SIZE sizeof(struct trace_entry)
49
50/*
51 * The CPU trace array - it consists of thousands of trace entries
52 * plus some other descriptor data: (for example which task started
53 * the trace, etc.)
54 */
55struct trace_array_cpu {
Steven Rostedt4c11d7a2008-05-12 21:20:43 +020056 struct list_head trace_pages;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020057 atomic_t disabled;
Steven Rostedtb3806b42008-05-12 21:20:46 +020058 spinlock_t lock;
Ingo Molnard4c5a2f2008-05-12 21:20:46 +020059 struct lock_class_key lock_key;
Ingo Molnar4e3c3332008-05-12 21:20:45 +020060 cycle_t time_offset;
61
Ingo Molnarc7aafc52008-05-12 21:20:45 +020062 /* these fields get copied into max-trace: */
Steven Rostedt93a588f2008-05-12 21:20:45 +020063 unsigned trace_head_idx;
64 unsigned trace_tail_idx;
65 void *trace_head; /* producer */
66 void *trace_tail; /* consumer */
Ingo Molnarc7aafc52008-05-12 21:20:45 +020067 unsigned long trace_idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020068 unsigned long saved_latency;
69 unsigned long critical_start;
70 unsigned long critical_end;
71 unsigned long critical_sequence;
72 unsigned long nice;
73 unsigned long policy;
74 unsigned long rt_priority;
75 cycle_t preempt_timestamp;
76 pid_t pid;
77 uid_t uid;
78 char comm[TASK_COMM_LEN];
79};
80
81struct trace_iterator;
82
83/*
84 * The trace array - an array of per-CPU trace arrays. This is the
85 * highest level data structure that individual tracers deal with.
86 * They have on/off state as well:
87 */
88struct trace_array {
89 unsigned long entries;
90 long ctrl;
91 int cpu;
92 cycle_t time_start;
Steven Rostedtb3806b42008-05-12 21:20:46 +020093 struct task_struct *waiter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020094 struct trace_array_cpu *data[NR_CPUS];
95};
96
97/*
98 * A specific tracer, represented by methods that operate on a trace array:
99 */
100struct tracer {
101 const char *name;
102 void (*init)(struct trace_array *tr);
103 void (*reset)(struct trace_array *tr);
104 void (*open)(struct trace_iterator *iter);
105 void (*close)(struct trace_iterator *iter);
106 void (*start)(struct trace_iterator *iter);
107 void (*stop)(struct trace_iterator *iter);
108 void (*ctrl_update)(struct trace_array *tr);
Steven Rostedt60a11772008-05-12 21:20:44 +0200109#ifdef CONFIG_FTRACE_STARTUP_TEST
110 int (*selftest)(struct tracer *trace,
111 struct trace_array *tr);
112#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200113 struct tracer *next;
114 int print_max;
115};
116
Steven Rostedt214023c2008-05-12 21:20:46 +0200117struct trace_seq {
118 unsigned char buffer[PAGE_SIZE];
119 unsigned int len;
120};
121
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200122/*
123 * Trace iterator - used by printout routines who present trace
124 * results to users and which routines might sleep, etc:
125 */
126struct trace_iterator {
Steven Rostedt214023c2008-05-12 21:20:46 +0200127 struct trace_seq seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200128 struct trace_array *tr;
129 struct tracer *trace;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200130
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200131 struct trace_entry *ent;
Ingo Molnar4e3c3332008-05-12 21:20:45 +0200132 int cpu;
133
134 struct trace_entry *prev_ent;
135 int prev_cpu;
136
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200137 unsigned long iter_flags;
138 loff_t pos;
139 unsigned long next_idx[NR_CPUS];
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200140 struct list_head *next_page[NR_CPUS];
141 unsigned next_page_idx[NR_CPUS];
142 long idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200143};
144
145void notrace tracing_reset(struct trace_array_cpu *data);
146int tracing_open_generic(struct inode *inode, struct file *filp);
147struct dentry *tracing_init_dentry(void);
148void ftrace(struct trace_array *tr,
149 struct trace_array_cpu *data,
150 unsigned long ip,
151 unsigned long parent_ip,
152 unsigned long flags);
153void tracing_sched_switch_trace(struct trace_array *tr,
154 struct trace_array_cpu *data,
155 struct task_struct *prev,
156 struct task_struct *next,
157 unsigned long flags);
158void tracing_record_cmdline(struct task_struct *tsk);
159
160void tracing_start_function_trace(void);
161void tracing_stop_function_trace(void);
162int register_tracer(struct tracer *type);
163void unregister_tracer(struct tracer *type);
164
165extern unsigned long nsecs_to_usecs(unsigned long nsecs);
166
167extern unsigned long tracing_max_latency;
168extern unsigned long tracing_thresh;
169
170void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu);
171void update_max_tr_single(struct trace_array *tr,
172 struct task_struct *tsk, int cpu);
173
174static inline notrace cycle_t now(int cpu)
175{
176 return cpu_clock(cpu);
177}
178
179#ifdef CONFIG_SCHED_TRACER
180extern void notrace
181wakeup_sched_switch(struct task_struct *prev, struct task_struct *next);
182#else
183static inline void
184wakeup_sched_switch(struct task_struct *prev, struct task_struct *next)
185{
186}
187#endif
188
189#ifdef CONFIG_CONTEXT_SWITCH_TRACER
190typedef void
191(*tracer_switch_func_t)(void *private,
192 struct task_struct *prev,
193 struct task_struct *next);
194
195struct tracer_switch_ops {
196 tracer_switch_func_t func;
197 void *private;
198 struct tracer_switch_ops *next;
199};
200
201extern int register_tracer_switch(struct tracer_switch_ops *ops);
202extern int unregister_tracer_switch(struct tracer_switch_ops *ops);
203
204#endif /* CONFIG_CONTEXT_SWITCH_TRACER */
205
206#ifdef CONFIG_DYNAMIC_FTRACE
207extern unsigned long ftrace_update_tot_cnt;
208#endif
209
Steven Rostedt60a11772008-05-12 21:20:44 +0200210#ifdef CONFIG_FTRACE_STARTUP_TEST
211#ifdef CONFIG_FTRACE
212extern int trace_selftest_startup_function(struct tracer *trace,
213 struct trace_array *tr);
214#endif
215#ifdef CONFIG_IRQSOFF_TRACER
216extern int trace_selftest_startup_irqsoff(struct tracer *trace,
217 struct trace_array *tr);
218#endif
219#ifdef CONFIG_PREEMPT_TRACER
220extern int trace_selftest_startup_preemptoff(struct tracer *trace,
221 struct trace_array *tr);
222#endif
223#if defined(CONFIG_IRQSOFF_TRACER) && defined(CONFIG_PREEMPT_TRACER)
224extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace,
225 struct trace_array *tr);
226#endif
227#ifdef CONFIG_SCHED_TRACER
228extern int trace_selftest_startup_wakeup(struct tracer *trace,
229 struct trace_array *tr);
230#endif
231#ifdef CONFIG_CONTEXT_SWITCH_TRACER
232extern int trace_selftest_startup_sched_switch(struct tracer *trace,
233 struct trace_array *tr);
234#endif
235#endif /* CONFIG_FTRACE_STARTUP_TEST */
236
Ingo Molnarc7aafc52008-05-12 21:20:45 +0200237extern void *head_page(struct trace_array_cpu *data);
238
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200239#endif /* _LINUX_KERNEL_TRACE_H */