diff options
author | Miao Xie <miaox@cn.fujitsu.com> | 2011-03-31 09:43:23 +0000 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2011-04-05 01:19:43 -0400 |
commit | adae52b94e18afa1f84fab67df2a8a872c2f5533 (patch) | |
tree | fb9259b9eac14ac950d127faf1788392081010b0 /fs/btrfs/inode.c | |
parent | 6e8df2ae89ab37730c0062782f844c66ecfc97a7 (diff) | |
download | linux-3.10-adae52b94e18afa1f84fab67df2a8a872c2f5533.tar.gz linux-3.10-adae52b94e18afa1f84fab67df2a8a872c2f5533.tar.bz2 linux-3.10-adae52b94e18afa1f84fab67df2a8a872c2f5533.zip |
btrfs: clear __GFP_FS flag in the space cache inode
the object id of the space cache inode's key is allocated from the relative
root, just like the regular file. So we can't identify space cache inode by
checking the object id of the inode's key, and we have to clear __GFP_FS flag
at the time we look up the space cache inode.
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Liu Bo <liubo2009@cn.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r-- | fs/btrfs/inode.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 1ca3e68586c..57a03f6eb22 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -2535,8 +2535,6 @@ static void btrfs_read_locked_inode(struct inode *inode) BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item); alloc_group_block = btrfs_inode_block_group(leaf, inode_item); - if (location.objectid == BTRFS_FREE_SPACE_OBJECTID) - inode->i_mapping->flags &= ~__GFP_FS; /* * try to precache a NULL acl entry for files that don't have |