From: Matan Azrad <ma...@mellanox.com> In the port detach function, use the function to free an ethdev port instead of changing its state directly.
Signed-off-by: Matan Azrad <ma...@mellanox.com> Acked-by: Thomas Monjalon <tho...@monjalon.net> --- v2: no change v3: no change v4: no change --- lib/librte_ether/rte_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 7b440fc6b..8700f6f43 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -436,7 +436,7 @@ rte_eth_dev_detach(uint16_t port_id, char *name) if (ret < 0) goto err; - rte_eth_devices[port_id].state = RTE_ETH_DEV_UNUSED; + rte_eth_dev_release_port(&rte_eth_devices[port_id]); return 0; err: -- 2.15.1