diff options
author | Lukas Czerner <lczerner@redhat.com> | 2014-04-18 10:50:23 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-04-18 10:50:23 -0400 |
commit | ef24f6c234de9a03aed9368163dbaad9a4f6391f (patch) | |
tree | cc0dea0ba4395ce564991f0983c978cf21a0c9bd /fs/ext4 | |
parent | 9337d5d31ab798f0c74150506371551a9195251a (diff) |
ext4: discard preallocations after removing space
Currently in ext4_collapse_range() and ext4_punch_hole() we're
discarding preallocation twice. Once before we attempt to do any changes
and second time after we're done with the changes.
While the second call to ext4_discard_preallocations() in
ext4_punch_hole() case is not needed, we need to discard preallocation
right after ext4_ext_remove_space() in collapse range case because in
the case we had to restart a transaction in the middle of removing space
we might have new preallocations created.
Remove unneeded ext4_discard_preallocations() ext4_punch_hole() and move
it to the better place in ext4_collapse_range()
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/extents.c | 2 | ||||
-rw-r--r-- | fs/ext4/inode.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 3ee60e2e2ac7..eb7be8f08e10 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -5465,6 +5465,7 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) | |||
5465 | up_write(&EXT4_I(inode)->i_data_sem); | 5465 | up_write(&EXT4_I(inode)->i_data_sem); |
5466 | goto out_stop; | 5466 | goto out_stop; |
5467 | } | 5467 | } |
5468 | ext4_discard_preallocations(inode); | ||
5468 | 5469 | ||
5469 | ret = ext4_ext_shift_extents(inode, handle, punch_stop, | 5470 | ret = ext4_ext_shift_extents(inode, handle, punch_stop, |
5470 | punch_stop - punch_start); | 5471 | punch_stop - punch_start); |
@@ -5477,7 +5478,6 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len) | |||
5477 | i_size_write(inode, new_size); | 5478 | i_size_write(inode, new_size); |
5478 | EXT4_I(inode)->i_disksize = new_size; | 5479 | EXT4_I(inode)->i_disksize = new_size; |
5479 | 5480 | ||
5480 | ext4_discard_preallocations(inode); | ||
5481 | up_write(&EXT4_I(inode)->i_data_sem); | 5481 | up_write(&EXT4_I(inode)->i_data_sem); |
5482 | if (IS_SYNC(inode)) | 5482 | if (IS_SYNC(inode)) |
5483 | ext4_handle_sync(handle); | 5483 | ext4_handle_sync(handle); |
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index b74cfd2a42ec..d7b7462a0e13 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -3621,7 +3621,6 @@ int ext4_punch_hole(struct inode *inode, loff_t offset, loff_t length) | |||
3621 | ret = ext4_free_hole_blocks(handle, inode, first_block, | 3621 | ret = ext4_free_hole_blocks(handle, inode, first_block, |
3622 | stop_block); | 3622 | stop_block); |
3623 | 3623 | ||
3624 | ext4_discard_preallocations(inode); | ||
3625 | up_write(&EXT4_I(inode)->i_data_sem); | 3624 | up_write(&EXT4_I(inode)->i_data_sem); |
3626 | if (IS_SYNC(inode)) | 3625 | if (IS_SYNC(inode)) |
3627 | ext4_handle_sync(handle); | 3626 | ext4_handle_sync(handle); |