diff options
author | Josef Bacik <jbacik@fusionio.com> | 2013-11-12 20:54:09 -0500 |
---|---|---|
committer | Chris Mason <chris.mason@fusionio.com> | 2013-11-20 20:41:32 -0500 |
commit | d006a04816a306995cd9d394079652a7462f81f8 (patch) | |
tree | dadb038189ee9e2e2ea582bf6014f1a48c19239c /fs/btrfs/tree-log.c | |
parent | 6cfab851f42edcfa72763b3cb8dc26b8fd74e203 (diff) | |
download | linux-d006a04816a306995cd9d394079652a7462f81f8.tar.gz linux-d006a04816a306995cd9d394079652a7462f81f8.tar.bz2 linux-d006a04816a306995cd9d394079652a7462f81f8.zip |
Btrfs: only drop modified extents if we logged the whole inode
If we fsync, seek and write, rename and then fsync again we will lose the
modified hole extent because the rename will drop all of the modified extents
since we didn't do the fast search. We need to only drop the modified extents
if we didn't do the fast search and we were logging the entire inode as we don't
need them anymore, otherwise this is being premature. Thanks,
Signed-off-by: Josef Bacik <jbacik@fusionio.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index b0c7134162fb..9f7fc51ca334 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c @@ -3802,7 +3802,7 @@ log_extents: err = ret; goto out_unlock; } - } else { + } else if (inode_only == LOG_INODE_ALL) { struct extent_map_tree *tree = &BTRFS_I(inode)->extent_tree; struct extent_map *em, *n; |