net/mlx5: release port on close
With the introduction of representors several eth devices are using the same rte device (e.g. a PCI bus). It is therefore required to release the eth device resources during an eth device close operation rather than during an rte device removal (detach) operation. In current version many PMDs are still releasing the eth device as part of the rte device removal. In order to allow a smooth transition for all PMDs to behave correctly an ethdev flag RTE_ETH_DEV_CLOSE_REMOVE is used. When this flag is set it indicates to rte_eth_dev_close() to call rte_eth_dev_release_port(), so the port is freed during the close operation. Signed-off-by: Ophir Munk <ophirmu@mellanox.com> Acked-by: Shahaf Shuler <shahafs@mellanox.com>
This commit is contained in:
parent
206254b7dc
commit
42603bbdb5
@ -337,6 +337,17 @@ mlx5_dev_close(struct rte_eth_dev *dev)
|
||||
}
|
||||
memset(priv, 0, sizeof(*priv));
|
||||
priv->domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
|
||||
/*
|
||||
* flag to rte_eth_dev_close() that it should release the port resources
|
||||
* (calling rte_eth_dev_release_port()) in addition to closing it.
|
||||
*/
|
||||
dev->data->dev_flags |= RTE_ETH_DEV_CLOSE_REMOVE;
|
||||
/*
|
||||
* Reset mac_addrs to NULL such that it is not freed as part of
|
||||
* rte_eth_dev_release_port(). mac_addrs is part of dev_private so
|
||||
* it is freed when dev_private is freed.
|
||||
*/
|
||||
dev->data->mac_addrs = NULL;
|
||||
}
|
||||
|
||||
const struct eth_dev_ops mlx5_dev_ops = {
|
||||
|
Loading…
Reference in New Issue
Block a user