aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Mason <clm@fb.com>2016-01-27 06:38:45 -0800
committerChris Mason <clm@fb.com>2016-01-27 07:05:49 -0800
commite1c0ebad3f77387c6684f8b7e86a4bbaca7577ac (patch)
tree8fb769c0025d0c144a3bf204ed064f1274963849
parentd32a4e34348869a273a01139112a13fc6870f003 (diff)
downloadlinux-btrfs-e1c0ebad3f77387c6684f8b7e86a4bbaca7577ac.tar.gz
btrfs: don't use GFP_HIGHMEM for free-space-tree bitmap kzalloc
This was copied incorrectly from the __vmalloc call. Signed-off-by: Chris Mason <clm@fb.com>
-rw-r--r--fs/btrfs/free-space-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/free-space-tree.c b/fs/btrfs/free-space-tree.c
index dfa8124effb84e..81a053d2966bb9 100644
--- a/fs/btrfs/free-space-tree.c
+++ b/fs/btrfs/free-space-tree.c
@@ -164,7 +164,7 @@ static unsigned long *alloc_bitmap(u32 bitmap_size)
if (bitmap_size <= PAGE_SIZE)
return kzalloc(bitmap_size, GFP_NOFS);
- mem = kzalloc(bitmap_size, GFP_NOFS | __GFP_HIGHMEM | __GFP_NOWARN);
+ mem = kzalloc(bitmap_size, GFP_NOFS | __GFP_NOWARN);
if (mem)
return mem;