Lines Matching refs:last_info
252 struct trace_func_repeats *last_info, in is_repeat_check() argument
255 if (last_info->ip == ip && in is_repeat_check()
256 last_info->parent_ip == parent_ip && in is_repeat_check()
257 last_info->count < U16_MAX) { in is_repeat_check()
258 last_info->ts_last_call = in is_repeat_check()
260 last_info->count++; in is_repeat_check()
269 struct trace_func_repeats *last_info, in process_repeats() argument
272 if (last_info->count) { in process_repeats()
273 trace_last_func_repeats(tr, last_info, trace_ctx); in process_repeats()
274 last_info->count = 0; in process_repeats()
277 last_info->ip = ip; in process_repeats()
278 last_info->parent_ip = parent_ip; in process_repeats()
286 struct trace_func_repeats *last_info; in function_no_repeats_trace_call() local
315 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_no_repeats_trace_call()
316 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_no_repeats_trace_call()
321 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_no_repeats_trace_call()
335 struct trace_func_repeats *last_info; in function_stack_no_repeats_trace_call() local
356 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_stack_no_repeats_trace_call()
357 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_stack_no_repeats_trace_call()
361 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_stack_no_repeats_trace_call()