Commit b8bed50f authored by Pan Bian's avatar Pan Bian Committed by Kleber Sacilotto de Souza

iommu/vt-d: Use memunmap to free memremap

BugLink: https://bugs.launchpad.net/bugs/1811077

[ Upstream commit 829383e1 ]

memunmap() should be used to free the return of memremap(), not
iounmap().

Fixes: dfddb969 ('iommu/vt-d: Switch from ioremap_cache to memremap')
Signed-off-by: default avatarPan Bian <bianpan2016@163.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarJuerg Haefliger <juergh@canonical.com>
Signed-off-by: default avatarKleber Sacilotto de Souza <kleber.souza@canonical.com>
parent 11cbe9b9
...@@ -2977,7 +2977,7 @@ static int copy_context_table(struct intel_iommu *iommu, ...@@ -2977,7 +2977,7 @@ static int copy_context_table(struct intel_iommu *iommu,
} }
if (old_ce) if (old_ce)
iounmap(old_ce); memunmap(old_ce);
ret = 0; ret = 0;
if (devfn < 0x80) if (devfn < 0x80)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment