Lines Matching refs:last_info
311 struct trace_func_repeats *last_info, in is_repeat_check() argument
314 if (last_info->ip == ip && in is_repeat_check()
315 last_info->parent_ip == parent_ip && in is_repeat_check()
316 last_info->count < U16_MAX) { in is_repeat_check()
317 last_info->ts_last_call = in is_repeat_check()
319 last_info->count++; in is_repeat_check()
328 struct trace_func_repeats *last_info, in process_repeats() argument
331 if (last_info->count) { in process_repeats()
332 trace_last_func_repeats(tr, last_info, trace_ctx); in process_repeats()
333 last_info->count = 0; in process_repeats()
336 last_info->ip = ip; in process_repeats()
337 last_info->parent_ip = parent_ip; in process_repeats()
345 struct trace_func_repeats *last_info; in function_no_repeats_trace_call() local
368 last_info = this_cpu_ptr(tr->last_func_repeats); in function_no_repeats_trace_call()
369 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_no_repeats_trace_call()
373 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_no_repeats_trace_call()
386 struct trace_func_repeats *last_info; in function_stack_no_repeats_trace_call() local
408 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_stack_no_repeats_trace_call()
409 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_stack_no_repeats_trace_call()
413 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_stack_no_repeats_trace_call()