From: Joerg Roedel <jroedel@suse.de>
Date: Tue, 9 Dec 2014 12:56:45 +0100
Subject: iommu/vt-d: Fix dmar_domain leak in iommu_attach_device
Git-commit: 62c22167dd70b730f61c2b88f950e98154a87980
Patch-mainline: v3.19-rc4
References: bsc#920960

Since commit 1196c2f a domain is only destroyed in the
notifier path if it is hot-unplugged. This caused a
domain leakage in iommu_attach_device when a driver was
unbound from the device and bound to VFIO. In this case the
device is attached to a new domain and unlinked from the old
domain. At this point nothing points to the old domain
anymore and its memory is leaked.
Fix this by explicitly freeing the old domain in
iommu_attach_domain.

Fixes: 1196c2f (iommu/vt-d: Fix dmar_domain leak in iommu_attach_device)
Cc: stable@vger.kernel.org # v3.18
Tested-by: Jerry Hoemann <jerry.hoemann@hp.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
---
 drivers/pci/intel-iommu.c | 4 ++++
 1 file changed, 4 insertions(+)

Index: linux-3.0-SLE11-SP4/drivers/pci/intel-iommu.c
===================================================================
--- linux-3.0-SLE11-SP4.orig/drivers/pci/intel-iommu.c
+++ linux-3.0-SLE11-SP4/drivers/pci/intel-iommu.c
@@ -3940,6 +3940,11 @@ static int intel_iommu_attach_device(str
 				domain_remove_one_dev_info(old_domain, pdev);
 			else
 				domain_remove_dev_info(old_domain);
+
+			if (!(dmar_domain->flags & DOMAIN_FLAG_VIRTUAL_MACHINE) &&
+			    !(dmar_domain->flags & DOMAIN_FLAG_STATIC_IDENTITY) &&
+			    list_empty(&old_domain->devices))
+				domain_exit(old_domain);
 		}
 	}
 
