Btrfs: fix free space leak
authorJosef Bacik <jbacik@redhat.com>
Tue, 18 Nov 2008 02:11:49 +0000 (21:11 -0500)
committerChris Mason <chris.mason@oracle.com>
Tue, 18 Nov 2008 02:11:49 +0000 (21:11 -0500)
commite3e469f86eebb1b3364c118add362d00c6cff956
treeb94e978d4249fea7aed066f2046daaf3f3202307
parent7cbd8a839118eede2393f0926b8e15027162bcd6
Btrfs: fix free space leak

In my batch delete/update/insert patch I introduced a free space leak.  The
extent that we do the original search on in free_extents is never pinned, so we
always update the block saying that it has free space, but the free space never
actually gets added to the free space tree, since op->del will always be 0 and
it's never actually added to the pinned extents tree.

This patch fixes this problem by making sure we call pin_down_bytes on the
pending extent op and set op->del to the return value of pin_down_bytes so
update_block_group is called with the right value.  This seems to fix the case
where we were getting ENOSPC when there was plenty of space available.

Signed-off-by: Josef Bacik <jbacik@redhat.com>
fs/btrfs/extent-tree.c