diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-08-16 07:57:35 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-08-16 07:57:35 -0400 |
commit | 88aa3cff4e9a38b953de9fbc54c96e619a2bb9f9 (patch) | |
tree | 2905089c0d20ef7a6017d40acbe887148f3cd1fa /fs | |
parent | d015641734cde55d2fce48a6db3983c8a029fe05 (diff) |
ext4: Use ext4_discard_reservations instead of mballoc-specific call
In ext4_ext_truncate(), we should use the more generic
ext4_discard_reservations() call so we do the right thing when the
filesystem is mounted with the nomballoc option.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Mingming Cao <cmm@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 612c3d2c3824..7212947a8ca3 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -2819,7 +2819,7 @@ void ext4_ext_truncate(struct inode *inode) | |||
2819 | down_write(&EXT4_I(inode)->i_data_sem); | 2819 | down_write(&EXT4_I(inode)->i_data_sem); |
2820 | ext4_ext_invalidate_cache(inode); | 2820 | ext4_ext_invalidate_cache(inode); |
2821 | 2821 | ||
2822 | ext4_mb_discard_inode_preallocations(inode); | 2822 | ext4_discard_reservation(inode); |
2823 | 2823 | ||
2824 | /* | 2824 | /* |
2825 | * TODO: optimization is possible here. | 2825 | * TODO: optimization is possible here. |