Lines Matching full:depth
24 int depth; member
201 .depth = 0, in __trace_graph_function()
205 .depth = 0, in __trace_graph_function()
731 * Comments display at + 1 to depth. Since in print_graph_entry_leaf()
733 * equal to this depth. in print_graph_entry_leaf()
735 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
737 /* No need to keep this function around for this depth */ in print_graph_entry_leaf()
738 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_leaf()
739 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_leaf()
740 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
747 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
782 cpu_data->depth = call->depth; in print_graph_entry_nested()
785 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_nested()
786 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_nested()
787 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
794 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
868 unsigned long addr, int depth) in check_irq_entry() argument
900 *depth_irq = depth; in check_irq_entry()
916 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) in check_irq_return() argument
941 * Let's not trace it and clear the entry depth, since in check_irq_return()
945 * we are out of the entry depth. Thus protecting us from in check_irq_return()
948 if (*depth_irq >= depth) { in check_irq_return()
969 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
1011 if (check_irq_return(iter, flags, trace->depth)) in print_graph_return()
1021 * Comments display at + 1 to depth. This is the in print_graph_return()
1025 cpu_data->depth = trace->depth - 1; in print_graph_return()
1027 if (trace->depth < FTRACE_RETFUNC_DEPTH && in print_graph_return()
1028 !WARN_ON_ONCE(trace->depth < 0)) { in print_graph_return()
1029 if (cpu_data->enter_funcs[trace->depth] != trace->func) in print_graph_return()
1031 cpu_data->enter_funcs[trace->depth] = 0; in print_graph_return()
1041 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) in print_graph_return()
1084 int depth = 0; in print_graph_comment() local
1089 depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth; in print_graph_comment()
1097 if (depth > 0) in print_graph_comment()
1098 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) in print_graph_comment()
1238 seq_printf(s, "#%.*s|| / _--=> preempt-depth \n", size, spaces); in print_lat_header()
1309 /* pid and depth on the last trace processed */ in graph_trace_open()
1329 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); in graph_trace_open() local
1334 *depth = 0; in graph_trace_open()