Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71074
b: refs/heads/master
c: a7fa2ba
h: refs/heads/master
v: v3
  • Loading branch information
Jan Kara authored and Theodore Ts'o committed Oct 17, 2007
1 parent b4a6bf7 commit 04b0d86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: cd02ff0b14b7e27cbdfd7ff2814b08199a2b7168
refs/heads/master: a7fa2baf8e2a6c0eb0a21f75e919c226179e8ff4
8 changes: 4 additions & 4 deletions trunk/fs/jbd2/commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ void jbd2_journal_commit_transaction(journal_t *journal)
spin_unlock(&journal->j_list_lock);

if (err)
__jbd2_journal_abort_hard(journal);
jbd2_journal_abort(journal, err);

jbd2_journal_write_revoke_records(journal, commit_transaction);

Expand Down Expand Up @@ -533,7 +533,7 @@ void jbd2_journal_commit_transaction(journal_t *journal)

descriptor = jbd2_journal_get_descriptor_buffer(journal);
if (!descriptor) {
__jbd2_journal_abort_hard(journal);
jbd2_journal_abort(journal, -EIO);
continue;
}

Expand Down Expand Up @@ -566,7 +566,7 @@ void jbd2_journal_commit_transaction(journal_t *journal)
and repeat this loop: we'll fall into the
refile-on-abort condition above. */
if (err) {
__jbd2_journal_abort_hard(journal);
jbd2_journal_abort(journal, err);
continue;
}

Expand Down Expand Up @@ -757,7 +757,7 @@ void jbd2_journal_commit_transaction(journal_t *journal)
err = -EIO;

if (err)
__jbd2_journal_abort_hard(journal);
jbd2_journal_abort(journal, err);

/* End of a transaction! Finally, we can do checkpoint
processing: any buffers committed as a result of this
Expand Down

0 comments on commit 04b0d86

Please sign in to comment.