diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2014-05-27 12:48:55 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2014-05-27 12:48:55 -0400 |
commit | e1ee60fd89670da61b0a4bda59f8ffb2b8abea63 (patch) | |
tree | dca4e245a9c924ec2457581ea04cde8b43cbc56b /fs/ext4 | |
parent | d745a8c20c1f864c10ca78d0f89219633861b7e9 (diff) | |
download | linux-e1ee60fd89670da61b0a4bda59f8ffb2b8abea63.tar.gz linux-e1ee60fd89670da61b0a4bda59f8ffb2b8abea63.tar.bz2 linux-e1ee60fd89670da61b0a4bda59f8ffb2b8abea63.zip |
ext4: fix ZERO_RANGE test failure in data journalling
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.
Cc: stable@vger.kernel.org
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/extents.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 5bbe425640da..4da228a0e6d0 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4741,6 +4741,13 @@ static long ext4_zero_range(struct file *file, loff_t offset, 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. |