From 2c00ae277f8c50ebeec17f0e059b17f2b4ba2a07 Mon Sep 17 00:00:00 2001 From: Ido Barnea Date: Tue, 12 Apr 2016 16:45:23 +0300 Subject: Temporary fix for trex-199 (xl170 counters stuck at 4G) --- src/dpdk22/lib/librte_ether/rte_ethdev.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'src/dpdk22/lib/librte_ether/rte_ethdev.c') diff --git a/src/dpdk22/lib/librte_ether/rte_ethdev.c b/src/dpdk22/lib/librte_ether/rte_ethdev.c index 383ad120..44b4b640 100644 --- a/src/dpdk22/lib/librte_ether/rte_ethdev.c +++ b/src/dpdk22/lib/librte_ether/rte_ethdev.c @@ -1462,6 +1462,23 @@ rte_eth_fdir_stats_get(uint8_t port_id, uint32_t *stats, uint32_t start, uint32_ return 0; } +// TREX_PATCH +// zero statistics counters, starting from start, for len counters. +int +rte_eth_fdir_stats_reset(uint8_t port_id, uint32_t *stats, uint32_t start, uint32_t len) +{ + struct rte_eth_dev *dev; + + RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL); + + dev = &rte_eth_devices[port_id]; + + // Only xl710 support this + i40e_trex_fdir_stats_reset(dev, stats, start, len); + + return 0; +} + int rte_eth_stats_get(uint8_t port_id, struct rte_eth_stats *stats) { -- cgit 1.2.3-korg