tracing: Make tracing_snapshot_instance_cond() static
Fix the following sparse warning: kernel/trace/trace.c:950:6: warning: symbol 'tracing_snapshot_instance_cond' was not declared. Should it be static? Link: http://lkml.kernel.org/r/1587614905-48692-1-git-send-email-zou_wei@huawei.com Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zou Wei <zou_wei@huawei.com> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
This commit is contained in:
parent
f094a233e1
commit
192b7993b3
kernel/trace
|
@ -947,7 +947,8 @@ int __trace_bputs(unsigned long ip, const char *str)
|
||||||
EXPORT_SYMBOL_GPL(__trace_bputs);
|
EXPORT_SYMBOL_GPL(__trace_bputs);
|
||||||
|
|
||||||
#ifdef CONFIG_TRACER_SNAPSHOT
|
#ifdef CONFIG_TRACER_SNAPSHOT
|
||||||
void tracing_snapshot_instance_cond(struct trace_array *tr, void *cond_data)
|
static void tracing_snapshot_instance_cond(struct trace_array *tr,
|
||||||
|
void *cond_data)
|
||||||
{
|
{
|
||||||
struct tracer *tracer = tr->current_trace;
|
struct tracer *tracer = tr->current_trace;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
Loading…
Reference in New Issue