Currently journalled mode is still broken if fs use external journal. This is because all data handled as metadata. We must to issue io-barrier to fs_device even if transaction has only metadata blocks. Also add missed return value check. Signed-off-by: Dmitry Monakhov <dmonakhov@xxxxxxxxxx> --- fs/ext4/fsync.c | 2 +- fs/jbd2/commit.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/fs/ext4/fsync.c b/fs/ext4/fsync.c index 98bd140..eb52837 100644 --- a/fs/ext4/fsync.c +++ b/fs/ext4/fsync.c @@ -101,7 +101,7 @@ int ext4_sync_file(struct file *file, struct dentry *dentry, int datasync) (journal->j_fs_dev != journal->j_dev) && (journal->j_flags & JBD2_BARRIER)) blkdev_issue_flush(inode->i_sb->s_bdev, NULL); - jbd2_log_wait_commit(journal, commit_tid); + ret = jbd2_log_wait_commit(journal, commit_tid); } else if (journal->j_flags & JBD2_BARRIER) blkdev_issue_flush(inode->i_sb->s_bdev, NULL); return ret; diff --git a/fs/jbd2/commit.c b/fs/jbd2/commit.c index 1bc74b6..2f62f1b 100644 --- a/fs/jbd2/commit.c +++ b/fs/jbd2/commit.c @@ -682,6 +682,9 @@ void jbd2_journal_commit_transaction(journal_t *journal) tag->t_flags |= cpu_to_be32(JBD2_FLAG_LAST_TAG); start_journal_io: + if (bufs) + commit_transaction->t_flushed_data_blocks = 1; + for (i = 0; i < bufs; i++) { struct buffer_head *bh = wbuf[i]; /* -- 1.6.6 -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html