]> git.baikalelectronics.ru Git - kernel.git/commit
function_graph: Have profiler use curr_ret_stack and not depth
authorSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 20 Nov 2018 17:51:07 +0000 (12:51 -0500)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Wed, 28 Nov 2018 01:31:55 +0000 (20:31 -0500)
commitdefd7e9bf48868543f7b22f1ff6162d45ae36ab9
tree98c58046d2d058096a9fd8f2488b17bb102d19dc
parent2f04a284e797d4185b721f1cebcbd36bb06d29e9
function_graph: Have profiler use curr_ret_stack and not depth

The profiler uses trace->depth to find its entry on the ret_stack, but the
depth may not match the actual location of where its entry is (if an
interrupt were to preempt the processing of the profiler for another
function, the depth and the curr_ret_stack will be different).

Have it use the curr_ret_stack as the index to find its ret_stack entry
instead of using the depth variable, as that is no longer guaranteed to be
the same.

Cc: stable@kernel.org
Fixes: 29022851af1b0 ("tracing/fgraph: Adjust fgraph depth before calling trace return callback")
Reviewed-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/ftrace.c