mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 21:51:40 +00:00
arch/tile: Do not use GFP_KERNEL for dma_alloc_coherent().
Feedback from fujita.tomonori@lab.ntt.co.jp. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
This commit is contained in:
parent
867e359b97
commit
482e6f8466
@ -35,8 +35,7 @@ void *dma_alloc_coherent(struct device *dev,
|
||||
struct page *pg;
|
||||
dma_addr_t addr;
|
||||
|
||||
/* Set GFP_KERNEL to ensure we have memory with a kernel VA. */
|
||||
gfp |= GFP_KERNEL | __GFP_ZERO;
|
||||
gfp |= __GFP_ZERO;
|
||||
|
||||
/*
|
||||
* By forcing NUMA node 0 for 32-bit masks we ensure that the
|
||||
|
Loading…
Reference in New Issue
Block a user