Commit 482e6f84 authored by Chris Metcalf's avatar Chris Metcalf

arch/tile: Do not use GFP_KERNEL for dma_alloc_coherent().

Feedback from fujita.tomonori@lab.ntt.co.jp.
Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent 867e359b
...@@ -35,8 +35,7 @@ void *dma_alloc_coherent(struct device *dev, ...@@ -35,8 +35,7 @@ void *dma_alloc_coherent(struct device *dev,
struct page *pg; struct page *pg;
dma_addr_t addr; dma_addr_t addr;
/* Set GFP_KERNEL to ensure we have memory with a kernel VA. */ gfp |= __GFP_ZERO;
gfp |= GFP_KERNEL | __GFP_ZERO;
/* /*
* By forcing NUMA node 0 for 32-bit masks we ensure that the * By forcing NUMA node 0 for 32-bit masks we ensure that the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment