From: Damjan Marion Date: Mon, 10 Sep 2018 11:55:46 +0000 (+0200) Subject: dpdk: clean interface link information on admin down / stop X-Git-Tag: v18.10-rc1~228 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=19b4a4854e3f50855e68c3a51cd7ae44a8210f24;p=vpp.git dpdk: clean interface link information on admin down / stop Change-Id: Ie68814c8afc6cd67eb75da0b95dffa7b404cb7ba Signed-off-by: Damjan Marion --- 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)