Skip to content

Commit 4f34c18

Browse files
Luis Henriques (SUSE)mehmetb0
authored andcommitted
ext4: fix fast commit inode enqueueing during a full journal commit
BugLink: https://bugs.launchpad.net/bugs/2086242 commit 6db3c15 upstream. When a full journal commit is on-going, any fast commit has to be enqueued into a different queue: FC_Q_STAGING instead of FC_Q_MAIN. This enqueueing is done only once, i.e. if an inode is already queued in a previous fast commit entry it won't be enqueued again. However, if a full commit starts _after_ the inode is enqueued into FC_Q_MAIN, the next fast commit needs to be done into FC_Q_STAGING. And this is not being done in function ext4_fc_track_template(). This patch fixes the issue by re-enqueuing an inode into the STAGING queue during the fast commit clean-up callback when doing a full commit. However, to prevent a race with a fast-commit, the clean-up callback has to be called with the journal locked. This bug was found using fstest generic/047. This test creates several 32k bytes files, sync'ing each of them after it's creation, and then shutting down the filesystem. Some data may be loss in this operation; for example a file may have it's size truncated to zero. Suggested-by: Jan Kara <[email protected]> Signed-off-by: Luis Henriques (SUSE) <[email protected]> Reviewed-by: Jan Kara <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Theodore Ts'o <[email protected]> Cc: [email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Koichiro Den <[email protected]> Signed-off-by: Roxana Nicolescu <[email protected]>
1 parent 37f2e37 commit 4f34c18

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

fs/ext4/fast_commit.c

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1278,8 +1278,21 @@ static void ext4_fc_cleanup(journal_t *journal, int full, tid_t tid)
12781278
list_del_init(&iter->i_fc_list);
12791279
ext4_clear_inode_state(&iter->vfs_inode,
12801280
EXT4_STATE_FC_COMMITTING);
1281-
if (tid_geq(tid, iter->i_sync_tid))
1281+
if (tid_geq(tid, iter->i_sync_tid)) {
12821282
ext4_fc_reset_inode(&iter->vfs_inode);
1283+
} else if (full) {
1284+
/*
1285+
* We are called after a full commit, inode has been
1286+
* modified while the commit was running. Re-enqueue
1287+
* the inode into STAGING, which will then be splice
1288+
* back into MAIN. This cannot happen during
1289+
* fastcommit because the journal is locked all the
1290+
* time in that case (and tid doesn't increase so
1291+
* tid check above isn't reliable).
1292+
*/
1293+
list_add_tail(&EXT4_I(&iter->vfs_inode)->i_fc_list,
1294+
&sbi->s_fc_q[FC_Q_STAGING]);
1295+
}
12831296
/* Make sure EXT4_STATE_FC_COMMITTING bit is clear */
12841297
smp_mb();
12851298
#if (BITS_PER_LONG < 64)

fs/jbd2/journal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,9 +770,9 @@ EXPORT_SYMBOL(jbd2_fc_begin_commit);
770770
*/
771771
static int __jbd2_fc_end_commit(journal_t *journal, tid_t tid, bool fallback)
772772
{
773-
jbd2_journal_unlock_updates(journal);
774773
if (journal->j_fc_cleanup_callback)
775774
journal->j_fc_cleanup_callback(journal, 0, tid);
775+
jbd2_journal_unlock_updates(journal);
776776
write_lock(&journal->j_state_lock);
777777
journal->j_flags &= ~JBD2_FAST_COMMIT_ONGOING;
778778
if (fallback)

0 commit comments

Comments
 (0)