]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commitdiff
parisc: always use flush_kernel_dcache_range for DMA cache maintainance
authorChristoph Hellwig <hch@lst.de>
Tue, 19 Jun 2018 07:04:54 +0000 (09:04 +0200)
committerHelge Deller <deller@gmx.de>
Mon, 13 Aug 2018 07:30:23 +0000 (09:30 +0200)
Current the S/G list based DMA ops use flush_kernel_vmap_range which
contains a few UP optimizations, while the rest of the DMA operations
uses flush_kernel_dcache_range.  The single vs sg operations are supposed
to have the same effect, so they should use the same routines.  Use
the more conservation version for now, but if people more familiar with
parisc think the vmap version is generally fine for DMA we should switch
all interfaces over to it.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Helge Deller <deller@gmx.de>
arch/parisc/kernel/pci-dma.c

index d34cd6d347175a50cd44043334ea0833e27b6e87..1f85ca2c0c9ec36cd21acfb0d2c9818ab406418f 100644 (file)
@@ -537,7 +537,7 @@ static void pa11_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
        /* once we do combining we'll need to use phys_to_virt(sg_dma_address(sglist)) */
 
        for_each_sg(sglist, sg, nents, i)
-               flush_kernel_vmap_range(sg_virt(sg), sg->length);
+               flush_kernel_dcache_range(sg_virt(sg), sg->length);
 }
 
 static void pa11_dma_sync_single_for_cpu(struct device *dev,
@@ -568,7 +568,7 @@ static void pa11_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sgl
        /* once we do combining we'll need to use phys_to_virt(sg_dma_address(sglist)) */
 
        for_each_sg(sglist, sg, nents, i)
-               flush_kernel_vmap_range(sg_virt(sg), sg->length);
+               flush_kernel_dcache_range(sg_virt(sg), sg->length);
 }
 
 static void pa11_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sglist, int nents, enum dma_data_direction direction)
@@ -579,7 +579,7 @@ static void pa11_dma_sync_sg_for_device(struct device *dev, struct scatterlist *
        /* once we do combining we'll need to use phys_to_virt(sg_dma_address(sglist)) */
 
        for_each_sg(sglist, sg, nents, i)
-               flush_kernel_vmap_range(sg_virt(sg), sg->length);
+               flush_kernel_dcache_range(sg_virt(sg), sg->length);
 }
 
 static void pa11_dma_cache_sync(struct device *dev, void *vaddr, size_t size,