tracing: probeevent: Append traceprobe_ for exported function
authorMasami Hiramatsu <mhiramat@kernel.org>
Wed, 25 Apr 2018 12:19:30 +0000 (21:19 +0900)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Thu, 11 Oct 2018 02:19:09 +0000 (22:19 -0400)
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>
kernel/trace/trace_kprobe.c
kernel/trace/trace_probe.c
kernel/trace/trace_probe.h
kernel/trace/trace_uprobe.c

index 7e5064f..4895ca8 100644 (file)
@@ -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) {
@@ -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;
        }
index d06e67c..d119bf8 100644 (file)
@@ -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;
index b6bdd82..c4e9d3d 100644 (file)
@@ -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 *
index 08ad51c..912cb20 100644 (file)
@@ -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);
@@ -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;
        }