1
0
Fork 0

iommu/amd: Init unity mappings only for dma_ops domains

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')
Cc: stable@vger.kernel.org # v4.2+
Signed-off-by: Joerg Roedel <jroedel@suse.de>
hifive-unleashed-5.1
Joerg Roedel 2016-07-13 12:35:24 +02:00
parent cf7513e759
commit b548e786ce
1 changed files with 4 additions and 2 deletions

View File

@ -467,9 +467,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);
}