aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2010-10-15 15:18:40 -0400
committerJosef Bacik <josef@redhat.com>2010-10-22 15:54:58 -0400
commit0019f10db6f596f3e14a19f9bd7059a1b85b0853 (patch)
tree9f295bc2e335a6890ea29bc0830bda43903671d9 /fs/btrfs/ctree.h
parent6d48755d02b150de7f47e7b4753202f2fc9f990f (diff)
Btrfs: re-work delalloc flushing
Currently we try and flush delalloc, but we only do that in a sort of weak way, which works fine in most cases but if we're under heavy pressure we need to be able to wait for flushing to happen. Also instead of checking the bytes reserved in the block_rsv, check the space info since it is more accurate. The sync option will be used in a future patch. Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index 014fd52c01bf..f32404db2c5d 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -2376,7 +2376,8 @@ int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2376 u32 min_type); 2376 u32 min_type);
2377 2377
2378int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput); 2378int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput);
2379int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput); 2379int btrfs_start_one_delalloc_inode(struct btrfs_root *root, int delay_iput,
2380 int sync);
2380int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end, 2381int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
2381 struct extent_state **cached_state); 2382 struct extent_state **cached_state);
2382int btrfs_writepages(struct address_space *mapping, 2383int btrfs_writepages(struct address_space *mapping,