From: Josef Bacik Date: Wed, 29 Jan 2014 21:05:30 +0000 (-0500) Subject: Btrfs: disable snapshot aware defrag for now X-Git-Tag: v3.10.33~188 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a082f872743e09fe2cdf870b2d8f1b5dccd36cf7;p=platform%2Fkernel%2Flinux-3.10.git Btrfs: disable snapshot aware defrag for now commit 8101c8dbf6243ba517aab58d69bf1bc37d8b7b9c upstream. It's just broken and it's taking a lot of effort to fix it, so for now just disable it so people can defrag in peace. Thanks, Signed-off-by: Josef Bacik Signed-off-by: Chris Mason Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index 0bcee78..25e6a8e 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -2655,7 +2655,7 @@ static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent) EXTENT_DEFRAG, 1, cached_state); if (ret) { u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item); - if (last_snapshot >= BTRFS_I(inode)->generation) + if (0 && last_snapshot >= BTRFS_I(inode)->generation) /* the inode is shared */ new = record_old_file_extents(inode, ordered_extent);