diff options
author | Damjan Marion <damarion@cisco.com> | 2018-09-10 13:55:46 +0200 |
---|---|---|
committer | Marco Varlese <marco.varlese@suse.de> | 2018-09-10 21:45:42 +0000 |
commit | 19b4a4854e3f50855e68c3a51cd7ae44a8210f24 (patch) | |
tree | 33511c54048524b8f0748770e351fc6d3d99c94a /src | |
parent | 1606d3aa23394b58a888a90044d1b3a786fa9549 (diff) |
dpdk: clean interface link information on admin down / stop
Change-Id: Ie68814c8afc6cd67eb75da0b95dffa7b404cb7ba
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/dpdk/device/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/dpdk/device/common.c b/src/plugins/dpdk/device/common.c index 99dd1815bc0..af1108f3d1e 100644 --- a/src/plugins/dpdk/device/common.c +++ b/src/plugins/dpdk/device/common.c @@ -194,6 +194,7 @@ dpdk_device_stop (dpdk_device_t * xd) rte_eth_allmulticast_disable (xd->port_id); rte_eth_dev_stop (xd->port_id); + memset (&xd->link, 0, sizeof (struct rte_eth_link)); /* For bonded interface, stop slave links */ if (xd->pmd == VNET_DPDK_PMD_BOND) |