Lines Matching refs:latency
126 unsigned long long latency) in timerlat_top_update() argument
133 cpu_data->cur_irq = latency; in timerlat_top_update()
134 update_min(&cpu_data->min_irq, &latency); in timerlat_top_update()
135 update_sum(&cpu_data->sum_irq, &latency); in timerlat_top_update()
136 update_max(&cpu_data->max_irq, &latency); in timerlat_top_update()
139 cpu_data->cur_thread = latency; in timerlat_top_update()
140 update_min(&cpu_data->min_thread, &latency); in timerlat_top_update()
141 update_sum(&cpu_data->sum_thread, &latency); in timerlat_top_update()
142 update_max(&cpu_data->max_thread, &latency); in timerlat_top_update()
145 cpu_data->cur_user = latency; in timerlat_top_update()
146 update_min(&cpu_data->min_user, &latency); in timerlat_top_update()
147 update_sum(&cpu_data->sum_user, &latency); in timerlat_top_update()
148 update_max(&cpu_data->max_user, &latency); in timerlat_top_update()
161 unsigned long long latency, thread; in timerlat_top_handler() local
170 tep_get_field_val(s, event, "timer_latency", record, &latency, 1); in timerlat_top_handler()
172 timerlat_top_update(top, cpu, thread, latency); in timerlat_top_handler()