Skip to content

Commit

Permalink
tracing: probeevent: Append traceprobe_ for exported function
Browse files Browse the repository at this point in the history
Append traceprobe_ for exported function set_print_fmt() as
same as other functions.

Link: http://lkml.kernel.org/r/152465877071.26224.11143125027282999726.stgit@devbox

Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
  • Loading branch information
Masami Hiramatsu authored and Steven Rostedt (VMware) committed Oct 11, 2018
1 parent 9178412 commit 0a46c85
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions kernel/trace/trace_kprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ static int register_kprobe_event(struct trace_kprobe *tk)

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;
ret = register_trace_event(&call->event);
if (!ret) {
Expand Down Expand Up @@ -1428,7 +1428,7 @@ create_local_trace_kprobe(char *func, void *addr, unsigned long offs,

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;
goto error;
}
Expand Down
2 changes: 1 addition & 1 deletion kernel/trace/trace_probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ static int __set_print_fmt(struct trace_probe *tp, char *buf, int len,
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;
char *print_fmt;
Expand Down
2 changes: 1 addition & 1 deletion kernel/trace/trace_probe.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 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
extern struct trace_event_call *
Expand Down
4 changes: 2 additions & 2 deletions kernel/trace/trace_uprobe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ static int register_uprobe_event(struct trace_uprobe *tu)

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;

ret = register_trace_event(&call->event);
Expand Down Expand Up @@ -1443,7 +1443,7 @@ create_local_trace_uprobe(char *name, unsigned long offs,
tu->filename = kstrdup(name, GFP_KERNEL);
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;
goto error;
}
Expand Down

0 comments on commit 0a46c85

Please sign in to comment.