Home
last modified time | relevance | path

Searched refs:tseq (Results 1 – 1 of 1) sorted by relevance

/kernel/trace/
Dtrace_recursion_record.c119 static struct trace_seq *tseq; variable
132 tseq = kzalloc(sizeof(*tseq), GFP_KERNEL); in recursed_function_seq_start()
133 if (!tseq) in recursed_function_seq_start()
136 trace_seq_init(tseq); in recursed_function_seq_start()
154 kfree(tseq); in recursed_function_seq_stop()
164 trace_seq_print_sym(tseq, record->parent_ip, true); in recursed_function_seq_show()
165 trace_seq_puts(tseq, ":\t"); in recursed_function_seq_show()
166 trace_seq_print_sym(tseq, record->ip, true); in recursed_function_seq_show()
167 trace_seq_putc(tseq, '\n'); in recursed_function_seq_show()
168 ret = trace_print_seq(m, tseq); in recursed_function_seq_show()