ethdev: free detached port by the dedicated function
authorMatan Azrad <matan@mellanox.com>
Thu, 4 Jan 2018 16:01:10 +0000 (17:01 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 16 Jan 2018 17:47:49 +0000 (18:47 +0100)
In the port detach function, use the function to free an ethdev port
instead of changing its state directly.

Signed-off-by: Matan Azrad <matan@mellanox.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
lib/librte_ether/rte_ethdev.c

index 533bb5e..780b1d6 100644 (file)
@@ -408,7 +408,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: