summaryrefslogtreecommitdiffstats
path: root/drivers/iommu
diff options
context:
space:
mode:
authorPan Bian2018-11-21 10:53:47 +0100
committerGreg Kroah-Hartman2018-12-13 09:16:14 +0100
commitd1862827f41a79560bb98ba91e6b4be8f8c726f9 (patch)
treec2ca5b0092e5b94f6c8344c879ed0d51ec402a7d /drivers/iommu
parentnet: faraday: ftmac100: remove netif_running(netdev) check before disabling i... (diff)
downloadkernel-qcow2-linux-d1862827f41a79560bb98ba91e6b4be8f8c726f9.tar.gz
kernel-qcow2-linux-d1862827f41a79560bb98ba91e6b4be8f8c726f9.tar.xz
kernel-qcow2-linux-d1862827f41a79560bb98ba91e6b4be8f8c726f9.zip
iommu/vt-d: Use memunmap to free memremap
[ Upstream commit 829383e183728dec7ed9150b949cd6de64127809 ] memunmap() should be used to free the return of memremap(), not iounmap(). Fixes: dfddb969edf0 ('iommu/vt-d: Switch from ioremap_cache to memremap') Signed-off-by: Pan Bian <bianpan2016@163.com> Signed-off-by: Joerg Roedel <jroedel@suse.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/iommu')
-rw-r--r--drivers/iommu/intel-iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
index bedc801b06a0..a76c47f20587 100644
--- a/drivers/iommu/intel-iommu.c
+++ b/drivers/iommu/intel-iommu.c
@@ -3100,7 +3100,7 @@ static int copy_context_table(struct intel_iommu *iommu,
}
if (old_ce)
- iounmap(old_ce);
+ memunmap(old_ce);
ret = 0;
if (devfn < 0x80)