From: Baoquan He Date: Thu, 15 Sep 2016 08:50:52 +0000 (+0800) Subject: iommu/amd: Free domain id when free a domain of struct dma_ops_domain X-Git-Tag: v4.14-rc1~2291^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c3db901c54466a9c135d1e6e95fec452e8a42666;p=platform%2Fkernel%2Flinux-rpi.git iommu/amd: Free domain id when free a domain of struct dma_ops_domain The current code missed freeing domain id when free a domain of struct dma_ops_domain. Signed-off-by: Baoquan He Fixes: ec487d1a110a ('x86, AMD IOMMU: add domain allocation and deallocation functions') Signed-off-by: Joerg Roedel --- diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c index 897940c..b5b117b 100644 --- a/drivers/iommu/amd_iommu.c +++ b/drivers/iommu/amd_iommu.c @@ -1723,6 +1723,9 @@ static void dma_ops_domain_free(struct dma_ops_domain *dom) free_pagetable(&dom->domain); + if (dom->domain.id) + domain_id_free(dom->domain.id); + kfree(dom); }