1
0
Fork 0

iommu/vt-d: Fix memory leak in dmar_insert_one_dev_info()

We are returning NULL if we are not able to attach the iommu
to the domain but while returning we missed freeing info.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
steinar/wifi_calib_4_9_kernel
Sudip Mukherjee 2015-09-18 16:27:07 +05:30 committed by Joerg Roedel
parent 9ffecb1028
commit 499f3aa432
1 changed files with 1 additions and 0 deletions

View File

@ -2301,6 +2301,7 @@ static struct dmar_domain *dmar_insert_one_dev_info(struct intel_iommu *iommu,
if (ret) {
spin_unlock_irqrestore(&device_domain_lock, flags);
free_devinfo_mem(info);
return NULL;
}