dpdk: fix clear hw stats 94/19994/3
authorFilip Tehlar <ftehlar@cisco.com>
Tue, 4 Jun 2019 01:22:55 +0000 (01:22 +0000)
committerDamjan Marion <dmarion@me.com>
Thu, 6 Jun 2019 12:07:09 +0000 (12:07 +0000)
.. 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>
src/plugins/dpdk/device/device.c
src/plugins/dpdk/device/dpdk.h
src/plugins/dpdk/device/format.c

index 836357f..270abe1 100644 (file)
@@ -397,6 +397,7 @@ dpdk_clear_hw_interface_counters (u32 instance)
   dpdk_main_t *dm = &dpdk_main;
   dpdk_device_t *xd = vec_elt_at_index (dm->devices, instance);
 
+  rte_eth_stats_reset (xd->port_id);
   rte_eth_xstats_reset (xd->port_id);
 }
 
index a1c5224..0ec4ec3 100644 (file)
@@ -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;
index be2349d..7bba3eb 100644 (file)
@@ -646,11 +646,11 @@ format_dpdk_device (u8 * s, va_list * args)
   /* $$$ MIB counters  */
   {
 #define _(N, V)                                                        \
-    if ((xd->stats.V - xd->last_cleared_stats.V) != 0) {       \
+    if (xd->stats.V != 0) {                                    \
       s = format (s, "\n%U%-40U%16Lu",                         \
                   format_white_space, indent + 2,              \
                   format_c_identifier, #N,                     \
-                  xd->stats.V - xd->last_cleared_stats.V);     \
+                  xd->stats.V);                                \
     }                                                          \
 
     foreach_dpdk_counter