Skip to content

Commit e678a4f

Browse files
committed
jbd: don't wait (forever) for stale tid caused by wraparound
In the case where an inode has a very stale transaction id (tid) in i_datasync_tid or i_sync_tid, it's possible that after a very large (2**31) number of transactions, that the tid number space might wrap, causing tid_geq()'s calculations to fail. Commit d9b0193 "jbd: fix fsync() tid wraparound bug" attempted to fix this problem, but it only avoided kjournald spinning forever by fixing the logic in jbd_log_start_commit(). Signed-off-by: Jan Kara <[email protected]>
1 parent e643692 commit e678a4f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

fs/jbd/journal.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,16 @@ int log_wait_commit(journal_t *journal, tid_t tid)
564564
spin_unlock(&journal->j_state_lock);
565565
#endif
566566
spin_lock(&journal->j_state_lock);
567+
/*
568+
* Not running or committing trans? Must be already committed. This
569+
* saves us from waiting for a *long* time when tid overflows.
570+
*/
571+
if (!((journal->j_running_transaction &&
572+
journal->j_running_transaction->t_tid == tid) ||
573+
(journal->j_committing_transaction &&
574+
journal->j_committing_transaction->t_tid == tid)))
575+
goto out_unlock;
576+
567577
if (!tid_geq(journal->j_commit_waited, tid))
568578
journal->j_commit_waited = tid;
569579
while (tid_gt(tid, journal->j_commit_sequence)) {
@@ -575,6 +585,7 @@ int log_wait_commit(journal_t *journal, tid_t tid)
575585
!tid_gt(tid, journal->j_commit_sequence));
576586
spin_lock(&journal->j_state_lock);
577587
}
588+
out_unlock:
578589
spin_unlock(&journal->j_state_lock);
579590

580591
if (unlikely(is_journal_aborted(journal))) {

0 commit comments

Comments
 (0)