]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
btrfs: add missing discards when unpinning extents with -o discard
authorJeff Mahoney <jeffm@suse.com>
Mon, 15 Jun 2015 13:41:19 +0000 (09:41 -0400)
committerChris Mason <clm@fb.com>
Wed, 29 Jul 2015 15:15:29 +0000 (08:15 -0700)
commite33e17ee1098d8d751552ac11c111e1c1a3db014
tree49b4c9b5c4123db86d9256a5b9122da73275d730
parente44163e177960ee60e32a73bffdd53c3a5827406
btrfs: add missing discards when unpinning extents with -o discard

When we clear the dirty bits in btrfs_delete_unused_bgs for extents
in the empty block group, it results in btrfs_finish_extent_commit being
unable to discard the freed extents.

The block group removal patch added an alternate path to forget extents
other than btrfs_finish_extent_commit.  As a result, any extents that
would be freed when the block group is removed aren't discarded.  In my
test run, with a large copy of mixed sized files followed by removal, it
left nearly 2/3 of extents undiscarded.

To clean up the block groups, we add the removed block group onto a list
that will be discarded after transaction commit.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Tested-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/ctree.h
fs/btrfs/extent-tree.c
fs/btrfs/free-space-cache.c
fs/btrfs/super.c
fs/btrfs/transaction.c
fs/btrfs/transaction.h