Lines Matching refs:last_info
263 struct trace_func_repeats *last_info, in is_repeat_check() argument
266 if (last_info->ip == ip && in is_repeat_check()
267 last_info->parent_ip == parent_ip && in is_repeat_check()
268 last_info->count < U16_MAX) { in is_repeat_check()
269 last_info->ts_last_call = in is_repeat_check()
271 last_info->count++; in is_repeat_check()
280 struct trace_func_repeats *last_info, in process_repeats() argument
283 if (last_info->count) { in process_repeats()
284 trace_last_func_repeats(tr, last_info, trace_ctx); in process_repeats()
285 last_info->count = 0; in process_repeats()
288 last_info->ip = ip; in process_repeats()
289 last_info->parent_ip = parent_ip; in process_repeats()
297 struct trace_func_repeats *last_info; in function_no_repeats_trace_call() local
324 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_no_repeats_trace_call()
325 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_no_repeats_trace_call()
330 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_no_repeats_trace_call()
343 struct trace_func_repeats *last_info; in function_stack_no_repeats_trace_call() local
364 last_info = per_cpu_ptr(tr->last_func_repeats, cpu); in function_stack_no_repeats_trace_call()
365 if (is_repeat_check(tr, last_info, ip, parent_ip)) in function_stack_no_repeats_trace_call()
369 process_repeats(tr, ip, parent_ip, last_info, trace_ctx); in function_stack_no_repeats_trace_call()