blob: caba694a62b6d1cd24f5ddb65397b9c1e31b8b80 [file] [log] [blame]
Mike Frysinger9849ed42010-07-20 03:13:35 -04001/*
2 * Ftrace header. For implementation details beyond the random comments
3 * scattered below, see: Documentation/trace/ftrace-design.txt
4 */
5
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02006#ifndef _LINUX_FTRACE_H
7#define _LINUX_FTRACE_H
8
Frederic Weisbecker00126932009-03-05 01:49:22 +01009#include <linux/trace_clock.h>
Frederic Weisbecker56010202008-10-02 13:26:05 +020010#include <linux/kallsyms.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010011#include <linux/linkage.h>
Steven Rostedtea4e2bc2008-12-03 15:36:57 -050012#include <linux/bitops.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010013#include <linux/module.h>
14#include <linux/ktime.h>
Frederic Weisbecker21a8c462008-12-04 23:51:23 +010015#include <linux/sched.h>
Frederic Weisbecker00126932009-03-05 01:49:22 +010016#include <linux/types.h>
17#include <linux/init.h>
18#include <linux/fs.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020019
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +010020#include <asm/ftrace.h>
21
Steven Rostedt606576c2008-10-06 19:06:12 -040022#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnar3e1932a2008-10-02 17:45:47 +020023
Steven Rostedtb0fc4942008-05-12 21:20:43 +020024extern int ftrace_enabled;
25extern int
26ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070027 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +020028 loff_t *ppos);
29
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020030typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
31
Steven Rostedtf45948e2011-05-02 12:29:25 -040032struct ftrace_hash;
33
Steven Rostedtb8489142011-05-04 09:27:52 -040034enum {
35 FTRACE_OPS_FL_ENABLED = 1 << 0,
36 FTRACE_OPS_FL_GLOBAL = 1 << 1,
Steven Rostedtcdbe61b2011-05-05 21:14:55 -040037 FTRACE_OPS_FL_DYNAMIC = 1 << 2,
Steven Rostedtb8489142011-05-04 09:27:52 -040038};
39
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020040struct ftrace_ops {
Steven Rostedtf45948e2011-05-02 12:29:25 -040041 ftrace_func_t func;
42 struct ftrace_ops *next;
Steven Rostedtb8489142011-05-04 09:27:52 -040043 unsigned long flags;
Steven Rostedtf45948e2011-05-02 12:29:25 -040044#ifdef CONFIG_DYNAMIC_FTRACE
45 struct ftrace_hash *notrace_hash;
46 struct ftrace_hash *filter_hash;
47#endif
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020048};
49
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050050extern int function_trace_stop;
51
Frederic Weisbeckere7d37372008-11-16 06:02:06 +010052/*
53 * Type of the current tracing.
54 */
55enum ftrace_tracing_type_t {
56 FTRACE_TYPE_ENTER = 0, /* Hook the call of the function */
57 FTRACE_TYPE_RETURN, /* Hook the return of the function */
58};
59
60/* Current tracing type, default is FTRACE_TYPE_ENTER */
61extern enum ftrace_tracing_type_t ftrace_tracing_type;
62
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050063/**
64 * ftrace_stop - stop function tracer.
65 *
66 * A quick way to stop the function tracer. Note this an on off switch,
67 * it is not something that is recursive like preempt_disable.
68 * This does not disable the calling of mcount, it only stops the
69 * calling of functions from mcount.
70 */
71static inline void ftrace_stop(void)
72{
73 function_trace_stop = 1;
74}
75
76/**
77 * ftrace_start - start the function tracer.
78 *
79 * This function is the inverse of ftrace_stop. This does not enable
80 * the function tracing if the function tracer is disabled. This only
81 * sets the function tracer flag to continue calling the functions
82 * from mcount.
83 */
84static inline void ftrace_start(void)
85{
86 function_trace_stop = 0;
87}
88
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020089/*
90 * The ftrace_ops must be a static and should also
91 * be read_mostly. These functions do modify read_mostly variables
92 * so use them sparely. Never free an ftrace_op or modify the
93 * next pointer after it has been registered. Even after unregistering
94 * it, the next pointer may still be used internally.
95 */
96int register_ftrace_function(struct ftrace_ops *ops);
97int unregister_ftrace_function(struct ftrace_ops *ops);
98void clear_ftrace_function(void);
99
100extern void ftrace_stub(unsigned long a0, unsigned long a1);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200101
Steven Rostedt606576c2008-10-06 19:06:12 -0400102#else /* !CONFIG_FUNCTION_TRACER */
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400103/*
104 * (un)register_ftrace_function must be a macro since the ops parameter
105 * must not be evaluated.
106 */
107#define register_ftrace_function(ops) ({ 0; })
108#define unregister_ftrace_function(ops) ({ 0; })
109static inline void clear_ftrace_function(void) { }
Steven Rostedt81adbdc2008-10-23 09:33:02 -0400110static inline void ftrace_kill(void) { }
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500111static inline void ftrace_stop(void) { }
112static inline void ftrace_start(void) { }
Steven Rostedt606576c2008-10-06 19:06:12 -0400113#endif /* CONFIG_FUNCTION_TRACER */
Steven Rostedt352ad252008-05-12 21:20:42 +0200114
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500115#ifdef CONFIG_STACK_TRACER
116extern int stack_tracer_enabled;
117int
118stack_trace_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700119 void __user *buffer, size_t *lenp,
Steven Rostedtf38f1d22008-12-16 23:06:40 -0500120 loff_t *ppos);
121#endif
122
Steven Rostedtf6180772009-02-14 00:40:25 -0500123struct ftrace_func_command {
124 struct list_head list;
125 char *name;
126 int (*func)(char *func, char *cmd,
127 char *params, int enable);
128};
129
Steven Rostedt3d083392008-05-12 21:20:42 +0200130#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt31e88902008-11-14 16:21:19 -0800131
Steven Rostedt000ab692009-02-17 13:35:06 -0500132int ftrace_arch_code_modify_prepare(void);
133int ftrace_arch_code_modify_post_process(void);
134
Steven Rostedt809dcf22009-02-16 23:06:01 -0500135struct seq_file;
136
Steven Rostedtb6887d72009-02-17 12:32:04 -0500137struct ftrace_probe_ops {
Steven Rostedt59df055f2009-02-14 15:29:06 -0500138 void (*func)(unsigned long ip,
139 unsigned long parent_ip,
140 void **data);
141 int (*callback)(unsigned long ip, void **data);
142 void (*free)(void **data);
Steven Rostedt809dcf22009-02-16 23:06:01 -0500143 int (*print)(struct seq_file *m,
144 unsigned long ip,
Steven Rostedtb6887d72009-02-17 12:32:04 -0500145 struct ftrace_probe_ops *ops,
Steven Rostedt809dcf22009-02-16 23:06:01 -0500146 void *data);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500147};
148
149extern int
Steven Rostedtb6887d72009-02-17 12:32:04 -0500150register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500151 void *data);
152extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500153unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -0500154 void *data);
155extern void
Steven Rostedtb6887d72009-02-17 12:32:04 -0500156unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops);
157extern void unregister_ftrace_function_probe_all(char *glob);
Steven Rostedt59df055f2009-02-14 15:29:06 -0500158
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500159extern int ftrace_text_reserved(void *start, void *end);
160
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200161enum {
Steven Rostedted926f92011-05-03 13:25:24 -0400162 FTRACE_FL_ENABLED = (1 << 30),
163 FTRACE_FL_FREE = (1 << 31),
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200164};
165
Steven Rostedted926f92011-05-03 13:25:24 -0400166#define FTRACE_FL_MASK (0x3UL << 30)
167#define FTRACE_REF_MAX ((1 << 30) - 1)
168
Steven Rostedt3d083392008-05-12 21:20:42 +0200169struct dyn_ftrace {
Lai Jiangshanee000b72009-03-24 13:38:06 +0800170 union {
171 unsigned long ip; /* address of mcount call-site */
172 struct dyn_ftrace *freelist;
173 };
174 union {
175 unsigned long flags;
176 struct dyn_ftrace *newlist;
177 };
178 struct dyn_arch_ftrace arch;
Steven Rostedt3d083392008-05-12 21:20:42 +0200179};
180
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200181int ftrace_force_update(void);
Steven Rostedt77a2b372008-05-12 21:20:45 +0200182void ftrace_set_filter(unsigned char *buf, int len, int reset);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200183
Steven Rostedtf6180772009-02-14 00:40:25 -0500184int register_ftrace_command(struct ftrace_func_command *cmd);
185int unregister_ftrace_command(struct ftrace_func_command *cmd);
186
Steven Rostedt3d083392008-05-12 21:20:42 +0200187/* defined in arch */
Steven Rostedt3c1720f2008-05-12 21:20:43 +0200188extern int ftrace_ip_converted(unsigned long ip);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200189extern int ftrace_dyn_arch_init(void *data);
Steven Rostedtd61f82d2008-05-12 21:20:43 +0200190extern int ftrace_update_ftrace_func(ftrace_func_t func);
191extern void ftrace_caller(void);
192extern void ftrace_call(void);
193extern void mcount_call(void);
Shaohua Lif0001202009-01-09 11:29:42 +0800194
195#ifndef FTRACE_ADDR
196#define FTRACE_ADDR ((unsigned long)ftrace_caller)
197#endif
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100198#ifdef CONFIG_FUNCTION_GRAPH_TRACER
199extern void ftrace_graph_caller(void);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -0500200extern int ftrace_enable_ftrace_graph_caller(void);
201extern int ftrace_disable_ftrace_graph_caller(void);
202#else
203static inline int ftrace_enable_ftrace_graph_caller(void) { return 0; }
204static inline int ftrace_disable_ftrace_graph_caller(void) { return 0; }
Frederic Weisbeckere7d37372008-11-16 06:02:06 +0100205#endif
Steven Rostedtad90c0e2008-05-27 20:48:37 -0400206
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400207/**
Wenji Huang57794a92009-02-06 17:33:27 +0800208 * ftrace_make_nop - convert code into nop
Steven Rostedt31e88902008-11-14 16:21:19 -0800209 * @mod: module structure if called by module load initialization
210 * @rec: the mcount call site record
211 * @addr: the address that the call site should be calling
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400212 *
213 * This is a very sensitive operation and great care needs
214 * to be taken by the arch. The operation should carefully
215 * read the location, check to see if what is read is indeed
216 * what we expect it to be, and then on success of the compare,
217 * it should write to the location.
218 *
Steven Rostedt31e88902008-11-14 16:21:19 -0800219 * The code segment at @rec->ip should be a caller to @addr
220 *
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400221 * Return must be:
222 * 0 on success
223 * -EFAULT on error reading the location
224 * -EINVAL on a failed compare of the contents
225 * -EPERM on error writing to the location
226 * Any other value will be considered a failure.
227 */
Steven Rostedt31e88902008-11-14 16:21:19 -0800228extern int ftrace_make_nop(struct module *mod,
229 struct dyn_ftrace *rec, unsigned long addr);
230
231/**
232 * ftrace_make_call - convert a nop call site into a call to addr
233 * @rec: the mcount call site record
234 * @addr: the address that the call site should call
235 *
236 * This is a very sensitive operation and great care needs
237 * to be taken by the arch. The operation should carefully
238 * read the location, check to see if what is read is indeed
239 * what we expect it to be, and then on success of the compare,
240 * it should write to the location.
241 *
242 * The code segment at @rec->ip should be a nop
243 *
244 * Return must be:
245 * 0 on success
246 * -EFAULT on error reading the location
247 * -EINVAL on a failed compare of the contents
248 * -EPERM on error writing to the location
249 * Any other value will be considered a failure.
250 */
251extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr);
252
Steven Rostedt31e88902008-11-14 16:21:19 -0800253/* May be defined in arch */
254extern int ftrace_arch_read_dyn_info(char *buf, int size);
Steven Rostedt593eb8a2008-10-23 09:32:59 -0400255
Abhishek Sagarecea6562008-06-21 23:47:53 +0530256extern int skip_trace(unsigned long ip);
257
Steven Rostedtc0719e52008-09-06 01:06:03 -0400258extern void ftrace_disable_daemon(void);
259extern void ftrace_enable_daemon(void);
Steven Rostedte1c08bd2008-05-12 21:20:44 +0200260#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400261static inline int skip_trace(unsigned long ip) { return 0; }
262static inline int ftrace_force_update(void) { return 0; }
263static inline void ftrace_set_filter(unsigned char *buf, int len, int reset)
264{
265}
266static inline void ftrace_disable_daemon(void) { }
267static inline void ftrace_enable_daemon(void) { }
jolsa@redhat.come7247a12009-10-07 19:00:35 +0200268static inline void ftrace_release_mod(struct module *mod) {}
Steven Rostedtf6180772009-02-14 00:40:25 -0500269static inline int register_ftrace_command(struct ftrace_func_command *cmd)
270{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100271 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500272}
273static inline int unregister_ftrace_command(char *cmd_name)
274{
Ingo Molnar97d0bb82009-02-17 11:47:39 +0100275 return -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -0500276}
Masami Hiramatsu2cfa1972010-02-02 16:49:11 -0500277static inline int ftrace_text_reserved(void *start, void *end)
278{
279 return 0;
280}
Abhishek Sagarecea6562008-06-21 23:47:53 +0530281#endif /* CONFIG_DYNAMIC_FTRACE */
Steven Rostedt352ad252008-05-12 21:20:42 +0200282
Ingo Molnaraeaee8a2008-05-12 21:20:49 +0200283/* totally disable ftrace - can not re-enable after this */
284void ftrace_kill(void);
285
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200286static inline void tracer_disable(void)
287{
Steven Rostedt606576c2008-10-06 19:06:12 -0400288#ifdef CONFIG_FUNCTION_TRACER
Ingo Molnarf43fdad2008-05-12 21:20:43 +0200289 ftrace_enabled = 0;
290#endif
291}
292
Huang Ying37002732008-08-18 16:24:56 +0800293/*
294 * Ftrace disable/restore without lock. Some synchronization mechanism
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700295 * must be used to prevent ftrace_enabled to be changed between
Huang Ying37002732008-08-18 16:24:56 +0800296 * disable/restore.
297 */
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700298static inline int __ftrace_enabled_save(void)
299{
Steven Rostedt606576c2008-10-06 19:06:12 -0400300#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700301 int saved_ftrace_enabled = ftrace_enabled;
302 ftrace_enabled = 0;
303 return saved_ftrace_enabled;
304#else
305 return 0;
306#endif
307}
308
309static inline void __ftrace_enabled_restore(int enabled)
310{
Steven Rostedt606576c2008-10-06 19:06:12 -0400311#ifdef CONFIG_FUNCTION_TRACER
Huang Ying9bdeb7b2008-08-15 00:40:25 -0700312 ftrace_enabled = enabled;
313#endif
314}
315
Uwe Kleine-Koenigc79a61f2009-02-27 21:30:03 +0100316#ifndef HAVE_ARCH_CALLER_ADDR
317# ifdef CONFIG_FRAME_POINTER
318# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
319# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
320# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
321# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
322# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
323# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
324# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
325# else
326# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
327# define CALLER_ADDR1 0UL
328# define CALLER_ADDR2 0UL
329# define CALLER_ADDR3 0UL
330# define CALLER_ADDR4 0UL
331# define CALLER_ADDR5 0UL
332# define CALLER_ADDR6 0UL
333# endif
334#endif /* ifndef HAVE_ARCH_CALLER_ADDR */
Steven Rostedt352ad252008-05-12 21:20:42 +0200335
Steven Rostedt81d68a92008-05-12 21:20:42 +0200336#ifdef CONFIG_IRQSOFF_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100337 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
338 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
Steven Rostedt81d68a92008-05-12 21:20:42 +0200339#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400340 static inline void time_hardirqs_on(unsigned long a0, unsigned long a1) { }
341 static inline void time_hardirqs_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt81d68a92008-05-12 21:20:42 +0200342#endif
343
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200344#ifdef CONFIG_PREEMPT_TRACER
Ingo Molnar489f1392008-02-25 13:38:05 +0100345 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
346 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200347#else
Steven Rostedt4dbf6bc2010-05-04 11:24:01 -0400348 static inline void trace_preempt_on(unsigned long a0, unsigned long a1) { }
349 static inline void trace_preempt_off(unsigned long a0, unsigned long a1) { }
Steven Rostedt6cd8a4b2008-05-12 21:20:42 +0200350#endif
351
Steven Rostedt68bf21a2008-08-14 15:45:08 -0400352#ifdef CONFIG_FTRACE_MCOUNT_RECORD
353extern void ftrace_init(void);
354#else
355static inline void ftrace_init(void) { }
356#endif
357
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100358/*
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100359 * Structure that defines an entry function trace.
360 */
361struct ftrace_graph_ent {
362 unsigned long func; /* Current function */
363 int depth;
364};
Steven Rostedtdd0e5452008-08-01 12:26:41 -0400365
Frederic Weisbecker71566a02008-10-31 12:57:20 +0100366/*
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100367 * Structure that defines a return function trace.
368 */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100369struct ftrace_graph_ret {
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100370 unsigned long func; /* Current function */
371 unsigned long long calltime;
372 unsigned long long rettime;
Frederic Weisbecker02310222008-11-17 03:22:41 +0100373 /* Number of functions that overran the depth limit for current task */
374 unsigned long overrun;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100375 int depth;
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100376};
377
Jiri Olsa62b915f2010-04-02 19:01:22 +0200378/* Type of the callback handlers for tracing function graph*/
379typedef void (*trace_func_graph_ret_t)(struct ftrace_graph_ret *); /* return */
380typedef int (*trace_func_graph_ent_t)(struct ftrace_graph_ent *); /* entry */
381
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100382#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100383
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400384/* for init task */
Tetsuo Handaf876d342009-04-08 14:05:43 +0900385#define INIT_FTRACE_GRAPH .ret_stack = NULL,
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400386
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100387/*
Steven Rostedt712406a2009-02-09 10:54:03 -0800388 * Stack of return addresses for functions
389 * of a thread.
390 * Used in struct thread_info
391 */
392struct ftrace_ret_stack {
393 unsigned long ret;
394 unsigned long func;
395 unsigned long long calltime;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400396 unsigned long long subtime;
Steven Rostedt71e308a2009-06-18 12:45:08 -0400397 unsigned long fp;
Steven Rostedt712406a2009-02-09 10:54:03 -0800398};
399
400/*
401 * Primary handler of a function return.
402 * It relays on ftrace_return_to_handler.
403 * Defined in entry_32/64.S
404 */
405extern void return_to_handler(void);
406
407extern int
Steven Rostedt71e308a2009-06-18 12:45:08 -0400408ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth,
409 unsigned long frame_pointer);
Steven Rostedt712406a2009-02-09 10:54:03 -0800410
411/*
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100412 * Sometimes we don't want to trace a function with the function
413 * graph tracer but we want them to keep traced by the usual function
414 * tracer if the function graph tracer is not configured.
415 */
416#define __notrace_funcgraph notrace
417
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100418/*
419 * We want to which function is an entrypoint of a hardirq.
420 * That will help us to put a signal on output.
421 */
422#define __irq_entry __attribute__((__section__(".irqentry.text")))
423
424/* Limits of hardirq entrypoints */
425extern char __irqentry_text_start[];
426extern char __irqentry_text_end[];
427
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100428#define FTRACE_RETFUNC_DEPTH 50
429#define FTRACE_RETSTACK_ALLOC_SIZE 32
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100430extern int register_ftrace_graph(trace_func_graph_ret_t retfunc,
431 trace_func_graph_ent_t entryfunc);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100432
Steven Rostedt14a866c2008-12-02 23:50:02 -0500433extern void ftrace_graph_stop(void);
434
Frederic Weisbecker287b6e62008-11-26 00:57:25 +0100435/* The current handlers in use */
436extern trace_func_graph_ret_t ftrace_graph_return;
437extern trace_func_graph_ent_t ftrace_graph_entry;
438
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100439extern void unregister_ftrace_graph(void);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +0100440
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100441extern void ftrace_graph_init_task(struct task_struct *t);
442extern void ftrace_graph_exit_task(struct task_struct *t);
Steven Rostedt868baf02011-02-10 21:26:13 -0500443extern void ftrace_graph_init_idle_task(struct task_struct *t, int cpu);
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100444
445static inline int task_curr_ret_stack(struct task_struct *t)
446{
447 return t->curr_ret_stack;
448}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100449
450static inline void pause_graph_tracing(void)
451{
452 atomic_inc(&current->tracing_graph_pause);
453}
454
455static inline void unpause_graph_tracing(void)
456{
457 atomic_dec(&current->tracing_graph_pause);
458}
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400459#else /* !CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100460
461#define __notrace_funcgraph
Frederic Weisbeckerbcbc4f22008-12-09 23:54:20 +0100462#define __irq_entry
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400463#define INIT_FTRACE_GRAPH
Frederic Weisbecker8b96f012008-12-06 03:40:00 +0100464
Frederic Weisbeckerfb526072008-11-25 21:07:04 +0100465static inline void ftrace_graph_init_task(struct task_struct *t) { }
466static inline void ftrace_graph_exit_task(struct task_struct *t) { }
Steven Rostedt868baf02011-02-10 21:26:13 -0500467static inline void ftrace_graph_init_idle_task(struct task_struct *t, int cpu) { }
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100468
Jiri Olsa62b915f2010-04-02 19:01:22 +0200469static inline int register_ftrace_graph(trace_func_graph_ret_t retfunc,
470 trace_func_graph_ent_t entryfunc)
471{
472 return -1;
473}
474static inline void unregister_ftrace_graph(void) { }
475
Frederic Weisbecker21a8c462008-12-04 23:51:23 +0100476static inline int task_curr_ret_stack(struct task_struct *tsk)
477{
478 return -1;
479}
Frederic Weisbecker380c4b12008-12-06 03:43:41 +0100480
481static inline void pause_graph_tracing(void) { }
482static inline void unpause_graph_tracing(void) { }
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400483#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Frederic Weisbeckercaf4b322008-11-11 07:03:45 +0100484
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500485#ifdef CONFIG_TRACING
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500486
487/* flags for current->trace */
488enum {
489 TSK_TRACE_FL_TRACE_BIT = 0,
490 TSK_TRACE_FL_GRAPH_BIT = 1,
491};
492enum {
493 TSK_TRACE_FL_TRACE = 1 << TSK_TRACE_FL_TRACE_BIT,
494 TSK_TRACE_FL_GRAPH = 1 << TSK_TRACE_FL_GRAPH_BIT,
495};
496
497static inline void set_tsk_trace_trace(struct task_struct *tsk)
498{
499 set_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
500}
501
502static inline void clear_tsk_trace_trace(struct task_struct *tsk)
503{
504 clear_bit(TSK_TRACE_FL_TRACE_BIT, &tsk->trace);
505}
506
507static inline int test_tsk_trace_trace(struct task_struct *tsk)
508{
509 return tsk->trace & TSK_TRACE_FL_TRACE;
510}
511
512static inline void set_tsk_trace_graph(struct task_struct *tsk)
513{
514 set_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
515}
516
517static inline void clear_tsk_trace_graph(struct task_struct *tsk)
518{
519 clear_bit(TSK_TRACE_FL_GRAPH_BIT, &tsk->trace);
520}
521
522static inline int test_tsk_trace_graph(struct task_struct *tsk)
523{
524 return tsk->trace & TSK_TRACE_FL_GRAPH;
525}
526
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200527enum ftrace_dump_mode;
528
529extern enum ftrace_dump_mode ftrace_dump_on_oops;
Ingo Molnar526211b2009-03-05 10:28:45 +0100530
Steven Rostedt261842b2009-04-16 21:41:52 -0400531#ifdef CONFIG_PREEMPT
532#define INIT_TRACE_RECURSION .trace_recursion = 0,
533#endif
534
Steven Rostedtea4e2bc2008-12-03 15:36:57 -0500535#endif /* CONFIG_TRACING */
536
Steven Rostedt261842b2009-04-16 21:41:52 -0400537#ifndef INIT_TRACE_RECURSION
538#define INIT_TRACE_RECURSION
539#endif
Markus Metzgerb1818742009-01-19 10:31:01 +0100540
Mike Frysingere7b8e672010-01-26 04:40:03 -0500541#ifdef CONFIG_FTRACE_SYSCALLS
542
543unsigned long arch_syscall_addr(int nr);
544
545#endif /* CONFIG_FTRACE_SYSCALLS */
546
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200547#endif /* _LINUX_FTRACE_H */