diff options
author | Damjan Marion <damarion@cisco.com> | 2017-04-05 12:28:38 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-04-11 16:26:11 +0000 |
commit | 3a7956383420a1d2f5f28b5bd3d3b3f5dda0420d (patch) | |
tree | 88b0ba24635a6d100faee5de26f15a84c2cdd27d /src/plugins/dpdk/device/device.c | |
parent | 361abefcf86abeafc02a16d2a73e00409af5e66a (diff) |
dpdk: use common interface placement infra
This pathch deprecates "show dpdk placement" and
"set dpdk placement" CLI commands.
Change-Id: I4e052ec3e8b8e6c54b4816e1e689e5b7a24892db
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/dpdk/device/device.c')
-rw-r--r-- | src/plugins/dpdk/device/device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/dpdk/device/device.c b/src/plugins/dpdk/device/device.c index 91661246ebc..e84d524f720 100644 --- a/src/plugins/dpdk/device/device.c +++ b/src/plugins/dpdk/device/device.c @@ -301,7 +301,7 @@ static_always_inline u32 node_index; node_index = vec_elt_at_index (im->hw_interfaces, - xd->vlib_hw_if_index)->tx_node_index; + xd->hw_if_index)->tx_node_index; vlib_error_count (vm, node_index, DPDK_TX_FUNC_ERROR_BAD_RETVAL, 1); clib_warning ("rte_eth_tx_burst[%d]: error %d", xd->device_index, @@ -658,7 +658,7 @@ dpdk_interface_admin_up_down (vnet_main_t * vnm, u32 hw_if_index, u32 flags) xd->flags &= ~DPDK_DEVICE_FLAG_ADMIN_UP; rte_eth_allmulticast_disable (xd->device_index); - vnet_hw_interface_set_flags (vnm, xd->vlib_hw_if_index, 0); + vnet_hw_interface_set_flags (vnm, xd->hw_if_index, 0); rte_eth_dev_stop (xd->device_index); /* For bonded interface, stop slave links */ |