aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ftrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r--include/linux/ftrace.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index ccd8537dbdb7..d509ad6c9cb8 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -42,19 +42,23 @@ extern void mcount(void);
42# define FTRACE_HASHBITS 10 42# define FTRACE_HASHBITS 10
43# define FTRACE_HASHSIZE (1<<FTRACE_HASHBITS) 43# define FTRACE_HASHSIZE (1<<FTRACE_HASHBITS)
44 44
45enum {
46 FTRACE_FL_FAILED = (1<<0),
47};
48
45struct dyn_ftrace { 49struct dyn_ftrace {
46 struct hlist_node node; 50 struct hlist_node node;
47 unsigned long ip; 51 unsigned long ip;
52 unsigned long flags;
48}; 53};
49 54
50/* defined in arch */ 55/* defined in arch */
51extern struct dyn_ftrace * 56extern int ftrace_ip_converted(unsigned long ip);
52ftrace_alloc_shutdown_node(unsigned long ip); 57extern unsigned char *ftrace_nop_replace(void);
53extern int ftrace_shutdown_arch_init(void); 58extern unsigned char *ftrace_call_replace(unsigned long ip, unsigned long addr);
54extern void ftrace_code_disable(struct dyn_ftrace *rec); 59extern int ftrace_dyn_arch_init(void);
55extern void ftrace_startup_code(void); 60extern int ftrace_modify_code(unsigned long ip, unsigned char *old_code,
56extern void ftrace_shutdown_code(void); 61 unsigned char *new_code);
57extern void ftrace_shutdown_replenish(void);
58#endif 62#endif
59 63
60#ifdef CONFIG_FRAME_POINTER 64#ifdef CONFIG_FRAME_POINTER