diff options
author | Christoph Hellwig <hch@lst.de> | 2022-02-26 16:40:21 +0100 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2022-03-03 12:00:57 +0100 |
commit | f5ff79fddf0efecca538046b5cc20fb3ded2ec4f (patch) | |
tree | 865b9157a52b891d906b279721ac2df29d9065ff /arch/arm | |
parent | media: v4l2-pci-skeleton: Remove usage of the deprecated "pci-dma-compat.h" API (diff) | |
download | linux-f5ff79fddf0efecca538046b5cc20fb3ded2ec4f.tar.xz linux-f5ff79fddf0efecca538046b5cc20fb3ded2ec4f.zip |
dma-mapping: remove CONFIG_DMA_REMAP
CONFIG_DMA_REMAP is used to build a few helpers around the core
vmalloc code, and to use them in case there is a highmem page in
dma-direct, and to make dma coherent allocations be able to use
non-contiguous pages allocations for DMA allocations in the dma-iommu
layer.
Right now it needs to be explicitly selected by architectures, and
is only done so by architectures that require remapping to deal
with devices that are not DMA coherent. Make it unconditional for
builds with CONFIG_MMU as it is very little extra code, but makes
it much more likely that large DMA allocations succeed on x86.
This fixes hot plugging a NVMe thunderbolt SSD for me, which tries
to allocate a 1MB buffer that is otherwise hard to obtain due to
memory fragmentation on a heavily used laptop.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index fabe39169b12..11fbf66ef8f8 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -47,7 +47,7 @@ config ARM select DMA_DECLARE_COHERENT select DMA_GLOBAL_POOL if !MMU select DMA_OPS - select DMA_REMAP if MMU + select DMA_NONCOHERENT_MMAP if MMU select EDAC_SUPPORT select EDAC_ATOMIC_SCRUB select GENERIC_ALLOCATOR |