]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
iommu/vt-d: Remove deferred_attach_domain()
authorJoerg Roedel <jroedel@suse.de>
Mon, 17 Feb 2020 16:27:44 +0000 (17:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Feb 2020 16:23:26 +0000 (17:23 +0100)
commit 96d170f3b1a607612caf3618c534d5c64fc2d61b upstream.

The function is now only a wrapper around find_domain(). Remove the
function and call find_domain() directly at the call-sites.

Fixes: 1ee0186b9a12 ("iommu/vt-d: Refactor find_domain() helper")
Cc: stable@vger.kernel.org # v5.5
Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com>
Acked-by: Lu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/iommu/intel-iommu.c

index cf06027605258c3bcc8a8eb756e9b4a578039dca..820d2fd48abc3e388caa3a2a96d66fa70005a17f 100644 (file)
@@ -2450,11 +2450,6 @@ static void do_deferred_attach(struct device *dev)
                intel_iommu_attach_device(domain, dev);
 }
 
-static struct dmar_domain *deferred_attach_domain(struct device *dev)
-{
-       return find_domain(dev);
-}
-
 static inline struct device_domain_info *
 dmar_search_domain_by_dev_info(int segment, int bus, int devfn)
 {
@@ -3526,7 +3521,7 @@ static dma_addr_t __intel_map_single(struct device *dev, phys_addr_t paddr,
 
        BUG_ON(dir == DMA_NONE);
 
-       domain = deferred_attach_domain(dev);
+       domain = find_domain(dev);
        if (!domain)
                return DMA_MAPPING_ERROR;
 
@@ -3746,7 +3741,7 @@ static int intel_map_sg(struct device *dev, struct scatterlist *sglist, int nele
        if (!iommu_need_mapping(dev))
                return dma_direct_map_sg(dev, sglist, nelems, dir, attrs);
 
-       domain = deferred_attach_domain(dev);
+       domain = find_domain(dev);
        if (!domain)
                return 0;
 
@@ -3844,7 +3839,7 @@ bounce_map_single(struct device *dev, phys_addr_t paddr, size_t size,
        if (unlikely(attach_deferred(dev)))
                do_deferred_attach(dev);
 
-       domain = deferred_attach_domain(dev);
+       domain = find_domain(dev);
 
        if (WARN_ON(dir == DMA_NONE || !domain))
                return DMA_MAPPING_ERROR;