提交 4dc93676 编写于 作者: S Steven Rostedt 提交者: Steven Rostedt

ftrace: Make ftrace_location() a nop on !DYNAMIC_FTRACE

When CONFIG_DYNAMIC_FTRACE is not set, ftrace_location() is not defined.
If a user (like kprobes) references this function, it will break
the compile when CONFIG_DYNAMIC_FTRACE is not set.

Add ftrace_location() as a nop (return 0) when DYNAMIC_FTRACE
is not defined.

Link: http://lkml.kernel.org/r/20120612225426.961092717@goodmis.orgSigned-off-by: NSteven Rostedt <rostedt@goodmis.org>
上级 25764288
...@@ -520,7 +520,7 @@ extern int skip_trace(unsigned long ip); ...@@ -520,7 +520,7 @@ extern int skip_trace(unsigned long ip);
extern void ftrace_disable_daemon(void); extern void ftrace_disable_daemon(void);
extern void ftrace_enable_daemon(void); extern void ftrace_enable_daemon(void);
#else #else /* CONFIG_DYNAMIC_FTRACE */
static inline int skip_trace(unsigned long ip) { return 0; } static inline int skip_trace(unsigned long ip) { return 0; }
static inline int ftrace_force_update(void) { return 0; } static inline int ftrace_force_update(void) { return 0; }
static inline void ftrace_disable_daemon(void) { } static inline void ftrace_disable_daemon(void) { }
...@@ -538,6 +538,10 @@ static inline int ftrace_text_reserved(void *start, void *end) ...@@ -538,6 +538,10 @@ static inline int ftrace_text_reserved(void *start, void *end)
{ {
return 0; return 0;
} }
static inline unsigned long ftrace_location(unsigned long ip)
{
return 0;
}
/* /*
* Again users of functions that have ftrace_ops may not * Again users of functions that have ftrace_ops may not
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册