Lines Matching refs:last_info
250 struct trace_func_repeats *last_info, in is_repeat_check() argument
253 if (last_info->ip == ip && in is_repeat_check()
254 last_info->parent_ip == parent_ip && in is_repeat_check()
255 last_info->count < U16_MAX) { in is_repeat_check()
256 last_info->ts_last_call = in is_repeat_check()
258 last_info->count++; in is_repeat_check()
267 struct trace_func_repeats *last_info, in process_repeats() argument
270 if (last_info->count) { in process_repeats()
271 trace_last_func_repeats(tr, last_info, trace_ctx); in process_repeats()
272 last_info->count = 0; in process_repeats()
275 last_info->ip = ip; in process_repeats()
276 last_info->parent_ip = parent_ip; in process_repeats()
284 struct trace_func_repeats *last_info; in function_no_repeats_trace_call() local
311 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_no_repeats_trace_call()
312 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_no_repeats_trace_call()
317 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_no_repeats_trace_call()
330 struct trace_func_repeats *last_info; in function_stack_no_repeats_trace_call() local
351 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_stack_no_repeats_trace_call()
352 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_stack_no_repeats_trace_call()
356 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_stack_no_repeats_trace_call()