aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/btrfs/file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index a43d0aef6ee1..8e3d6788d6dd 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -2072,7 +2072,7 @@ static long btrfs_fallocate(struct file *file, int mode,
2072 * Make sure we have enough space before we do the 2072 * Make sure we have enough space before we do the
2073 * allocation. 2073 * allocation.
2074 */ 2074 */
2075 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start + 1); 2075 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
2076 if (ret) 2076 if (ret)
2077 return ret; 2077 return ret;
2078 2078
@@ -2179,7 +2179,7 @@ static long btrfs_fallocate(struct file *file, int mode,
2179out: 2179out:
2180 mutex_unlock(&inode->i_mutex); 2180 mutex_unlock(&inode->i_mutex);
2181 /* Let go of our reservation. */ 2181 /* Let go of our reservation. */
2182 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start + 1); 2182 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
2183 return ret; 2183 return ret;
2184} 2184}
2185 2185