提交 b8d9905d 编写于 作者: J Joerg Roedel

AMD IOMMU: __unmap_single: check for bad_dma_address instead of 0

Impact: minor fix
Signed-off-by: NJoerg Roedel <joerg.roedel@amd.com>
上级 8ad909c4
......@@ -983,7 +983,8 @@ static void __unmap_single(struct amd_iommu *iommu,
dma_addr_t i, start;
unsigned int pages;
if ((dma_addr == 0) || (dma_addr + size > dma_dom->aperture_size))
if ((dma_addr == bad_dma_address) ||
(dma_addr + size > dma_dom->aperture_size))
return;
pages = iommu_num_pages(dma_addr, size, PAGE_SIZE);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册