Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 71399
b: refs/heads/master
c: 7a266e7
h: refs/heads/master
i:
  71397: 21a9f5a
  71395: 84b6c77
  71391: d5e3aaf
v: v3
  • Loading branch information
Jan Kara authored and Linus Torvalds committed Oct 19, 2007
1 parent d6a26fe commit 30d6fea
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: c2a9159cdd8b334a0dfaf69d8b07cd57b5272baa
refs/heads/master: 7a266e75cf5a1efd20d084408a1b7f1a185496dd
8 changes: 4 additions & 4 deletions trunk/fs/jbd/commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ void journal_commit_transaction(journal_t *journal)
spin_unlock(&journal->j_list_lock);

if (err)
__journal_abort_hard(journal);
journal_abort(journal, err);

journal_write_revoke_records(journal, commit_transaction);

Expand Down Expand Up @@ -524,7 +524,7 @@ void journal_commit_transaction(journal_t *journal)

descriptor = journal_get_descriptor_buffer(journal);
if (!descriptor) {
__journal_abort_hard(journal);
journal_abort(journal, -EIO);
continue;
}

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

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

if (err)
__journal_abort_hard(journal);
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 30d6fea

Please sign in to comment.