summaryrefslogtreecommitdiffstats
path: root/lib/dma-direct.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2018-02-02 09:21:07 +0100
committerChristoph Hellwig <hch@lst.de>2018-02-12 15:59:06 +0000
commitf25e6f6b4eae7e25e92e91a570cae84bf83e751a (patch)
tree8a80e0c400c66ca03be6e24080b970a8056630f6 /lib/dma-direct.c
parent9d37c094dacda531ac3e529dd4dd139e3c0b7811 (diff)
downloadlinux-0-day-f25e6f6b4eae7e25e92e91a570cae84bf83e751a.tar.gz
linux-0-day-f25e6f6b4eae7e25e92e91a570cae84bf83e751a.tar.xz
dma-direct: mark as is_phys
Various PCI_DMA_BUS_IS_PHYS implementations rely on this flag to make proper decisions for block and networking addressability. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'lib/dma-direct.c')
-rw-r--r--lib/dma-direct.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dma-direct.c b/lib/dma-direct.c
index 40b1f92f2214e..fdc733cf9e30a 100644
--- a/lib/dma-direct.c
+++ b/lib/dma-direct.c
@@ -152,5 +152,6 @@ const struct dma_map_ops dma_direct_ops = {
.map_sg = dma_direct_map_sg,
.dma_supported = dma_direct_supported,
.mapping_error = dma_direct_mapping_error,
+ .is_phys = 1,
};
EXPORT_SYMBOL(dma_direct_ops);