From 19b4a4854e3f50855e68c3a51cd7ae44a8210f24 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 10 Sep 2018 13:55:46 +0200 Subject: dpdk: clean interface link information on admin down / stop Change-Id: Ie68814c8afc6cd67eb75da0b95dffa7b404cb7ba Signed-off-by: Damjan Marion --- src/plugins/dpdk/device/common.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/dpdk/device/common.c') 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) -- cgit 1.2.3-korg