aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorYan Zheng <zheng.yan@oracle.com>2009-02-12 10:06:04 -0500
committerChris Mason <chris.mason@oracle.com>2009-02-12 10:06:04 -0500
commitb335b0034e252e79ec2e9c6697f5d663c4627bec (patch)
treef99286083d21fdc298b50d3d47dc96a9f1f54bb8 /fs
parentBtrfs: don't clean old snapshots on sync(1) (diff)
downloadlinux-dev-b335b0034e252e79ec2e9c6697f5d663c4627bec.tar.xz
linux-dev-b335b0034e252e79ec2e9c6697f5d663c4627bec.zip
Btrfs: Avoid using __GFP_HIGHMEM with slab allocator
btrfs_releasepage may call kmem_cache_alloc indirectly, and provide same GFP flags it gets to kmem_cache_alloc. So it's possible to use __GFP_HIGHMEM with the slab allocator. Signed-off-by: Yan Zheng <zheng.yan@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 8f0706210a47..638bcb5e49f6 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4263,7 +4263,7 @@ static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
{
if (PageWriteback(page) || PageDirty(page))
return 0;
- return __btrfs_releasepage(page, gfp_flags);
+ return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
}
static void btrfs_invalidatepage(struct page *page, unsigned long offset)