From 5313adc02a1f658268935a940bb706846f6e78e9 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Sat, 9 Jun 2018 14:49:00 -0400 Subject: Don't use foreach_vlib_main macro w/out barrier sync It should be OK to scrape dispatch stats without forcing a barrier sync. Scrape the stats manually. We'll see what happens. Change-Id: Ia20b51ea12ed81cce76e1801401bad0edd0645bb Signed-off-by: Dave Barach --- src/vpp/stats/stat_segment.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/vpp/stats/stat_segment.c b/src/vpp/stats/stat_segment.c index 795e347ee3e..f1db684fecd 100644 --- a/src/vpp/stats/stat_segment.c +++ b/src/vpp/stats/stat_segment.c @@ -371,6 +371,7 @@ stat_segment_process (vlib_main_t * vm, vlib_node_runtime_t * rt, f64 last_runtime, dt, now; vlib_main_t *this_vlib_main; stats_main_t *sm = &stats_main; + int i; last_runtime = 0.0; last_input_packets = 0; @@ -388,10 +389,13 @@ stat_segment_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vector_rate = 0.0; /* *INDENT-OFF* */ - foreach_vlib_main - ({ - vector_rate += vlib_last_vector_length_per_node (vm); - }); + for (i = 0; i < vec_len (vlib_mains); i++) + { + this_vlib_main = vlib_mains[i]; + vector_rate += vlib_last_vector_length_per_node (vm); + } + vector_rate /= (f64) i; + /* *INDENT-ON* */ *sm->vector_rate_ptr = vector_rate / ((f64) vec_len (vlib_mains)); -- cgit 1.2.3-korg