ftrace: distinguish kretprobe'd functions in trace logs
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / ftrace.h
CommitLineData
16444a8a
ACM
1#ifndef _LINUX_FTRACE_H
2#define _LINUX_FTRACE_H
3
4#ifdef CONFIG_FTRACE
5
6#include <linux/linkage.h>
d49dbf33 7#include <linux/fs.h>
16444a8a 8
b0fc494f
SR
9extern int ftrace_enabled;
10extern int
11ftrace_enable_sysctl(struct ctl_table *table, int write,
12 struct file *filp, void __user *buffer, size_t *lenp,
13 loff_t *ppos);
14
16444a8a
ACM
15typedef void (*ftrace_func_t)(unsigned long ip, unsigned long parent_ip);
16
17struct ftrace_ops {
18 ftrace_func_t func;
19 struct ftrace_ops *next;
20};
21
22/*
23 * The ftrace_ops must be a static and should also
24 * be read_mostly. These functions do modify read_mostly variables
25 * so use them sparely. Never free an ftrace_op or modify the
26 * next pointer after it has been registered. Even after unregistering
27 * it, the next pointer may still be used internally.
28 */
29int register_ftrace_function(struct ftrace_ops *ops);
30int unregister_ftrace_function(struct ftrace_ops *ops);
31void clear_ftrace_function(void);
32
33extern void ftrace_stub(unsigned long a0, unsigned long a1);
34extern void mcount(void);
35
36#else /* !CONFIG_FTRACE */
37# define register_ftrace_function(ops) do { } while (0)
38# define unregister_ftrace_function(ops) do { } while (0)
39# define clear_ftrace_function(ops) do { } while (0)
40#endif /* CONFIG_FTRACE */
352ad25a 41
3d083395
SR
42#ifdef CONFIG_DYNAMIC_FTRACE
43# define FTRACE_HASHBITS 10
44# define FTRACE_HASHSIZE (1<<FTRACE_HASHBITS)
45
3c1720f0 46enum {
37ad5084
SR
47 FTRACE_FL_FREE = (1 << 0),
48 FTRACE_FL_FAILED = (1 << 1),
49 FTRACE_FL_FILTER = (1 << 2),
50 FTRACE_FL_ENABLED = (1 << 3),
41c52c0d 51 FTRACE_FL_NOTRACE = (1 << 4),
3c1720f0
SR
52};
53
3d083395
SR
54struct dyn_ftrace {
55 struct hlist_node node;
56 unsigned long ip;
3c1720f0 57 unsigned long flags;
3d083395
SR
58};
59
e1c08bdd 60int ftrace_force_update(void);
77a2b37d 61void ftrace_set_filter(unsigned char *buf, int len, int reset);
e1c08bdd 62
3d083395 63/* defined in arch */
3c1720f0
SR
64extern int ftrace_ip_converted(unsigned long ip);
65extern unsigned char *ftrace_nop_replace(void);
66extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
d61f82d0
SR
67extern int ftrace_dyn_arch_init(void *data);
68extern int ftrace_mcount_set(unsigned long *data);
3c1720f0
SR
69extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
70 unsigned char *new_code);
d61f82d0
SR
71extern int ftrace_update_ftrace_func(ftrace_func_t func);
72extern void ftrace_caller(void);
73extern void ftrace_call(void);
74extern void mcount_call(void);
e1c08bdd 75#else
aeaee8a2
IM
76# define ftrace_force_update() ({ 0; })
77# define ftrace_set_filter(buf, len, reset) do { } while (0)
3d083395 78#endif
352ad25a 79
aeaee8a2
IM
80/* totally disable ftrace - can not re-enable after this */
81void ftrace_kill(void);
82
f43fdad8
IM
83static inline void tracer_disable(void)
84{
85#ifdef CONFIG_FTRACE
86 ftrace_enabled = 0;
87#endif
88}
89
352ad25a
SR
90#ifdef CONFIG_FRAME_POINTER
91/* TODO: need to fix this for ARM */
92# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
93# define CALLER_ADDR1 ((unsigned long)__builtin_return_address(1))
94# define CALLER_ADDR2 ((unsigned long)__builtin_return_address(2))
95# define CALLER_ADDR3 ((unsigned long)__builtin_return_address(3))
96# define CALLER_ADDR4 ((unsigned long)__builtin_return_address(4))
97# define CALLER_ADDR5 ((unsigned long)__builtin_return_address(5))
86387f7e 98# define CALLER_ADDR6 ((unsigned long)__builtin_return_address(6))
352ad25a
SR
99#else
100# define CALLER_ADDR0 ((unsigned long)__builtin_return_address(0))
101# define CALLER_ADDR1 0UL
102# define CALLER_ADDR2 0UL
103# define CALLER_ADDR3 0UL
104# define CALLER_ADDR4 0UL
105# define CALLER_ADDR5 0UL
86387f7e 106# define CALLER_ADDR6 0UL
352ad25a
SR
107#endif
108
81d68a96 109#ifdef CONFIG_IRQSOFF_TRACER
489f1396
IM
110 extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
111 extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
81d68a96
SR
112#else
113# define time_hardirqs_on(a0, a1) do { } while (0)
114# define time_hardirqs_off(a0, a1) do { } while (0)
115#endif
116
6cd8a4bb 117#ifdef CONFIG_PREEMPT_TRACER
489f1396
IM
118 extern void trace_preempt_on(unsigned long a0, unsigned long a1);
119 extern void trace_preempt_off(unsigned long a0, unsigned long a1);
6cd8a4bb
SR
120#else
121# define trace_preempt_on(a0, a1) do { } while (0)
122# define trace_preempt_off(a0, a1) do { } while (0)
123#endif
124
b1829d27 125#ifdef CONFIG_TRACING
74f4e369
IM
126extern void
127ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3);
128#else
129static inline void
130ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3) { }
131#endif
132
16444a8a 133#endif /* _LINUX_FTRACE_H */