]> git.karo-electronics.de Git - karo-tx-linux.git/commit
Btrfs: allow callers to specify if flushing can occur for btrfs_block_rsv_check
authorJosef Bacik <josef@redhat.com>
Fri, 19 Aug 2011 14:31:56 +0000 (10:31 -0400)
committerJosef Bacik <josef@redhat.com>
Wed, 19 Oct 2011 19:12:38 +0000 (15:12 -0400)
commit482e6dc5261406fdb921946e70b51467b0305bad
treeb3acb0574ea5b7a8bd4991c346f5166f0317bbf4
parent07127184efb629f1336c0592bfdacec258cab731
Btrfs: allow callers to specify if flushing can occur for btrfs_block_rsv_check

If you run xfstest 224 it you will get lots of messages about not being able to
delete inodes and that they will be cleaned up next mount.  This is because
btrfs_block_rsv_check was not calling reserve_metadata_bytes with the ability to
flush, so if there was not enough space, it simply failed.  But in truncate and
evict case we could easily flush space to try and get enough space to do our
work, so make btrfs_block_rsv_check take a flush argument to pass down to
reserve_metadata_bytes.  Now xfstests 224 runs fine without all those
complaints.  Thanks,

Signed-off-by: Josef Bacik <josef@redhat.com>
fs/btrfs/ctree.h
fs/btrfs/extent-tree.c
fs/btrfs/free-space-cache.c
fs/btrfs/inode.c
fs/btrfs/relocation.c
fs/btrfs/transaction.c