aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJosef Bacik <josef@redhat.com>2010-06-07 14:26:37 -0400
committerChris Mason <chris.mason@oracle.com>2010-06-11 11:46:12 -0400
commit836097797236fd727f82ec2f3f376ac41a430876 (patch)
tree72481501a21cfa6494e0b9bba89e3a8f783e2074 /fs
parent4a001071d3549f596c7c3736c5dda8a3a4aba9ed (diff)
Btrfs: fix fallocate regression
Seems that when btrfs_fallocate was converted to use the new ENOSPC stuff we dropped passing the mode to the function that actually does the preallocation. This breaks anybody who wants to use FALLOC_FL_KEEP_SIZE. Thanks, Signed-off-by: Josef Bacik <josef@redhat.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 2551b8018399..d999c538cdc2 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -6893,7 +6893,7 @@ static long btrfs_fallocate(struct inode *inode, int mode,
6893 if (em->block_start == EXTENT_MAP_HOLE || 6893 if (em->block_start == EXTENT_MAP_HOLE ||
6894 (cur_offset >= inode->i_size && 6894 (cur_offset >= inode->i_size &&
6895 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) { 6895 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6896 ret = btrfs_prealloc_file_range(inode, 0, cur_offset, 6896 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
6897 last_byte - cur_offset, 6897 last_byte - cur_offset,
6898 1 << inode->i_blkbits, 6898 1 << inode->i_blkbits,
6899 offset + len, 6899 offset + len,