diff options
| -rw-r--r-- | fs/jbd/journal.c | 4 | ||||
| -rw-r--r-- | fs/jbd2/journal.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c index 425c2f2cf170..09357508ec9a 100644 --- a/fs/jbd/journal.c +++ b/fs/jbd/journal.c | |||
| @@ -534,8 +534,8 @@ int journal_start_commit(journal_t *journal, tid_t *ptid) | |||
| 534 | ret = 1; | 534 | ret = 1; |
| 535 | } else if (journal->j_committing_transaction) { | 535 | } else if (journal->j_committing_transaction) { |
| 536 | /* | 536 | /* |
| 537 | * If ext3_write_super() recently started a commit, then we | 537 | * If commit has been started, then we have to wait for |
| 538 | * have to wait for completion of that transaction | 538 | * completion of that transaction. |
| 539 | */ | 539 | */ |
| 540 | if (ptid) | 540 | if (ptid) |
| 541 | *ptid = journal->j_committing_transaction->t_tid; | 541 | *ptid = journal->j_committing_transaction->t_tid; |
diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index e9a3c4c85594..8625da27eccf 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c | |||
| @@ -612,8 +612,8 @@ int jbd2_journal_start_commit(journal_t *journal, tid_t *ptid) | |||
| 612 | ret = 1; | 612 | ret = 1; |
| 613 | } else if (journal->j_committing_transaction) { | 613 | } else if (journal->j_committing_transaction) { |
| 614 | /* | 614 | /* |
| 615 | * If ext3_write_super() recently started a commit, then we | 615 | * If commit has been started, then we have to wait for |
| 616 | * have to wait for completion of that transaction | 616 | * completion of that transaction. |
| 617 | */ | 617 | */ |
| 618 | if (ptid) | 618 | if (ptid) |
| 619 | *ptid = journal->j_committing_transaction->t_tid; | 619 | *ptid = journal->j_committing_transaction->t_tid; |
