[dpdk-dev,04/25] ethdev: Add rte_eth_dev_free to free specified device
Commit Message
This patch adds rte_eth_dev_free(). The function is used for changing a
attached status of the device that has specified name.
Signed-off-by: Tetsuya Mukawa <mukawa@igel.co.jp>
---
lib/librte_ether/rte_ethdev.c | 17 +++++++++++++++++
lib/librte_ether/rte_ethdev.h | 11 +++++++++++
2 files changed, 28 insertions(+)
@@ -249,6 +249,23 @@ rte_eth_dev_allocate(const char *name)
return eth_dev;
}
+struct rte_eth_dev *
+rte_eth_dev_free(const char *name)
+{
+ struct rte_eth_dev *eth_dev;
+
+ eth_dev = rte_eth_dev_allocated(name);
+ if (eth_dev == NULL) {
+ PMD_DEBUG_TRACE("Ethernet Device with name %s doesn't exist!\n",
+ name);
+ return NULL;
+ }
+
+ eth_dev->attached = 0;
+ nb_ports--;
+ return eth_dev;
+}
+
static int
rte_eth_dev_init(struct rte_pci_driver *pci_drv,
struct rte_pci_device *pci_dev)
@@ -1649,6 +1649,17 @@ extern uint8_t rte_eth_dev_count(void);
*/
struct rte_eth_dev *rte_eth_dev_allocate(const char *name);
+/**
+ * Function for internal use by dummy drivers primarily, e.g. ring-based
+ * driver.
+ * Free the specified ethdev and returns the pointer to that slot.
+ *
+ * @param name Unique identifier name for each Ethernet device
+ * @return
+ * - Slot in the rte_dev_devices array for the freed device;
+ */
+struct rte_eth_dev *rte_eth_dev_free(const char *name);
+
struct eth_driver;
/**
* @internal