From 70cc129cd1916ff8d406e18d59ef1a80eb9d65d0 Mon Sep 17 00:00:00 2001 From: Maryam Tahhan Date: Tue, 5 Apr 2016 10:48:04 +0100 Subject: [PATCH] dpdkstat: bugfix missed enabled_port_count Signed-off-by: Maryam Tahhan Reviewed-by: Harry Van Haaren --- src/dpdkstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dpdkstat.c b/src/dpdkstat.c index e451990d..096bfed2 100644 --- a/src/dpdkstat.c +++ b/src/dpdkstat.c @@ -503,7 +503,7 @@ static int dpdk_helper_run (void) len = g_configuration->num_stats_in_port[enabled_port_count]; g_configuration->port_read_time[enabled_port_count] = cdtime(); ret = rte_eth_xstats_get(i, &g_configuration->xstats + num_xstats, - g_configuration->num_stats_in_port[i]); + g_configuration->num_stats_in_port[enabled_port_count]); if (ret < 0 || ret != len) { DEBUG("dpdkstat-helper: Error reading xstats on port %d len = %d\n", i, len); -- 2.11.0