Commit ba1afef6 authored by Steven Rostedt (Red Hat)'s avatar Steven Rostedt (Red Hat) Committed by Steven Rostedt

tracing: Convert local function_graph functions to static

Local functions should be static.
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent b972cc58
...@@ -353,7 +353,7 @@ int trace_graph_entry(struct ftrace_graph_ent *trace) ...@@ -353,7 +353,7 @@ int trace_graph_entry(struct ftrace_graph_ent *trace)
return ret; return ret;
} }
int trace_graph_thresh_entry(struct ftrace_graph_ent *trace) static int trace_graph_thresh_entry(struct ftrace_graph_ent *trace)
{ {
if (tracing_thresh) if (tracing_thresh)
return 1; return 1;
...@@ -442,7 +442,7 @@ void set_graph_array(struct trace_array *tr) ...@@ -442,7 +442,7 @@ void set_graph_array(struct trace_array *tr)
smp_mb(); smp_mb();
} }
void trace_graph_thresh_return(struct ftrace_graph_ret *trace) static void trace_graph_thresh_return(struct ftrace_graph_ret *trace)
{ {
if (tracing_thresh && if (tracing_thresh &&
(trace->rettime - trace->calltime < tracing_thresh)) (trace->rettime - trace->calltime < tracing_thresh))
...@@ -475,7 +475,7 @@ static void graph_trace_reset(struct trace_array *tr) ...@@ -475,7 +475,7 @@ static void graph_trace_reset(struct trace_array *tr)
unregister_ftrace_graph(); unregister_ftrace_graph();
} }
int graph_trace_update_thresh(struct trace_array *tr) static int graph_trace_update_thresh(struct trace_array *tr)
{ {
graph_trace_reset(tr); graph_trace_reset(tr);
return graph_trace_init(tr); return graph_trace_init(tr);
...@@ -1435,7 +1435,7 @@ static void __print_graph_headers_flags(struct seq_file *s, u32 flags) ...@@ -1435,7 +1435,7 @@ static void __print_graph_headers_flags(struct seq_file *s, u32 flags)
seq_printf(s, " | | | |\n"); seq_printf(s, " | | | |\n");
} }
void print_graph_headers(struct seq_file *s) static void print_graph_headers(struct seq_file *s)
{ {
print_graph_headers_flags(s, tracer_flags.val); print_graph_headers_flags(s, tracer_flags.val);
} }
......
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