Skip to content

Commit

Permalink
tracing: Add static to local functions
Browse files Browse the repository at this point in the history
This patch adds static to the following functions:
-cycle_t buffer_ftrace_now
-void free_snapshot
-int trace_selftest_startup_dynamic_tracing

Link: http://lkml.kernel.org/p/20140417214442.d7abc7c0b0e4b90e7fedecc9@skynet.be

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
  • Loading branch information
Fabian Frederick authored and Steven Rostedt committed Apr 21, 2014
1 parent 8275f69 commit ad1438a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions kernel/trace/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ int call_filter_check_discard(struct ftrace_event_call *call, void *rec,
}
EXPORT_SYMBOL_GPL(call_filter_check_discard);

cycle_t buffer_ftrace_now(struct trace_buffer *buf, int cpu)
static cycle_t buffer_ftrace_now(struct trace_buffer *buf, int cpu)
{
u64 ts;

Expand Down Expand Up @@ -599,7 +599,7 @@ static int alloc_snapshot(struct trace_array *tr)
return 0;
}

void free_snapshot(struct trace_array *tr)
static void free_snapshot(struct trace_array *tr)
{
/*
* We don't free the ring buffer. instead, resize it because
Expand Down
6 changes: 3 additions & 3 deletions kernel/trace/trace_selftest.c
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,9 @@ static int trace_selftest_ops(struct trace_array *tr, int cnt)
}

/* Test dynamic code modification and ftrace filters */
int trace_selftest_startup_dynamic_tracing(struct tracer *trace,
struct trace_array *tr,
int (*func)(void))
static int trace_selftest_startup_dynamic_tracing(struct tracer *trace,
struct trace_array *tr,
int (*func)(void))
{
int save_ftrace_enabled = ftrace_enabled;
unsigned long count;
Expand Down

0 comments on commit ad1438a

Please sign in to comment.