tracing: Remove extra call to init_ftrace_syscalls()
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Wed, 14 Jan 2015 17:24:37 +0000 (12:24 -0500)
committerSteven Rostedt <rostedt@goodmis.org>
Thu, 15 Jan 2015 14:41:11 +0000 (09:41 -0500)
commit83829b74f54186a154ae6b586c05cdb838c2ebc6
tree4275f390c63316a220fd385aebd81616ba531b1b
parent237d28db036e411f22c03cfd5b0f6dc2aa9bf3bc
tracing: Remove extra call to init_ftrace_syscalls()

trace_init() calls init_ftrace_syscalls() and then calls trace_event_init()
which also calls init_ftrace_syscalls(). It makes more sense to only
call it from trace_event_init().

Calling it twice wastes memory, as it allocates the syscall events twice,
and loses the first copy of it.

Link: http://lkml.kernel.org/r/54AF53BD.5070303@huawei.com
Link: http://lkml.kernel.org/r/20150115040505.930398632@goodmis.org
Reported-by: Wang Nan <wangnan0@huawei.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace.c