Home
last modified time | relevance | path

Searched refs:last_info (Results 1 – 3 of 3) sorted by relevance

/linux-5.19.10/kernel/trace/
Dtrace_functions.c250 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()
[all …]
Dtrace.c3207 struct trace_func_repeats *last_info, in trace_last_func_repeats() argument
3221 last_info->ts_last_call; in trace_last_func_repeats()
3224 entry->ip = last_info->ip; in trace_last_func_repeats()
3225 entry->parent_ip = last_info->parent_ip; in trace_last_func_repeats()
3226 entry->count = last_info->count; in trace_last_func_repeats()
Dtrace.h713 struct trace_func_repeats *last_info,