From: Solofo Ramangalahy Date: Wed, 30 Apr 2008 02:00:41 +0000 (-0400) Subject: ext4: update ctime and mtime for truncate with extents. X-Git-Tag: v2.6.26-rc1~345^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ef7377289a1510d638004158e43878643bc75dc5;p=karo-tx-linux.git ext4: update ctime and mtime for truncate with extents. The recently announced "Linux POSIX file system test suite" caught a truncate issue when using extents: mtime and ctime are not updated when truncate is successful. This is the single issue caught with "default" ext4 (mkfs and mount with minimal options). The testsuite does not report failure with -o noextents. With the following patch, all tests of the testsuite pass. Signed-off-by: Solofo Ramangalahy Signed-off-by: Mingming Cao Signed-off-by: "Theodore Ts'o" --- diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index a472bc046363..47929c4e3dae 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -2809,6 +2809,8 @@ out_stop: ext4_orphan_del(handle, inode); up_write(&EXT4_I(inode)->i_data_sem); + inode->i_mtime = inode->i_ctime = ext4_current_time(inode); + ext4_mark_inode_dirty(handle, inode); ext4_journal_stop(handle); }