Commit 7a6111b8 authored by Baoquan He's avatar Baoquan He Committed by Willy Tarreau

iommu/amd: Free domain id when free a domain of struct dma_ops_domain

commit c3db901c upstream.

The current code missed freeing domain id when free a domain of
struct dma_ops_domain.
Signed-off-by: default avatarBaoquan He <bhe@redhat.com>
Fixes: ec487d1a ('x86, AMD IOMMU: add domain allocation and deallocation functions')
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
Signed-off-by: default avatarWilly Tarreau <w@1wt.eu>
parent 56eb0df4
......@@ -1991,6 +1991,9 @@ static void dma_ops_domain_free(struct dma_ops_domain *dom)
kfree(dom->aperture[i]);
}
if (dom->domain.id)
domain_id_free(dom->domain.id);
kfree(dom);
}
......
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