Commit 0a46c854 authored by Masami Hiramatsu's avatar Masami Hiramatsu Committed by Steven Rostedt (VMware)

tracing: probeevent: Append traceprobe_ for exported function

Append traceprobe_ for exported function set_print_fmt() as
same as other functions.

Link: http://lkml.kernel.org/r/152465877071.26224.11143125027282999726.stgit@devboxSigned-off-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent 9178412d
...@@ -1371,7 +1371,7 @@ static int register_kprobe_event(struct trace_kprobe *tk) ...@@ -1371,7 +1371,7 @@ static int register_kprobe_event(struct trace_kprobe *tk)
init_trace_event_call(tk, call); init_trace_event_call(tk, call);
if (set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0) if (traceprobe_set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0)
return -ENOMEM; return -ENOMEM;
ret = register_trace_event(&call->event); ret = register_trace_event(&call->event);
if (!ret) { if (!ret) {
...@@ -1428,7 +1428,7 @@ create_local_trace_kprobe(char *func, void *addr, unsigned long offs, ...@@ -1428,7 +1428,7 @@ create_local_trace_kprobe(char *func, void *addr, unsigned long offs,
init_trace_event_call(tk, &tk->tp.call); init_trace_event_call(tk, &tk->tp.call);
if (set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0) { if (traceprobe_set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0) {
ret = -ENOMEM; ret = -ENOMEM;
goto error; goto error;
} }
......
...@@ -490,7 +490,7 @@ static int __set_print_fmt(struct trace_probe *tp, char *buf, int len, ...@@ -490,7 +490,7 @@ static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
return pos; return pos;
} }
int set_print_fmt(struct trace_probe *tp, bool is_return) int traceprobe_set_print_fmt(struct trace_probe *tp, bool is_return)
{ {
int len; int len;
char *print_fmt; char *print_fmt;
......
...@@ -254,7 +254,7 @@ extern void traceprobe_free_probe_arg(struct probe_arg *arg); ...@@ -254,7 +254,7 @@ extern void traceprobe_free_probe_arg(struct probe_arg *arg);
extern int traceprobe_split_symbol_offset(char *symbol, long *offset); extern int traceprobe_split_symbol_offset(char *symbol, long *offset);
extern int set_print_fmt(struct trace_probe *tp, bool is_return); extern int traceprobe_set_print_fmt(struct trace_probe *tp, bool is_return);
#ifdef CONFIG_PERF_EVENTS #ifdef CONFIG_PERF_EVENTS
extern struct trace_event_call * extern struct trace_event_call *
......
...@@ -1370,7 +1370,7 @@ static int register_uprobe_event(struct trace_uprobe *tu) ...@@ -1370,7 +1370,7 @@ static int register_uprobe_event(struct trace_uprobe *tu)
init_trace_event_call(tu, call); init_trace_event_call(tu, call);
if (set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0) if (traceprobe_set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0)
return -ENOMEM; return -ENOMEM;
ret = register_trace_event(&call->event); ret = register_trace_event(&call->event);
...@@ -1443,7 +1443,7 @@ create_local_trace_uprobe(char *name, unsigned long offs, ...@@ -1443,7 +1443,7 @@ create_local_trace_uprobe(char *name, unsigned long offs,
tu->filename = kstrdup(name, GFP_KERNEL); tu->filename = kstrdup(name, GFP_KERNEL);
init_trace_event_call(tu, &tu->tp.call); init_trace_event_call(tu, &tu->tp.call);
if (set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0) { if (traceprobe_set_print_fmt(&tu->tp, is_ret_probe(tu)) < 0) {
ret = -ENOMEM; ret = -ENOMEM;
goto error; goto error;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment