diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2010-01-15 01:27:59 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-01-15 01:27:59 -0500 |
commit | 1296cc85c26e94eb865d03f82140f27d598de467 (patch) | |
tree | b8a2bc06ecd992a86179ebcd9c087994c676c291 /fs/ext4/extents.c | |
parent | 5f634d064c709ea02c3cdaa850a08323a4a4bf28 (diff) |
ext4: Drop EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE flag
We should update reserve space if it is delalloc buffer
and that is indicated by EXT4_GET_BLOCKS_DELALLOC_RESERVE flag.
So use EXT4_GET_BLOCKS_DELALLOC_RESERVE in place of
EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 3b6ff72026f..765a4826b11 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -3142,7 +3142,7 @@ out: | |||
3142 | * But fallocate would have already updated quota and block | 3142 | * But fallocate would have already updated quota and block |
3143 | * count for this offset. So cancel these reservation | 3143 | * count for this offset. So cancel these reservation |
3144 | */ | 3144 | */ |
3145 | if (flags & EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE) | 3145 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
3146 | ext4_da_update_reserve_space(inode, allocated, 0); | 3146 | ext4_da_update_reserve_space(inode, allocated, 0); |
3147 | 3147 | ||
3148 | map_out: | 3148 | map_out: |
@@ -3388,7 +3388,7 @@ int ext4_ext_get_blocks(handle_t *handle, struct inode *inode, | |||
3388 | * Update reserved blocks/metadata blocks after successful | 3388 | * Update reserved blocks/metadata blocks after successful |
3389 | * block allocation which had been deferred till now. | 3389 | * block allocation which had been deferred till now. |
3390 | */ | 3390 | */ |
3391 | if (flags & EXT4_GET_BLOCKS_UPDATE_RESERVE_SPACE) | 3391 | if (flags & EXT4_GET_BLOCKS_DELALLOC_RESERVE) |
3392 | ext4_da_update_reserve_space(inode, allocated, 1); | 3392 | ext4_da_update_reserve_space(inode, allocated, 1); |
3393 | 3393 | ||
3394 | /* | 3394 | /* |