From: Eryu Guan Date: Mon, 4 Dec 2017 03:52:51 +0000 (-0500) Subject: ext4: fix fdatasync(2) after fallocate(2) operation X-Git-Tag: v4.1.49~81 X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47711554c6da1a8904abb2ba43d2f7ee1b1b5a00;p=linux ext4: fix fdatasync(2) after fallocate(2) operation [ Upstream commit c894aa97577e47d3066b27b32499ecf899bfa8b0 ] Currently, fallocate(2) with KEEP_SIZE followed by a fdatasync(2) then crash, we'll see wrong allocated block number (stat -c %b), the blocks allocated beyond EOF are all lost. fstests generic/468 exposes this bug. Commit 67a7d5f561f4 ("ext4: fix fdatasync(2) after extent manipulation operations") fixed all the other extent manipulation operation paths such as hole punch, zero range, collapse range etc., but forgot the fallocate case. So similarly, fix it by recording the correct journal tid in ext4 inode in fallocate(2) path, so that ext4_sync_file() will wait for the right tid to be committed on fdatasync(2). This addresses the test failure in xfstests test generic/468. Signed-off-by: Eryu Guan Signed-off-by: Theodore Ts'o Cc: stable@vger.kernel.org Signed-off-by: Sasha Levin --- diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 447d64e47c4c..dbc793e31f35 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4723,6 +4723,7 @@ retry: EXT4_INODE_EOFBLOCKS); } ext4_mark_inode_dirty(handle, inode); + ext4_update_inode_fsync_trans(handle, inode, 1); ret2 = ext4_journal_stop(handle); if (ret2) break;