Lines Matching refs:ret_stack
798 struct ftrace_ret_stack *ret_stack; in profile_graph_entry() local
803 if (!current->ret_stack) in profile_graph_entry()
806 ret_stack = ftrace_graph_get_ret_stack(current, 0); in profile_graph_entry()
807 if (ret_stack) in profile_graph_entry()
808 ret_stack->subtime = 0; in profile_graph_entry()
815 struct ftrace_ret_stack *ret_stack; in profile_graph_return() local
835 ret_stack = ftrace_graph_get_ret_stack(current, 1); in profile_graph_return()
836 if (ret_stack) in profile_graph_return()
837 ret_stack->subtime += calltime; in profile_graph_return()
839 ret_stack = ftrace_graph_get_ret_stack(current, 0); in profile_graph_return()
840 if (ret_stack && ret_stack->subtime < calltime) in profile_graph_return()
841 calltime -= ret_stack->subtime; in profile_graph_return()