ethdev: remove useless memset
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 3 Jun 2015 21:13:11 +0000 (14:13 -0700)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 4 Jun 2015 08:46:45 +0000 (10:46 +0200)
eth_stats is already cleared by rte_eth_stats_get

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_ether/rte_ethdev.c

index 024fe8b..5a94654 100644 (file)
@@ -1766,7 +1766,6 @@ rte_eth_xstats_get(uint8_t port_id, struct rte_eth_xstats *xstats,
        /* now fill the xstats structure */
 
        count = 0;
-       memset(&eth_stats, 0, sizeof(eth_stats));
        rte_eth_stats_get(port_id, &eth_stats);
 
        /* global stats */