summaryrefslogtreecommitdiffstats
path: root/src/dpdk22/lib/librte_ether/rte_ethdev.c
diff options
context:
space:
mode:
authorIdo Barnea <ibarnea@cisco.com>2016-04-12 16:45:23 +0300
committerIdo Barnea <ibarnea@cisco.com>2016-04-12 16:45:23 +0300
commit2c00ae277f8c50ebeec17f0e059b17f2b4ba2a07 (patch)
treee5885e61517f4eac785a4d2ee24192be893dab6a /src/dpdk22/lib/librte_ether/rte_ethdev.c
parent5a26a09958318032868d82a7d2d0207464e1af2d (diff)
Temporary fix for trex-199 (xl170 counters stuck at 4G)
Diffstat (limited to 'src/dpdk22/lib/librte_ether/rte_ethdev.c')
-rw-r--r--src/dpdk22/lib/librte_ether/rte_ethdev.c17
1 files changed, 17 insertions, 0 deletions
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)
{