mirror of https://gitee.com/openkylin/linux.git
[SCSI] fnic: fix memory leak
Fix memory leak arising due to incorrect freeing of allocated memory for vnic stats when unregistering a vnic. Signed-off-by: Abhijeet Joglekar <abjoglek@cisco.com> Signed-off-by: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
parent
e4a9a98289
commit
c954f8aed4
|
@ -654,7 +654,7 @@ void vnic_dev_unregister(struct vnic_dev *vdev)
|
||||||
vdev->linkstatus_pa);
|
vdev->linkstatus_pa);
|
||||||
if (vdev->stats)
|
if (vdev->stats)
|
||||||
pci_free_consistent(vdev->pdev,
|
pci_free_consistent(vdev->pdev,
|
||||||
sizeof(struct vnic_dev),
|
sizeof(struct vnic_stats),
|
||||||
vdev->stats, vdev->stats_pa);
|
vdev->stats, vdev->stats_pa);
|
||||||
if (vdev->fw_info)
|
if (vdev->fw_info)
|
||||||
pci_free_consistent(vdev->pdev,
|
pci_free_consistent(vdev->pdev,
|
||||||
|
|
Loading…
Reference in New Issue