diff options
author | Damjan Marion <damarion@cisco.com> | 2018-04-16 00:18:34 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-04-25 15:36:04 +0000 |
commit | c576622667199db906efa3110ad25e552b3a0890 (patch) | |
tree | d6ffda4bf9b096f9ee1759d57e79d36dc51f27d0 /src/plugins/dpdk/device/dpdk_priv.h | |
parent | 4a6d02337b9058182172f19df894ad2e18e6ac68 (diff) |
dpdk: complete rework of the dpdk-input node
Change-Id: If174d189de40e6f9ffae99997bba93a2519d9fda
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dpdk/device/dpdk_priv.h')
-rw-r--r-- | src/plugins/dpdk/device/dpdk_priv.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/dpdk/device/dpdk_priv.h b/src/plugins/dpdk/device/dpdk_priv.h index 7c4091c1be5..cbc116e8dc2 100644 --- a/src/plugins/dpdk/device/dpdk_priv.h +++ b/src/plugins/dpdk/device/dpdk_priv.h @@ -106,7 +106,7 @@ dpdk_update_counters (dpdk_device_t * xd, f64 now) cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, VNET_INTERFACE_COUNTER_RX_NO_BUF); - vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index, + vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index, xd->stats.rx_nombuf - xd->last_stats.rx_nombuf); } @@ -117,7 +117,7 @@ dpdk_update_counters (dpdk_device_t * xd, f64 now) cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, VNET_INTERFACE_COUNTER_RX_MISS); - vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index, + vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index, xd->stats.imissed - xd->last_stats.imissed); } @@ -129,7 +129,7 @@ dpdk_update_counters (dpdk_device_t * xd, f64 now) cm = vec_elt_at_index (vnm->interface_main.sw_if_counters, VNET_INTERFACE_COUNTER_RX_ERROR); - vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index, + vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index, rxerrors - last_rxerrors); } |