]> Git Repo - linux.git/commitdiff
iommu/vt-d: Fix clearing real DMA device's scalable-mode context entries
authorLu Baolu <[email protected]>
Mon, 12 Jul 2021 07:17:12 +0000 (15:17 +0800)
committerJoerg Roedel <[email protected]>
Wed, 14 Jul 2021 10:58:07 +0000 (12:58 +0200)
The commit 2b0140c69637e ("iommu/vt-d: Use pci_real_dma_dev() for mapping")
fixes an issue of "sub-device is removed where the context entry is cleared
for all aliases". But this commit didn't consider the PASID entry and PASID
table in VT-d scalable mode. This fix increases the coverage of scalable
mode.

Suggested-by: Sanjay Kumar <[email protected]>
Fixes: 8038bdb855331 ("iommu/vt-d: Only clear real DMA device's context entries")
Fixes: 2b0140c69637e ("iommu/vt-d: Use pci_real_dma_dev() for mapping")
Cc: [email protected] # v5.6+
Cc: Jon Derrick <[email protected]>
Signed-off-by: Lu Baolu <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Joerg Roedel <[email protected]>
drivers/iommu/intel/iommu.c

index 57270290d62b2f109813db0143c33222e99c5277..dd22fc7d517645f76c3b11d405847902c9938dd4 100644 (file)
@@ -4472,14 +4472,13 @@ static void __dmar_remove_one_dev_info(struct device_domain_info *info)
        iommu = info->iommu;
        domain = info->domain;
 
-       if (info->dev) {
+       if (info->dev && !dev_is_real_dma_subdevice(info->dev)) {
                if (dev_is_pci(info->dev) && sm_supported(iommu))
                        intel_pasid_tear_down_entry(iommu, info->dev,
                                        PASID_RID2PASID, false);
 
                iommu_disable_dev_iotlb(info);
-               if (!dev_is_real_dma_subdevice(info->dev))
-                       domain_context_clear(info);
+               domain_context_clear(info);
                intel_pasid_free_table(info->dev);
        }
 
This page took 0.067773 seconds and 4 git commands to generate.