]> git.baikalelectronics.ru Git - kernel.git/commit
jbd2: add debugging information to jbd2_journal_dirty_metadata()
authorTheodore Ts'o <tytso@mit.edu>
Sun, 4 Sep 2011 14:18:14 +0000 (10:18 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 4 Sep 2011 14:18:14 +0000 (10:18 -0400)
commitfaf8858fea4e89ac5258f5f9ecbedebd07ce6bba
tree2f9cb8bb3f4c709aa666c7863b496f2757b261fb
parent215af17660312c31b2eee19b457c8856d39dd244
jbd2: add debugging information to jbd2_journal_dirty_metadata()

Add debugging information in case jbd2_journal_dirty_metadata() is
called with a buffer_head which didn't have
jbd2_journal_get_write_access() called on it, or if the journal_head
has the wrong transaction in it.  In addition, return an error code.
This won't change anything for ocfs2, which will BUG_ON() the non-zero
exit code.

For ext4, the caller of this function is ext4_handle_dirty_metadata(),
and on seeing a non-zero return code, will call __ext4_journal_stop(),
which will print the function and line number of the (buggy) calling
function and abort the journal.  This will allow us to recover instead
of bug halting, which is better from a robustness and reliability
point of view.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/ext4_jbd2.c
fs/ext4/extents.c
fs/jbd2/transaction.c