iommu: Replace iommu_group_do_dma_first_attach with __iommu_device_set_domain
authorJason Gunthorpe <jgg@nvidia.com>
Thu, 11 May 2023 04:42:06 +0000 (01:42 -0300)
committerJoerg Roedel <jroedel@suse.de>
Tue, 23 May 2023 06:15:54 +0000 (08:15 +0200)
Since __iommu_device_set_domain() now knows how to handle deferred attach
we can just call it directly from the only call site.

Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Lu Baolu <baolu.lu@linux.intel.com>
Tested-by: Heiko Stuebner <heiko@sntech.de>
Tested-by: Niklas Schnelle <schnelle@linux.ibm.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/8-v5-1b99ae392328+44574-iommu_err_unwind_jgg@nvidia.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/iommu.c

index fa2b669ecf4baa14bf5fb63a228768e425c544b8..ea61a81c0006385cd1272cb028b3e13b275febde 100644 (file)
@@ -106,6 +106,10 @@ enum {
        IOMMU_SET_DOMAIN_MUST_SUCCEED = 1 << 0,
 };
 
+static int __iommu_device_set_domain(struct iommu_group *group,
+                                    struct device *dev,
+                                    struct iommu_domain *new_domain,
+                                    unsigned int flags);
 static int __iommu_group_set_domain_internal(struct iommu_group *group,
                                             struct iommu_domain *new_domain,
                                             unsigned int flags);
@@ -401,17 +405,6 @@ err_unlock:
        return ret;
 }
 
-static int iommu_group_do_dma_first_attach(struct device *dev, void *data)
-{
-       struct iommu_domain *domain = data;
-
-       lockdep_assert_held(&dev->iommu_group->mutex);
-
-       if (dev->iommu->attach_deferred)
-               return 0;
-       return __iommu_attach_device(domain, dev);
-}
-
 int iommu_probe_device(struct device *dev)
 {
        const struct iommu_ops *ops;
@@ -442,7 +435,7 @@ int iommu_probe_device(struct device *dev)
         * attach the default domain.
         */
        if (group->default_domain && !group->owner) {
-               ret = iommu_group_do_dma_first_attach(dev, group->default_domain);
+               ret = __iommu_device_set_domain(group, dev, group->domain, 0);
                if (ret) {
                        mutex_unlock(&group->mutex);
                        iommu_group_put(group);