This is a note to let you know that I've just added the patch titled ext4: fix ZERO_RANGE test failure in data journalling to the 3.15-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ext4-fix-zero_range-test-failure-in-data-journalling.patch and it can be found in the queue-3.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From e1ee60fd89670da61b0a4bda59f8ffb2b8abea63 Mon Sep 17 00:00:00 2001 From: Namjae Jeon <namjae.jeon@xxxxxxxxxxx> Date: Tue, 27 May 2014 12:48:55 -0400 Subject: ext4: fix ZERO_RANGE test failure in data journalling From: Namjae Jeon <namjae.jeon@xxxxxxxxxxx> commit e1ee60fd89670da61b0a4bda59f8ffb2b8abea63 upstream. xfstests generic/091 is failing when mounting ext4 with data=journal. I think that this regression is same problem that occurred prior to collapse range issue. So ZERO RANGE also need to call ext4_force_commit as collapse range. Signed-off-by: Namjae Jeon <namjae.jeon@xxxxxxxxxxx> Signed-off-by: Ashish Sangwan <a.sangwan@xxxxxxxxxxx> Signed-off-by: Theodore Ts'o <tytso@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- fs/ext4/extents.c | 7 +++++++ 1 file changed, 7 insertions(+) --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4744,6 +4744,13 @@ static long ext4_zero_range(struct file if (!S_ISREG(inode->i_mode)) return -EINVAL; + /* Call ext4_force_commit to flush all data in case of data=journal. */ + if (ext4_should_journal_data(inode)) { + ret = ext4_force_commit(inode->i_sb); + if (ret) + return ret; + } + /* * Write out all dirty pages to avoid race conditions * Then release them. Patches currently in stable-queue which might be from namjae.jeon@xxxxxxxxxxx are queue-3.15/ext4-fix-zero_range-test-failure-in-data-journalling.patch queue-3.15/ext4-fix-data-integrity-sync-in-ordered-mode.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html