summaryrefslogtreecommitdiffstats
path: root/src/dpdk22/lib/librte_ether/rte_ethdev.c
diff options
context:
space:
mode:
authorHanoh Haim <hhaim@cisco.com>2016-04-13 12:40:21 +0300
committerHanoh Haim <hhaim@cisco.com>2016-04-13 12:40:21 +0300
commit8076b8111991a790886537a5c1d7b54a01f479e4 (patch)
treed3615814b3a62a4e19d64fd9cf1269c36ba62ed0 /src/dpdk22/lib/librte_ether/rte_ethdev.c
parent1f450703d3a51ed454af26aa494a7c6e2579686d (diff)
parent0b39ec305e80999c7dbe36d4b0d3850b04709571 (diff)
Merge v2.0
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)
{