blob: 41e46330d9bedfd16d46a920cbd840dad54afffe [file] [log] [blame]
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
Frederic Weisbecker00126932009-03-05 01:49:22 +01004#include <linux/trace_clock.h>
Frederic Weisbecker56010202008-10-02 13:26:05 +02005#include <linux/kallsyms.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +01006#include <linux/linkage.h>
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05007#include <linux/bitops.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +01008#include <linux/module.h>
9#include <linux/ktime.h>
Frederic Weisbecker21a8c462008-12-04 23:51:23 +010010#include <linux/sched.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010011#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/fs.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020014
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +010015#include <asm/ftrace.h>
16
Steven Rostedt606576c2008-10-06 19:06:12 -040017#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnar3e1932a2008-10-02 17:45:47 +020018
Steven Rostedtb0fc4942008-05-12 21:20:43 +020019extern int ftrace_enabled;
20extern int
21ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070022 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +020023 loff_t *ppos);
24
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020025typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
26
27struct ftrace_ops {
28 ftrace_func_t func;
29 struct ftrace_ops *next;
30};
31
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050032extern int function_trace_stop;
33
Frederic Weisbeckere7d37372008-11-16 06:02:06 +010034/*
35 * Type of the current tracing.
36 */
37enum ftrace_tracing_type_t {
38 FTRACE_TYPE_ENTER = 0, /* Hook the call of the function */
39 FTRACE_TYPE_RETURN, /* Hook the return of the function */
40};
41
42/* Current tracing type, default is FTRACE_TYPE_ENTER */
43extern enum ftrace_tracing_type_t ftrace_tracing_type;
44
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050045/**
46 * ftrace_stop - stop function tracer.
47 *
48 * A quick way to stop the function tracer. Note this an on off switch,
49 * it is not something that is recursive like preempt_disable.
50 * This does not disable the calling of mcount, it only stops the
51 * calling of functions from mcount.
52 */
53static inline void ftrace_stop(void)
54{
55 function_trace_stop = 1;
56}
57
58/**
59 * ftrace_start - start the function tracer.
60 *
61 * This function is the inverse of ftrace_stop. This does not enable
62 * the function tracing if the function tracer is disabled. This only
63 * sets the function tracer flag to continue calling the functions
64 * from mcount.
65 */
66static inline void ftrace_start(void)
67{
68 function_trace_stop = 0;
69}
70
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020071/*
72 * The ftrace_ops must be a static and should also
73 * be read_mostly. These functions do modify read_mostly variables
74 * so use them sparely. Never free an ftrace_op or modify the
75 * next pointer after it has been registered. Even after unregistering
76 * it, the next pointer may still be used internally.
77 */
78int register_ftrace_function(struct ftrace_ops *ops);
79int unregister_ftrace_function(struct ftrace_ops *ops);
80void clear_ftrace_function(void);
81
82extern void ftrace_stub(unsigned long a0, unsigned long a1);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020083
Steven Rostedt606576c2008-10-06 19:06:12 -040084#else /* !CONFIG_FUNCTION_TRACER */
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -040085/*
86 * (un)register_ftrace_function must be a macro since the ops parameter
87 * must not be evaluated.
88 */
89#define register_ftrace_function(ops) ({ 0; })
90#define unregister_ftrace_function(ops) ({ 0; })
91static inline void clear_ftrace_function(void) { }
Steven Rostedt81adbdc2008-10-23 09:33:02 -040092static inline void ftrace_kill(void) { }
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050093static inline void ftrace_stop(void) { }
94static inline void ftrace_start(void) { }
Steven Rostedt606576c2008-10-06 19:06:12 -040095#endif /* CONFIG_FUNCTION_TRACER */
Steven Rostedt352ad252008-05-12 21:20:42 +020096
Steven Rostedtf38f1d22008-12-16 23:06:40 -050097#ifdef CONFIG_STACK_TRACER
98extern int stack_tracer_enabled;
99int
100stack_trace_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700101 void __user *buffer, size_t *lenp,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500102 loff_t *ppos);
103#endif
104
Steven Rostedtf6180772009-02-14 00:40:25 -0500105struct ftrace_func_command {
106 struct list_head list;
107 char *name;
108 int (*func)(char *func, char *cmd,
109 char *params, int enable);
110};
111
Steven Rostedt3d083392008-05-12 21:20:42 +0200112#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt31e88902008-11-14 16:21:19 -0800113
Steven Rostedt000ab692009-02-17 13:35:06 -0500114int ftrace_arch_code_modify_prepare(void);
115int ftrace_arch_code_modify_post_process(void);
116
Steven Rostedt809dcf22009-02-16 23:06:01 -0500117struct seq_file;
118
Steven Rostedtb6887d72009-02-17 12:32:04 -0500119struct ftrace_probe_ops {
Steven Rostedt59df055f2009-02-14 15:29:06 -0500120 void (*func)(unsigned long ip,
121 unsigned long parent_ip,
122 void **data);
123 int (*callback)(unsigned long ip, void **data);
124 void (*free)(void **data);
Steven Rostedt809dcf22009-02-16 23:06:01 -0500125 int (*print)(struct seq_file *m,
126 unsigned long ip,
Steven Rostedtb6887d72009-02-17 12:32:04 -0500127 struct ftrace_probe_ops *ops,
Steven Rostedt809dcf22009-02-16 23:06:01 -0500128 void *data);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500129};
130
131extern int
Steven Rostedtb6887d72009-02-17 12:32:04 -0500132register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500133 void *data);
134extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500135unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500136 void *data);
137extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500138unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops);
139extern void unregister_ftrace_function_probe_all(char *glob);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500140
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500141extern int ftrace_text_reserved(void *start, void *end);
142
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200143enum {
Steven Rostedt37ad5082008-05-12 21:20:48 +0200144 FTRACE_FL_FREE = (1 << 0),
145 FTRACE_FL_FAILED = (1 << 1),
146 FTRACE_FL_FILTER = (1 << 2),
147 FTRACE_FL_ENABLED = (1 << 3),
Steven Rostedt41c52c02008-05-22 11:46:33 -0400148 FTRACE_FL_NOTRACE = (1 << 4),
Abhishek Sagar0eb96702008-06-01 21:47:30 +0530149 FTRACE_FL_CONVERTED = (1 << 5),
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200150};
151
Steven Rostedt3d083392008-05-12 21:20:42 +0200152struct dyn_ftrace {
Lai Jiangshanee000b72009-03-24 13:38:06 +0800153 union {
154 unsigned long ip; /* address of mcount call-site */
155 struct dyn_ftrace *freelist;
156 };
157 union {
158 unsigned long flags;
159 struct dyn_ftrace *newlist;
160 };
161 struct dyn_arch_ftrace arch;
Steven Rostedt3d083392008-05-12 21:20:42 +0200162};
163
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200164int ftrace_force_update(void);
Steven Rostedt77a2b372008-05-12 21:20:45 +0200165void ftrace_set_filter(unsigned char *buf, int len, int reset);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200166
Steven Rostedtf6180772009-02-14 00:40:25 -0500167int register_ftrace_command(struct ftrace_func_command *cmd);
168int unregister_ftrace_command(struct ftrace_func_command *cmd);
169
Steven Rostedt3d083392008-05-12 21:20:42 +0200170/* defined in arch */
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200171extern int ftrace_ip_converted(unsigned long ip);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200172extern int ftrace_dyn_arch_init(void *data);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200173extern int ftrace_update_ftrace_func(ftrace_func_t func);
174extern void ftrace_caller(void);
175extern void ftrace_call(void);
176extern void mcount_call(void);
Shaohua Lif0001202009-01-09 11:29:42 +0800177
178#ifndef FTRACE_ADDR
179#define FTRACE_ADDR ((unsigned long)ftrace_caller)
180#endif
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100181#ifdef CONFIG_FUNCTION_GRAPH_TRACER
182extern void ftrace_graph_caller(void);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500183extern int ftrace_enable_ftrace_graph_caller(void);
184extern int ftrace_disable_ftrace_graph_caller(void);
185#else
186static inline int ftrace_enable_ftrace_graph_caller(void) { return 0; }
187static inline int ftrace_disable_ftrace_graph_caller(void) { return 0; }
Frederic Weisbeckere7d37372008-11-16 06:02:06 +0100188#endif
Steven Rostedtad90c0e2008-05-27 20:48:37 -0400189
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400190/**
Wenji Huang57794a92009-02-06 17:33:27 +0800191 * ftrace_make_nop - convert code into nop
Steven Rostedt31e88902008-11-14 16:21:19 -0800192 * @mod: module structure if called by module load initialization
193 * @rec: the mcount call site record
194 * @addr: the address that the call site should be calling
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400195 *
196 * This is a very sensitive operation and great care needs
197 * to be taken by the arch. The operation should carefully
198 * read the location, check to see if what is read is indeed
199 * what we expect it to be, and then on success of the compare,
200 * it should write to the location.
201 *
Steven Rostedt31e88902008-11-14 16:21:19 -0800202 * The code segment at @rec->ip should be a caller to @addr
203 *
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400204 * Return must be:
205 * 0 on success
206 * -EFAULT on error reading the location
207 * -EINVAL on a failed compare of the contents
208 * -EPERM on error writing to the location
209 * Any other value will be considered a failure.
210 */
Steven Rostedt31e88902008-11-14 16:21:19 -0800211extern int ftrace_make_nop(struct module *mod,
212 struct dyn_ftrace *rec, unsigned long addr);
213
214/**
215 * ftrace_make_call - convert a nop call site into a call to addr
216 * @rec: the mcount call site record
217 * @addr: the address that the call site should call
218 *
219 * This is a very sensitive operation and great care needs
220 * to be taken by the arch. The operation should carefully
221 * read the location, check to see if what is read is indeed
222 * what we expect it to be, and then on success of the compare,
223 * it should write to the location.
224 *
225 * The code segment at @rec->ip should be a nop
226 *
227 * Return must be:
228 * 0 on success
229 * -EFAULT on error reading the location
230 * -EINVAL on a failed compare of the contents
231 * -EPERM on error writing to the location
232 * Any other value will be considered a failure.
233 */
234extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
235
Steven Rostedt31e88902008-11-14 16:21:19 -0800236/* May be defined in arch */
237extern int ftrace_arch_read_dyn_info(char *buf, int size);
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400238
Abhishek Sagarecea6562008-06-21 23:47:53 +0530239extern int skip_trace(unsigned long ip);
240
Steven Rostedtc0719e52008-09-06 01:06:03 -0400241extern void ftrace_disable_daemon(void);
242extern void ftrace_enable_daemon(void);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200243#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400244static inline int skip_trace(unsigned long ip) { return 0; }
245static inline int ftrace_force_update(void) { return 0; }
246static inline void ftrace_set_filter(unsigned char *buf, int len, int reset)
247{
248}
249static inline void ftrace_disable_daemon(void) { }
250static inline void ftrace_enable_daemon(void) { }
jolsa@redhat.come7247a12009-10-07 19:00:35 +0200251static inline void ftrace_release_mod(struct module *mod) {}
Steven Rostedtf6180772009-02-14 00:40:25 -0500252static inline int register_ftrace_command(struct ftrace_func_command *cmd)
253{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100254 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500255}
256static inline int unregister_ftrace_command(char *cmd_name)
257{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100258 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500259}
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500260static inline int ftrace_text_reserved(void *start, void *end)
261{
262 return 0;
263}
Abhishek Sagarecea6562008-06-21 23:47:53 +0530264#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt352ad252008-05-12 21:20:42 +0200265
Ingo Molnaraeaee8a2008-05-12 21:20:49 +0200266/* totally disable ftrace - can not re-enable after this */
267void ftrace_kill(void);
268
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200269static inline void tracer_disable(void)
270{
Steven Rostedt606576c2008-10-06 19:06:12 -0400271#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200272 ftrace_enabled = 0;
273#endif
274}
275
Huang Ying37002732008-08-18 16:24:56 +0800276/*
277 * Ftrace disable/restore without lock. Some synchronization mechanism
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700278 * must be used to prevent ftrace_enabled to be changed between
Huang Ying37002732008-08-18 16:24:56 +0800279 * disable/restore.
280 */
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700281static inline int __ftrace_enabled_save(void)
282{
Steven Rostedt606576c2008-10-06 19:06:12 -0400283#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700284 int saved_ftrace_enabled = ftrace_enabled;
285 ftrace_enabled = 0;
286 return saved_ftrace_enabled;
287#else
288 return 0;
289#endif
290}
291
292static inline void __ftrace_enabled_restore(int enabled)
293{
Steven Rostedt606576c2008-10-06 19:06:12 -0400294#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700295 ftrace_enabled = enabled;
296#endif
297}
298
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +0100299#ifndef HAVE_ARCH_CALLER_ADDR
300# ifdef CONFIG_FRAME_POINTER
301# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
302# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
303# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
304# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
305# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
306# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
307# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
308# else
309# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
310# define CALLER_ADDR1 0UL
311# define CALLER_ADDR2 0UL
312# define CALLER_ADDR3 0UL
313# define CALLER_ADDR4 0UL
314# define CALLER_ADDR5 0UL
315# define CALLER_ADDR6 0UL
316# endif
317#endif /* ifndef HAVE_ARCH_CALLER_ADDR */
Steven Rostedt352ad252008-05-12 21:20:42 +0200318
Steven Rostedt81d68a92008-05-12 21:20:42 +0200319#ifdef CONFIG_IRQSOFF_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100320 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
321 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
Steven Rostedt81d68a92008-05-12 21:20:42 +0200322#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400323 static inline void time_hardirqs_on(unsigned long a0, unsigned long a1) { }
324 static inline void time_hardirqs_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt81d68a92008-05-12 21:20:42 +0200325#endif
326
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200327#ifdef CONFIG_PREEMPT_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100328 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
329 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200330#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400331 static inline void trace_preempt_on(unsigned long a0, unsigned long a1) { }
332 static inline void trace_preempt_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200333#endif
334
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400335#ifdef CONFIG_FTRACE_MCOUNT_RECORD
336extern void ftrace_init(void);
337#else
338static inline void ftrace_init(void) { }
339#endif
340
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100341/*
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100342 * Structure that defines an entry function trace.
343 */
344struct ftrace_graph_ent {
345 unsigned long func; /* Current function */
346 int depth;
347};
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400348
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100349/*
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100350 * Structure that defines a return function trace.
351 */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100352struct ftrace_graph_ret {
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100353 unsigned long func; /* Current function */
354 unsigned long long calltime;
355 unsigned long long rettime;
Frederic Weisbecker02310222008-11-17 03:22:41 +0100356 /* Number of functions that overran the depth limit for current task */
357 unsigned long overrun;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100358 int depth;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100359};
360
Jiri Olsa62b915f2010-04-02 19:01:22 +0200361/* Type of the callback handlers for tracing function graph*/
362typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); /* return */
363typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); /* entry */
364
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100365#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100366
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400367/* for init task */
Tetsuo Handaf876d342009-04-08 14:05:43 +0900368#define INIT_FTRACE_GRAPH .ret_stack = NULL,
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400369
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100370/*
Steven Rostedt712406a2009-02-09 10:54:03 -0800371 * Stack of return addresses for functions
372 * of a thread.
373 * Used in struct thread_info
374 */
375struct ftrace_ret_stack {
376 unsigned long ret;
377 unsigned long func;
378 unsigned long long calltime;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400379 unsigned long long subtime;
Steven Rostedt71e308a2009-06-18 12:45:08 -0400380 unsigned long fp;
Steven Rostedt712406a2009-02-09 10:54:03 -0800381};
382
383/*
384 * Primary handler of a function return.
385 * It relays on ftrace_return_to_handler.
386 * Defined in entry_32/64.S
387 */
388extern void return_to_handler(void);
389
390extern int
Steven Rostedt71e308a2009-06-18 12:45:08 -0400391ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
392 unsigned long frame_pointer);
Steven Rostedt712406a2009-02-09 10:54:03 -0800393
394/*
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100395 * Sometimes we don't want to trace a function with the function
396 * graph tracer but we want them to keep traced by the usual function
397 * tracer if the function graph tracer is not configured.
398 */
399#define __notrace_funcgraph notrace
400
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100401/*
402 * We want to which function is an entrypoint of a hardirq.
403 * That will help us to put a signal on output.
404 */
405#define __irq_entry __attribute__((__section__(".irqentry.text")))
406
407/* Limits of hardirq entrypoints */
408extern char __irqentry_text_start[];
409extern char __irqentry_text_end[];
410
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100411#define FTRACE_RETFUNC_DEPTH 50
412#define FTRACE_RETSTACK_ALLOC_SIZE 32
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100413extern int register_ftrace_graph(trace_func_graph_ret_t retfunc,
414 trace_func_graph_ent_t entryfunc);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100415
Steven Rostedt14a866c2008-12-02 23:50:02 -0500416extern void ftrace_graph_stop(void);
417
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100418/* The current handlers in use */
419extern trace_func_graph_ret_t ftrace_graph_return;
420extern trace_func_graph_ent_t ftrace_graph_entry;
421
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100422extern void unregister_ftrace_graph(void);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100423
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100424extern void ftrace_graph_init_task(struct task_struct *t);
425extern void ftrace_graph_exit_task(struct task_struct *t);
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100426
427static inline int task_curr_ret_stack(struct task_struct *t)
428{
429 return t->curr_ret_stack;
430}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100431
432static inline void pause_graph_tracing(void)
433{
434 atomic_inc(&current->tracing_graph_pause);
435}
436
437static inline void unpause_graph_tracing(void)
438{
439 atomic_dec(&current->tracing_graph_pause);
440}
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400441#else /* !CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100442
443#define __notrace_funcgraph
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100444#define __irq_entry
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400445#define INIT_FTRACE_GRAPH
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100446
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100447static inline void ftrace_graph_init_task(struct task_struct *t) { }
448static inline void ftrace_graph_exit_task(struct task_struct *t) { }
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100449
Jiri Olsa62b915f2010-04-02 19:01:22 +0200450static inline int register_ftrace_graph(trace_func_graph_ret_t retfunc,
451 trace_func_graph_ent_t entryfunc)
452{
453 return -1;
454}
455static inline void unregister_ftrace_graph(void) { }
456
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100457static inline int task_curr_ret_stack(struct task_struct *tsk)
458{
459 return -1;
460}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100461
462static inline void pause_graph_tracing(void) { }
463static inline void unpause_graph_tracing(void) { }
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400464#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100465
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500466#ifdef CONFIG_TRACING
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500467
468/* flags for current->trace */
469enum {
470 TSK_TRACE_FL_TRACE_BIT = 0,
471 TSK_TRACE_FL_GRAPH_BIT = 1,
472};
473enum {
474 TSK_TRACE_FL_TRACE = 1 << TSK_TRACE_FL_TRACE_BIT,
475 TSK_TRACE_FL_GRAPH = 1 << TSK_TRACE_FL_GRAPH_BIT,
476};
477
478static inline void set_tsk_trace_trace(struct task_struct *tsk)
479{
480 set_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
481}
482
483static inline void clear_tsk_trace_trace(struct task_struct *tsk)
484{
485 clear_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
486}
487
488static inline int test_tsk_trace_trace(struct task_struct *tsk)
489{
490 return tsk->trace & TSK_TRACE_FL_TRACE;
491}
492
493static inline void set_tsk_trace_graph(struct task_struct *tsk)
494{
495 set_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
496}
497
498static inline void clear_tsk_trace_graph(struct task_struct *tsk)
499{
500 clear_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
501}
502
503static inline int test_tsk_trace_graph(struct task_struct *tsk)
504{
505 return tsk->trace & TSK_TRACE_FL_GRAPH;
506}
507
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200508enum ftrace_dump_mode;
509
510extern enum ftrace_dump_mode ftrace_dump_on_oops;
Ingo Molnar526211b2009-03-05 10:28:45 +0100511
Steven Rostedt261842b2009-04-16 21:41:52 -0400512#ifdef CONFIG_PREEMPT
513#define INIT_TRACE_RECURSION .trace_recursion = 0,
514#endif
515
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500516#endif /* CONFIG_TRACING */
517
Steven Rostedt261842b2009-04-16 21:41:52 -0400518#ifndef INIT_TRACE_RECURSION
519#define INIT_TRACE_RECURSION
520#endif
Markus Metzgerb1818742009-01-19 10:31:01 +0100521
Mike Frysingere7b8e672010-01-26 04:40:03 -0500522#ifdef CONFIG_FTRACE_SYSCALLS
523
524unsigned long arch_syscall_addr(int nr);
525
526#endif /* CONFIG_FTRACE_SYSCALLS */
527
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200528#endif /* _LINUX_FTRACE_H */