Lines Matching refs:last_info
319 struct trace_func_repeats *last_info, in is_repeat_check() argument
322 if (last_info->ip == ip && in is_repeat_check()
323 last_info->parent_ip == parent_ip && in is_repeat_check()
324 last_info->count < U16_MAX) { in is_repeat_check()
325 last_info->ts_last_call = in is_repeat_check()
327 last_info->count++; in is_repeat_check()
336 struct trace_func_repeats *last_info, in process_repeats() argument
339 if (last_info->count) { in process_repeats()
340 trace_last_func_repeats(tr, last_info, trace_ctx); in process_repeats()
341 last_info->count = 0; in process_repeats()
344 last_info->ip = ip; in process_repeats()
345 last_info->parent_ip = parent_ip; in process_repeats()
353 struct trace_func_repeats *last_info; in function_no_repeats_trace_call() local
378 last_info = this_cpu_ptr(tr->last_func_repeats); in function_no_repeats_trace_call()
379 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_no_repeats_trace_call()
383 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_no_repeats_trace_call()
396 struct trace_func_repeats *last_info; in function_stack_no_repeats_trace_call() local
418 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_stack_no_repeats_trace_call()
419 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_stack_no_repeats_trace_call()
423 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_stack_no_repeats_trace_call()