group->domain should only be set once all the device's drivers have
had their ops->attach_dev() called. iommu_group_alloc_default_domain()
doesn't do this, so it shouldn't set the value.
The previous patches organized things so that each caller of
iommu_group_alloc_default_domain() follows up with calling
__iommu_group_set_domain_internal() that does set the group->domain.
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/11-v5-1b99ae392328+44574-iommu_err_unwind_jgg@nvidia.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
                 * checked.
                 */
                iommu_alloc_default_domain(group, dev);
-               group->domain = NULL;
                if (group->default_domain) {
                        iommu_create_device_direct_mappings(group, dev);
                        ret = __iommu_group_set_domain(group,
                return -ENOMEM;
 
        group->default_domain = dom;
-       if (!group->domain)
-               group->domain = dom;
        return 0;
 }
 
 
                iommu_group_create_direct_mappings(group);
 
-               group->domain = NULL;
                ret = __iommu_group_set_domain(group, group->default_domain);
 
                mutex_unlock(&group->mutex);