From: Josef Bacik Date: Wed, 13 Nov 2013 01:54:09 +0000 (-0500) Subject: Btrfs: only drop modified extents if we logged the whole inode X-Git-Tag: v4.9.8~7274^2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d006a04816a306995cd9d394079652a7462f81f8;p=platform%2Fkernel%2Flinux-rpi3.git 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 Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index b0c7134..9f7fc51 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;