@@ -298,7 +298,7 @@ static void timerlat_hist_header(struct osnoise_tool *tool)
298298 if (!params -> common .hist .no_index )
299299 trace_seq_printf (s , "Index" );
300300
301- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
301+ for_each_monitored_cpu (cpu , & params -> common ) {
302302
303303 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
304304 continue ;
@@ -350,7 +350,7 @@ timerlat_print_summary(struct timerlat_params *params,
350350 if (!params -> common .hist .no_index )
351351 trace_seq_printf (trace -> seq , "count:" );
352352
353- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
353+ for_each_monitored_cpu (cpu , & params -> common ) {
354354
355355 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
356356 continue ;
@@ -372,7 +372,7 @@ timerlat_print_summary(struct timerlat_params *params,
372372 if (!params -> common .hist .no_index )
373373 trace_seq_printf (trace -> seq , "min: " );
374374
375- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
375+ for_each_monitored_cpu (cpu , & params -> common ) {
376376
377377 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
378378 continue ;
@@ -400,7 +400,7 @@ timerlat_print_summary(struct timerlat_params *params,
400400 if (!params -> common .hist .no_index )
401401 trace_seq_printf (trace -> seq , "avg: " );
402402
403- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
403+ for_each_monitored_cpu (cpu , & params -> common ) {
404404
405405 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
406406 continue ;
@@ -428,7 +428,7 @@ timerlat_print_summary(struct timerlat_params *params,
428428 if (!params -> common .hist .no_index )
429429 trace_seq_printf (trace -> seq , "max: " );
430430
431- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
431+ for_each_monitored_cpu (cpu , & params -> common ) {
432432
433433 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
434434 continue ;
@@ -473,7 +473,7 @@ timerlat_print_stats_all(struct timerlat_params *params,
473473 sum .min_thread = ~0 ;
474474 sum .min_user = ~0 ;
475475
476- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
476+ for_each_monitored_cpu (cpu , & params -> common ) {
477477
478478 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
479479 continue ;
@@ -620,7 +620,7 @@ timerlat_print_stats(struct osnoise_tool *tool)
620620 trace_seq_printf (trace -> seq , "%-6d" ,
621621 bucket * data -> bucket_size );
622622
623- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
623+ for_each_monitored_cpu (cpu , & params -> common ) {
624624
625625 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
626626 continue ;
@@ -658,7 +658,7 @@ timerlat_print_stats(struct osnoise_tool *tool)
658658 if (!params -> common .hist .no_index )
659659 trace_seq_printf (trace -> seq , "over: " );
660660
661- for_each_monitored_cpu (cpu , nr_cpus , & params -> common ) {
661+ for_each_monitored_cpu (cpu , & params -> common ) {
662662
663663 if (!data -> hist [cpu ].irq_count && !data -> hist [cpu ].thread_count )
664664 continue ;
0 commit comments