diff options
author | Filip Tehlar <ftehlar@cisco.com> | 2019-06-04 01:22:55 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-06-06 12:07:09 +0000 |
commit | 831f4200cab2b363f2a8ea340331343c14407b7d (patch) | |
tree | 0c69ad2f1ad66cb0429dd7ca85b98eda7d07ab32 /src/plugins/dpdk/device/dpdk.h | |
parent | a342da22f35676114ca928c65b0219fac8009f7a (diff) |
dpdk: fix clear hw stats
.. and remove helper stat struct for keeping last cleared stats.
This is not needed anymore as dpdk lib provides rte_eth_dev_reset().
Change-Id: I78076e689aac7ca70836ce688dfa8e704f64cd84
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/plugins/dpdk/device/dpdk.h')
-rw-r--r-- | src/plugins/dpdk/device/dpdk.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/dpdk/device/dpdk.h b/src/plugins/dpdk/device/dpdk.h index a1c522490ab..0ec4ec3f28b 100644 --- a/src/plugins/dpdk/device/dpdk.h +++ b/src/plugins/dpdk/device/dpdk.h @@ -246,7 +246,6 @@ typedef struct struct rte_eth_stats stats; struct rte_eth_stats last_stats; - struct rte_eth_stats last_cleared_stats; struct rte_eth_xstat *xstats; f64 time_last_stats_update; dpdk_port_type_t port_type; |