diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-14 16:06:10 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-06-25 08:14:43 +0200 |
commit | 4b85faed211ccfbcc7f3adf1cd62f0b00d1a172b (patch) | |
tree | dcc65552dd34f276ac4e20104f2f981da996bdc6 /kernel | |
parent | 961729bfc73e698be19305834805592227bd09e3 (diff) | |
download | linux-stable-4b85faed211ccfbcc7f3adf1cd62f0b00d1a172b.tar.gz linux-stable-4b85faed211ccfbcc7f3adf1cd62f0b00d1a172b.tar.bz2 linux-stable-4b85faed211ccfbcc7f3adf1cd62f0b00d1a172b.zip |
dma-mapping: add a dma_alloc_need_uncached helper
Check if we need to allocate uncached memory for a device given the
allocation flags. Switch over the uncached segment check to this helper
to deal with architectures that do not support the dma_cache_sync
operation and thus should not returned cacheable memory for
DMA_ATTR_NON_CONSISTENT allocations.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/dma/direct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c index b67f0aa08aa3..c2893713bf80 100644 --- a/kernel/dma/direct.c +++ b/kernel/dma/direct.c @@ -160,7 +160,7 @@ void *dma_direct_alloc_pages(struct device *dev, size_t size, memset(ret, 0, size); if (IS_ENABLED(CONFIG_ARCH_HAS_UNCACHED_SEGMENT) && - !dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_NON_CONSISTENT)) { + dma_alloc_need_uncached(dev, attrs)) { arch_dma_prep_coherent(page, size); ret = uncached_kernel_address(ret); } @@ -182,7 +182,7 @@ void dma_direct_free_pages(struct device *dev, size_t size, void *cpu_addr, set_memory_encrypted((unsigned long)cpu_addr, 1 << page_order); if (IS_ENABLED(CONFIG_ARCH_HAS_UNCACHED_SEGMENT) && - !dev_is_dma_coherent(dev) && !(attrs & DMA_ATTR_NON_CONSISTENT)) + dma_alloc_need_uncached(dev, attrs)) cpu_addr = cached_kernel_address(cpu_addr); __dma_direct_free_pages(dev, size, virt_to_page(cpu_addr)); } |