Skip to content

Commit 2b3cd62

Browse files
Christoph Hellwigthomashvmw
authored andcommitted
drm/vmwgfx: fix the check when to use dma_alloc_coherent
Since Linux 4.21 we merged the swiotlb ops into the DMA direct ops, so they would always have a the sync_single methods. But late in the cicle we also removed the direct ops entirely, so we'd see NULL DMA ops. Switch vmw_dma_select_mode to only detect swiotlb presence using swiotlb_nr_tbl() instead. Fixes: 55897af ("dma-direct: merge swiotlb_dma_ops into the dma_direct code") Fixes: 356da6d ("dma-mapping: bypass indirect calls for dma-direct") Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com> Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
1 parent 9b5bf24 commit 2b3cd62

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

drivers/gpu/drm/vmwgfx/vmwgfx_drv.c

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,6 @@ static int vmw_dma_select_mode(struct vmw_private *dev_priv)
565565
[vmw_dma_alloc_coherent] = "Using coherent TTM pages.",
566566
[vmw_dma_map_populate] = "Keeping DMA mappings.",
567567
[vmw_dma_map_bind] = "Giving up DMA mappings early."};
568-
const struct dma_map_ops *dma_ops = get_dma_ops(dev_priv->dev->dev);
569568

570569
if (intel_iommu_enabled) {
571570
dev_priv->map_mode = vmw_dma_map_populate;
@@ -578,14 +577,12 @@ static int vmw_dma_select_mode(struct vmw_private *dev_priv)
578577
return 0;
579578
}
580579

581-
dev_priv->map_mode = vmw_dma_map_populate;
582-
583-
if (dma_ops && dma_ops->sync_single_for_cpu)
584-
dev_priv->map_mode = vmw_dma_alloc_coherent;
585580
#ifdef CONFIG_SWIOTLB
586-
if (swiotlb_nr_tbl() == 0)
587-
dev_priv->map_mode = vmw_dma_map_populate;
581+
if (swiotlb_nr_tbl())
582+
dev_priv->map_mode = vmw_dma_alloc_coherent;
583+
else
588584
#endif
585+
dev_priv->map_mode = vmw_dma_map_populate;
589586

590587
out_fixup:
591588
if (dev_priv->map_mode == vmw_dma_map_populate &&

0 commit comments

Comments
 (0)