mlx4_core: fix memory leak at multi_func_cleanup
Perform cleanup also in non-master flow. The VFs use communication channel as well. Signed-off-by: Eugenia Emantayev <eugenia@mellanox.co.il> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Родитель
b530b1930b
Коммит
f08ad06c05
|
@ -1616,13 +1616,13 @@ void mlx4_multi_func_cleanup(struct mlx4_dev *dev)
|
||||||
kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
|
kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
|
||||||
}
|
}
|
||||||
kfree(priv->mfunc.master.slave_state);
|
kfree(priv->mfunc.master.slave_state);
|
||||||
|
}
|
||||||
|
|
||||||
iounmap(priv->mfunc.comm);
|
iounmap(priv->mfunc.comm);
|
||||||
dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
|
dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
|
||||||
priv->mfunc.vhcr,
|
priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
|
||||||
priv->mfunc.vhcr_dma);
|
|
||||||
priv->mfunc.vhcr = NULL;
|
priv->mfunc.vhcr = NULL;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void mlx4_cmd_cleanup(struct mlx4_dev *dev)
|
void mlx4_cmd_cleanup(struct mlx4_dev *dev)
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче