]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
iommu: Tidy domain for iommu_setup_dma_ops()
authorNicolin Chen <nicolinc@nvidia.com>
Mon, 15 Dec 2025 21:42:17 +0000 (13:42 -0800)
committerJoerg Roedel <joerg.roedel@amd.com>
Sat, 10 Jan 2026 09:26:43 +0000 (10:26 +0100)
This function can only be called on the default_domain. Trivally pass it
in. In all three existing cases, the default domain was just attached to
the device.

This avoids iommu_setup_dma_ops() calling iommu_get_domain_for_dev() that
will be used by external callers.

Suggested-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Tested-by: Dheeraj Kumar Srivastava <dheerajkumar.srivastava@amd.com>
Signed-off-by: Nicolin Chen <nicolinc@nvidia.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
drivers/iommu/dma-iommu.c
drivers/iommu/dma-iommu.h
drivers/iommu/iommu.c

index c92088855450adb7ee13083806bc21ff53f2aad8..aeaf8fad985c3763ac63ae4511f44892d1341c20 100644 (file)
@@ -2097,10 +2097,8 @@ void dma_iova_destroy(struct device *dev, struct dma_iova_state *state,
 }
 EXPORT_SYMBOL_GPL(dma_iova_destroy);
 
-void iommu_setup_dma_ops(struct device *dev)
+void iommu_setup_dma_ops(struct device *dev, struct iommu_domain *domain)
 {
-       struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
-
        if (dev_is_pci(dev))
                dev->iommu->pci_32bit_workaround = !iommu_dma_forcedac;
 
index eca201c1f963940c0abc1fb506b690e35673c423..040d0025256324c22319b5234f409219f02cfde4 100644 (file)
@@ -9,7 +9,7 @@
 
 #ifdef CONFIG_IOMMU_DMA
 
-void iommu_setup_dma_ops(struct device *dev);
+void iommu_setup_dma_ops(struct device *dev, struct iommu_domain *domain);
 
 int iommu_get_dma_cookie(struct iommu_domain *domain);
 void iommu_put_dma_cookie(struct iommu_domain *domain);
@@ -26,7 +26,8 @@ extern bool iommu_dma_forcedac;
 
 #else /* CONFIG_IOMMU_DMA */
 
-static inline void iommu_setup_dma_ops(struct device *dev)
+static inline void iommu_setup_dma_ops(struct device *dev,
+                                      struct iommu_domain *domain)
 {
 }
 
index 170e522b5bda4504df8eb6e65961ee140b0158bc..1e322f87b17107907145c224c0e1eb2885d3ed32 100644 (file)
@@ -661,7 +661,7 @@ static int __iommu_probe_device(struct device *dev, struct list_head *group_list
        }
 
        if (group->default_domain)
-               iommu_setup_dma_ops(dev);
+               iommu_setup_dma_ops(dev, group->default_domain);
 
        mutex_unlock(&group->mutex);
 
@@ -1949,7 +1949,7 @@ static int bus_iommu_probe(const struct bus_type *bus)
                        return ret;
                }
                for_each_group_device(group, gdev)
-                       iommu_setup_dma_ops(gdev->dev);
+                       iommu_setup_dma_ops(gdev->dev, group->default_domain);
                mutex_unlock(&group->mutex);
 
                /*
@@ -3155,7 +3155,7 @@ static ssize_t iommu_group_store_type(struct iommu_group *group,
 
        /* Make sure dma_ops is appropriatley set */
        for_each_group_device(group, gdev)
-               iommu_setup_dma_ops(gdev->dev);
+               iommu_setup_dma_ops(gdev->dev, group->default_domain);
 
 out_unlock:
        mutex_unlock(&group->mutex);