ixgbe: restore imissed stat counter
authorRobin Jarry <robin.jarry@6wind.com>
Tue, 15 Dec 2015 16:05:01 +0000 (17:05 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 15 Dec 2015 17:05:53 +0000 (18:05 +0100)
This counter was left unmodified. Restore it in ixgbe_dev_stats_get.

The ierrors counter still includes imissed for ixgbe. This behaviour is
not consistent amongst all drivers. Another patch may be needed to unify
the meaning of the ierrors counter.

Fixes: 5e50ad1c1b63 ("ixgbe: add specific stats")

Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
Acked-by: Harry van Haaren <harry.van.haaren@intel.com>
drivers/net/ixgbe/ixgbe_ethdev.c

index 1b6cd8e..4c4c6df 100644 (file)
@@ -2546,6 +2546,7 @@ ixgbe_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
        }
 
        /* Rx Errors */
+       stats->imissed  = total_missed_rx;
        stats->ierrors  = hw_stats->crcerrs +
                          hw_stats->mspdc +
                          hw_stats->rlec +