aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/ftrace.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index 20e14d0093c7..366098d591de 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -31,7 +31,6 @@ int unregister_ftrace_function(struct ftrace_ops *ops);
31void clear_ftrace_function(void); 31void clear_ftrace_function(void);
32 32
33extern void ftrace_stub(unsigned long a0, unsigned long a1); 33extern void ftrace_stub(unsigned long a0, unsigned long a1);
34extern void mcount(void);
35 34
36#else /* !CONFIG_FTRACE */ 35#else /* !CONFIG_FTRACE */
37# define register_ftrace_function(ops) do { } while (0) 36# define register_ftrace_function(ops) do { } while (0)
@@ -54,7 +53,7 @@ enum {
54 53
55struct dyn_ftrace { 54struct dyn_ftrace {
56 struct hlist_node node; 55 struct hlist_node node;
57 unsigned long ip; 56 unsigned long ip; /* address of mcount call-site */
58 unsigned long flags; 57 unsigned long flags;
59}; 58};
60 59