Lines Matching full:depth

24 	int		depth;  member
170 entry->graph_ent.depth = trace->depth; in __trace_graph_retaddr_entry()
290 .depth = 0, in __trace_graph_function()
294 .depth = 0, in __trace_graph_function()
925 * Comments display at + 1 to depth. Since in print_graph_entry_leaf()
927 * equal to this depth. in print_graph_entry_leaf()
929 cpu_data->depth = call->depth - 1; in print_graph_entry_leaf()
931 /* No need to keep this function around for this depth */ in print_graph_entry_leaf()
932 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_leaf()
933 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_leaf()
934 cpu_data->enter_funcs[call->depth] = 0; in print_graph_entry_leaf()
941 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_leaf()
987 cpu_data->depth = call->depth; in print_graph_entry_nested()
990 if (call->depth < FTRACE_RETFUNC_DEPTH && in print_graph_entry_nested()
991 !WARN_ON_ONCE(call->depth < 0)) in print_graph_entry_nested()
992 cpu_data->enter_funcs[call->depth] = call->func; in print_graph_entry_nested()
999 for (i = 0; i < call->depth * TRACE_GRAPH_INDENT; i++) in print_graph_entry_nested()
1088 unsigned long addr, int depth) in check_irq_entry() argument
1120 *depth_irq = depth; in check_irq_entry()
1136 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) in check_irq_return() argument
1161 * Let's not trace it and clear the entry depth, since in check_irq_return()
1165 * we are out of the entry depth. Thus protecting us from in check_irq_return()
1168 if (*depth_irq >= depth) { in check_irq_return()
1206 if (check_irq_entry(iter, flags, call->func, call->depth)) in print_graph_entry()
1251 if (check_irq_return(iter, flags, trace->depth)) in print_graph_return()
1261 * Comments display at + 1 to depth. This is the in print_graph_return()
1265 cpu_data->depth = trace->depth - 1; in print_graph_return()
1267 if (trace->depth < FTRACE_RETFUNC_DEPTH && in print_graph_return()
1268 !WARN_ON_ONCE(trace->depth < 0)) { in print_graph_return()
1269 if (cpu_data->enter_funcs[trace->depth] != trace->func) in print_graph_return()
1271 cpu_data->enter_funcs[trace->depth] = 0; in print_graph_return()
1281 for (i = 0; i < trace->depth * TRACE_GRAPH_INDENT; i++) in print_graph_return()
1325 int depth = 0; in print_graph_comment() local
1330 depth = per_cpu_ptr(data->cpu_data, iter->cpu)->depth; in print_graph_comment()
1338 if (depth > 0) in print_graph_comment()
1339 for (i = 0; i < (depth + 1) * TRACE_GRAPH_INDENT; i++) in print_graph_comment()
1481 seq_printf(s, "#%.*s|| / _--=> preempt-depth \n", size, spaces); in print_lat_header()
1552 /* pid and depth on the last trace processed */ in graph_trace_open()
1572 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); in graph_trace_open() local
1577 *depth = 0; in graph_trace_open()