diff options
author | Christoph Hellwig <hch@lst.de> | 2019-08-03 12:42:15 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-08-29 17:43:33 +0300 |
commit | 8e3a68fb55e00e0760bd8023883e064f1f93c62d (patch) | |
tree | 534cbf26b705987972b800501afec405b9175533 /include/linux/dma-mapping.h | |
parent | 419e2f1838819e954071dfa1d1f820ab3386ada1 (diff) | |
download | linux-8e3a68fb55e00e0760bd8023883e064f1f93c62d.tar.xz |
dma-mapping: make dma_atomic_pool_init self-contained
The memory allocated for the atomic pool needs to have the same
mapping attributes that we use for remapping, so use
pgprot_dmacoherent instead of open coding it. Also deduct a
suitable zone to allocate the memory from based on the presence
of the DMA zones.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'include/linux/dma-mapping.h')
-rw-r--r-- | include/linux/dma-mapping.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index f7d1eea32c78..48ebe8295987 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h @@ -624,7 +624,6 @@ void *dma_common_pages_remap(struct page **pages, size_t size, const void *caller); void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags); -int __init dma_atomic_pool_init(gfp_t gfp, pgprot_t prot); bool dma_in_atomic_pool(void *start, size_t size); void *dma_alloc_from_pool(size_t size, struct page **ret_page, gfp_t flags); bool dma_free_from_pool(void *start, size_t size); |