File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -58,9 +58,9 @@ struct timerlat_hist_cpu {
58
58
int * thread ;
59
59
int * user ;
60
60
61
- int irq_count ;
62
- int thread_count ;
63
- int user_count ;
61
+ unsigned long long irq_count ;
62
+ unsigned long long thread_count ;
63
+ unsigned long long user_count ;
64
64
65
65
unsigned long long min_irq ;
66
66
unsigned long long sum_irq ;
@@ -300,15 +300,15 @@ timerlat_print_summary(struct timerlat_hist_params *params,
300
300
continue ;
301
301
302
302
if (!params -> no_irq )
303
- trace_seq_printf (trace -> seq , "%9d " ,
303
+ trace_seq_printf (trace -> seq , "%9llu " ,
304
304
data -> hist [cpu ].irq_count );
305
305
306
306
if (!params -> no_thread )
307
- trace_seq_printf (trace -> seq , "%9d " ,
307
+ trace_seq_printf (trace -> seq , "%9llu " ,
308
308
data -> hist [cpu ].thread_count );
309
309
310
310
if (params -> user_hist )
311
- trace_seq_printf (trace -> seq , "%9d " ,
311
+ trace_seq_printf (trace -> seq , "%9llu " ,
312
312
data -> hist [cpu ].user_count );
313
313
}
314
314
trace_seq_printf (trace -> seq , "\n" );
You can’t perform that action at this time.
0 commit comments