search for: journal_write_revoke_record

Displaying 3 results from an estimated 3 matches for "journal_write_revoke_record".

2001 Oct 07
2
"DRQ after issuing write" error
...al.c, 202): kjournald: commit_sequence=81, commit_request=82 Oct 7 20:31:36 fargo kernel: (journal.c, 205): kjournald: OK, requests differ Oct 7 20:31:36 fargo kernel: (commit.c, 78): journal_commit_transaction: JBD: starting commit of transaction 82 Oct 7 20:31:36 fargo kernel: (revoke.c, 413): journal_write_revoke_records: Wrote 0 revoke records Oct 7 20:31:36 fargo kernel: (checkpoint.c, 607): __journal_drop_transaction: Dropping transaction 81, all done Oct 7 20:31:36 fargo kernel: (commit.c, 690): journal_commit_transaction: JBD: commit 82 complete, head 8 Oct 7 20:31:36 fargo kernel: (journal.c, 202): kjourn...
2005 Sep 09
7
[PATCH 0/6] jbd cleanup
The following 6 patches cleanup the jbd code and kill about 200 lines. First of 4 patches can apply to 2.6.13-git8 and 2.6.13-mm2. The rest of them can apply to 2.6.13-mm2. fs/jbd/checkpoint.c | 179 +++++++++++-------------------------------- fs/jbd/commit.c | 101 ++++++++++-------------- fs/jbd/journal.c | 11 +- fs/jbd/revoke.c | 158
2005 Jan 04
0
[PATCH] BUG on error handlings in Ext3 under I/O failure condition
....10-bk6_fix/fs/jbd/commit.c --- linux-2.6.10-bk6/fs/jbd/commit.c 2004-12-25 06:35:27.000000000 +0900 +++ linux-2.6.10-bk6_fix/fs/jbd/commit.c 2005-01-04 19:58:48.000000000 +0900 @@ -341,6 +341,9 @@ } spin_unlock(&journal->j_list_lock); + if (err) + __journal_abort_hard(journal); + journal_write_revoke_records(journal, commit_transaction); jbd_debug(3, "JBD: commit phase 2\n"); diff -Nru linux-2.6.10-bk6/include/linux/fs.h linux-2.6.10-bk6_fix/include/linux/fs.h --- linux-2.6.10-bk6/include/linux/fs.h 2004-12-25 06:34:27.000000000 +0900 +++ linux-2.6.10-bk6_fix/include/linux/fs.h 2005-01-...