diff options
author | Christoph Hellwig <hch@lst.de> | 2009-09-05 21:42:42 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-09-05 21:42:42 -0400 |
commit | 5f3481e9a80c240f169b36ea886e2325b9aeb745 (patch) | |
tree | 435a8cf2be9c81a545f42d5af881450f8d121e74 /fs/ext4 | |
parent | d0646f7b636d067d715fab52a2ba9c6f0f46b0d7 (diff) |
ext4: fix cache flush in ext4_sync_file
We need to flush the write cache unconditionally in ->fsync, otherwise
writes into already allocated blocks can get lost. Writes into fully
allocated files are very common when using disk images for
virtualization, and without this fix can easily lose data after
an fdatasync, which is the typical implementation for a cache flush on
the virtual drive.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/fsync.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/fsync.c b/fs/ext4/fsync.c index 83cf6415f599..ab418c0f502d 100644 --- a/fs/ext4/fsync.c +++ b/fs/ext4/fsync.c | |||
@@ -92,9 +92,9 @@ int ext4_sync_file(struct file *file, struct dentry *dentry, int datasync) | |||
92 | .nr_to_write = 0, /* sys_fsync did this */ | 92 | .nr_to_write = 0, /* sys_fsync did this */ |
93 | }; | 93 | }; |
94 | ret = sync_inode(inode, &wbc); | 94 | ret = sync_inode(inode, &wbc); |
95 | if (journal && (journal->j_flags & JBD2_BARRIER)) | ||
96 | blkdev_issue_flush(inode->i_sb->s_bdev, NULL); | ||
97 | } | 95 | } |
98 | out: | 96 | out: |
97 | if (journal && (journal->j_flags & JBD2_BARRIER)) | ||
98 | blkdev_issue_flush(inode->i_sb->s_bdev, NULL); | ||
99 | return ret; | 99 | return ret; |
100 | } | 100 | } |