Lines Matching full:depth
24 int depth; member
148 entry->graph_ent.depth = trace->depth; in __trace_graph_retaddr_entry()
264 .depth = 0, in __trace_graph_function()
268 .depth = 0, in __trace_graph_function()
871 * Comments display at + 1 to depth. Since in print_graph_entry_leaf()
873 * equal to this depth. in print_graph_entry_leaf()
875 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
877 /* No need to keep this function around for this depth */ in print_graph_entry_leaf()
878 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_leaf()
879 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_leaf()
880 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
887 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
923 cpu_data->depth = call->depth; in print_graph_entry_nested()
926 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_nested()
927 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_nested()
928 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
935 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
1014 unsigned long addr, int depth) in check_irq_entry() argument
1046 *depth_irq = depth; in check_irq_entry()
1062 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) in check_irq_return() argument
1087 * Let's not trace it and clear the entry depth, since in check_irq_return()
1091 * we are out of the entry depth. Thus protecting us from in check_irq_return()
1094 if (*depth_irq >= depth) { in check_irq_return()
1115 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
1160 if (check_irq_return(iter, flags, trace->depth)) in print_graph_return()
1170 * Comments display at + 1 to depth. This is the in print_graph_return()
1174 cpu_data->depth = trace->depth - 1; in print_graph_return()
1176 if (trace->depth < FTRACE_RETFUNC_DEPTH && in print_graph_return()
1177 !WARN_ON_ONCE(trace->depth < 0)) { in print_graph_return()
1178 if (cpu_data->enter_funcs[trace->depth] != trace->func) in print_graph_return()
1180 cpu_data->enter_funcs[trace->depth] = 0; in print_graph_return()
1190 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) in print_graph_return()
1232 int depth = 0; in print_graph_comment() local
1237 depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth; in print_graph_comment()
1245 if (depth > 0) in print_graph_comment()
1246 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) in print_graph_comment()
1396 seq_printf(s, "#%.*s|| / _--=> preempt-depth \n", size, spaces); in print_lat_header()
1467 /* pid and depth on the last trace processed */ in graph_trace_open()
1487 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); in graph_trace_open() local
1492 *depth = 0; in graph_trace_open()