mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
iommu/vt-d: Use memunmap to free memremap
[ Upstream commit829383e183] memunmap() should be used to free the return of memremap(), not iounmap(). Fixes:dfddb969ed('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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d0decb8d7c
commit
84f49bb07f
@@ -3086,7 +3086,7 @@ static int copy_context_table(struct intel_iommu *iommu,
|
||||
}
|
||||
|
||||
if (old_ce)
|
||||
iounmap(old_ce);
|
||||
memunmap(old_ce);
|
||||
|
||||
ret = 0;
|
||||
if (devfn < 0x80)
|
||||
|
||||
Reference in New Issue
Block a user