mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
iommu/amd: Init unity mappings only for dma_ops domains
commitb548e786ceupstream. The default domain for a device might also be identity-mapped. In this case the kernel would crash when unity mappings are defined for the device. Fix that by making sure the domain is a dma_ops domain. Fixes:0bb6e243d7('iommu/amd: Support IOMMU_DOMAIN_DMA type allocation') Signed-off-by: Joerg Roedel <jroedel@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
51e94ff8d9
commit
df8eaed225
@@ -352,9 +352,11 @@ static void init_iommu_group(struct device *dev)
|
||||
if (!domain)
|
||||
goto out;
|
||||
|
||||
dma_domain = to_pdomain(domain)->priv;
|
||||
if (to_pdomain(domain)->flags == PD_DMA_OPS_MASK) {
|
||||
dma_domain = to_pdomain(domain)->priv;
|
||||
init_unity_mappings_for_device(dev, dma_domain);
|
||||
}
|
||||
|
||||
init_unity_mappings_for_device(dev, dma_domain);
|
||||
out:
|
||||
iommu_group_put(group);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user