]> git.baikalelectronics.ru Git - kernel.git/commit
Btrfs: do not release more reserved bytes to the global_block_rsv than we need
authorJosef Bacik <josef@redhat.com>
Mon, 24 Jan 2011 21:43:19 +0000 (21:43 +0000)
committerChris Mason <chris.mason@oracle.com>
Fri, 28 Jan 2011 21:40:37 +0000 (16:40 -0500)
commit250311b823a9f046b22f1e9f96f037fd45c452a3
tree3932040f0c5416e6ecbf508fa5d99b50eefbbc18
parent19ecf79596417a83a7b989c84cff4756a31a76d9
Btrfs: do not release more reserved bytes to the global_block_rsv than we need

When we do btrfs_block_rsv_release, if global_block_rsv is not full we will
release all the extra bytes to global_block_rsv, even if it's only a little
short of the amount of space that we need to reserve.  This causes us to starve
ourselves of reservable space during the transaction which will force us to
shrink delalloc bytes and commit the transaction more often than we should.  So
instead just add the amount of bytes we need to add to the global reserve so
reserved == size, and then add the rest back into the space_info for general
use.  Thanks,

Signed-off-by: Josef Bacik <josef@redhat.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent-tree.c