]> git.baikalelectronics.ru Git - kernel.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)
commitbe699a79021cd84eb5e61010665b62a9024d8c55
treeb3acb0574ea5b7a8bd4991c346f5166f0317bbf4
parent18af83d373ab972e8f7979a1344321904ad3834c
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