summaryrefslogtreecommitdiff
path: root/fs/btrfs/tree-log.c
diff options
context:
space:
mode:
authorMiao Xie <miaox@cn.fujitsu.com>2012-11-01 07:35:23 +0000
committerJosef Bacik <jbacik@fusionio.com>2012-12-12 17:15:22 -0500
commit5269b67e3d809dcaa4c6763a343423bb1b7b3fe6 (patch)
treec4bb6f76990b954c3aad8ab140155a0365e6ff38 /fs/btrfs/tree-log.c
parentbbe1426764e5dfaa57e7b12cc954acdb3fb7f94b (diff)
downloadlinux-3.10-5269b67e3d809dcaa4c6763a343423bb1b7b3fe6.tar.gz
linux-3.10-5269b67e3d809dcaa4c6763a343423bb1b7b3fe6.tar.bz2
linux-3.10-5269b67e3d809dcaa4c6763a343423bb1b7b3fe6.zip
Btrfs: fix missing log when BTRFS_INODE_NEEDS_FULL_SYNC is set
If we set BTRFS_INODE_NEEDS_FULL_SYNC, we should log all the extent, but now we forget to take it into account, and set a wrong max key, if so, we will skip the file extent metadata when doing logging. Fix it. Signed-off-by: Miao Xie <miaox@cn.fujitsu.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r--fs/btrfs/tree-log.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c
index d1947af67bc..40b9efd20e4 100644
--- a/fs/btrfs/tree-log.c
+++ b/fs/btrfs/tree-log.c
@@ -3394,7 +3394,10 @@ static int btrfs_log_inode(struct btrfs_trans_handle *trans,
/* today the code can only do partial logging of directories */
- if (inode_only == LOG_INODE_EXISTS || S_ISDIR(inode->i_mode))
+ if (S_ISDIR(inode->i_mode) ||
+ (!test_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
+ &BTRFS_I(inode)->runtime_flags) &&
+ inode_only == LOG_INODE_EXISTS))
max_key.type = BTRFS_XATTR_ITEM_KEY;
else
max_key.type = (u8)-1;