diff options
author | Christoph Hellwig <hch@lst.de> | 2017-12-22 16:05:15 +0100 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-01-15 09:34:55 +0100 |
commit | 57bf5a8963f80fb3828c46c3e3a5b2dd790e09a7 (patch) | |
tree | 17ccc31f02cbc09c8a51c8b95acf50f0b62e366b /arch/m68k | |
parent | 205e1b7f51e4af2643eb1d61a6503e415cd1e014 (diff) | |
download | linux-57bf5a8963f80fb3828c46c3e3a5b2dd790e09a7.tar.bz2 |
dma-mapping: clear harmful GFP_* flags in common code
Lift the code from x86 so that we behave consistently. In the future we
should probably warn if any of these is set.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Jesper Nilsson <jesper.nilsson@axis.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> [m68k]
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/dma.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/m68k/kernel/dma.c b/arch/m68k/kernel/dma.c index 87ef73a93856..c01b9b8f97bf 100644 --- a/arch/m68k/kernel/dma.c +++ b/arch/m68k/kernel/dma.c @@ -76,8 +76,6 @@ static void *m68k_dma_alloc(struct device *dev, size_t size, dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs) { void *ret; - /* ignore region specifiers */ - gfp &= ~(__GFP_DMA | __GFP_HIGHMEM); if (dev == NULL || (*dev->dma_mask < 0xffffffff)) gfp |= GFP_DMA; |