]> git.baikalelectronics.ru Git - kernel.git/commit
tracing: Fix check of ftrace_trace_arrays list_empty() check
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Tue, 10 Jun 2014 17:53:50 +0000 (13:53 -0400)
committerSteven Rostedt <rostedt@goodmis.org>
Tue, 10 Jun 2014 17:53:50 +0000 (13:53 -0400)
commitfda9f7be07a00137b04eb4a854037d6f2857907a
treea320d4d4318c6a0b8a4646e46e15059d1336b8c6
parenta973947933a3b15087cd938833b5214e11a63213
tracing: Fix check of ftrace_trace_arrays list_empty() check

The check that tests if ftrace_trace_arrays is empty in
top_trace_array(), uses the .prev pointer:

  if (list_empty(ftrace_trace_arrays.prev))

instead of testing the variable itself:

  if (list_empty(&ftrace_trace_arrays))

Although it is technically correct, it is awkward and confusing.
Use the proper method.

Link: http://lkml.kernel.org/r/87oay1bas8.fsf@sejong.aot.lge.com
Reported-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace.h