From: Pan Bian Date: Wed, 21 Nov 2018 09:53:47 +0000 (+0800) Subject: iommu/vt-d: Use memunmap to free memremap X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=829383e183728dec7ed9150b949cd6de64127809;p=openwrt%2Fstaging%2Fblogic.git iommu/vt-d: Use memunmap to free memremap 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 Signed-off-by: Joerg Roedel --- diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c index f3ccf025108b..41a4b8808802 100644 --- a/drivers/iommu/intel-iommu.c +++ b/drivers/iommu/intel-iommu.c @@ -3075,7 +3075,7 @@ static int copy_context_table(struct intel_iommu *iommu, } if (old_ce) - iounmap(old_ce); + memunmap(old_ce); ret = 0; if (devfn < 0x80)