net/bnxt: free memory in close operation
This patch adds code to free all resources except the one corresponding to HWRM, which are required to notify the HWRM that the driver is unloaded (these are freed in uninit()). Signed-off-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Signed-off-by: Stephen Hurd <stephen.hurd@broadcom.com> Reviewed-by: David Christensen <david.christensen@broadcom.com>
This commit is contained in:
parent
1b48824135
commit
8930749513
@ -62,14 +62,6 @@ static struct rte_pci_id bnxt_pci_id_map[] = {
|
||||
{.device_id = 0},
|
||||
};
|
||||
|
||||
static void bnxt_dev_close_op(struct rte_eth_dev *eth_dev)
|
||||
{
|
||||
struct bnxt *bp = (struct bnxt *)eth_dev->data->dev_private;
|
||||
|
||||
rte_free(eth_dev->data->mac_addrs);
|
||||
bnxt_free_hwrm_resources(bp);
|
||||
}
|
||||
|
||||
/***********************/
|
||||
|
||||
/*
|
||||
@ -388,6 +380,16 @@ error:
|
||||
return rc;
|
||||
}
|
||||
|
||||
static void bnxt_dev_close_op(struct rte_eth_dev *eth_dev)
|
||||
{
|
||||
struct bnxt *bp = (struct bnxt *)eth_dev->data->dev_private;
|
||||
|
||||
bnxt_free_tx_mbufs(bp);
|
||||
bnxt_free_rx_mbufs(bp);
|
||||
bnxt_free_mem(bp);
|
||||
rte_free(eth_dev->data->mac_addrs);
|
||||
}
|
||||
|
||||
/* Unload the driver, release resources */
|
||||
static void bnxt_dev_stop_op(struct rte_eth_dev *eth_dev)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user