diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-07-01 08:12:41 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-07-01 08:12:41 -0400 |
commit | 41a5b913197c3a25fddef1735dc9b3d1fdc57428 (patch) | |
tree | 2377e2cf3164271457785f1356ff77f8c4b79b2b /include/linux/jbd2.h | |
parent | 21ddd568c133024196d394c43923f55cad1e7bd0 (diff) |
jbd2: invalidate handle if jbd2_journal_restart() fails
If jbd2_journal_restart() fails the handle will have been disconnected
from the current transaction. In this situation, the handle must not
be used for for any jbd2 function other than jbd2_journal_stop().
Enforce this with by treating a handle which has a NULL transaction
pointer as an aborted handle, and issue a kernel warning if
jbd2_journal_extent(), jbd2_journal_get_write_access(),
jbd2_journal_dirty_metadata(), etc. is called with an invalid handle.
This commit also fixes a bug where jbd2_journal_stop() would trip over
a kernel jbd2 assertion check when trying to free an invalid handle.
Also move the responsibility of setting current->journal_info to
start_this_handle(), simplifying the three users of this function.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reported-by: Younger Liu <younger.liu@huawei.com>
Cc: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include/linux/jbd2.h')
-rw-r--r-- | include/linux/jbd2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/jbd2.h b/include/linux/jbd2.h index 0302f3f14063..d5b50a19463c 100644 --- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h | |||
@@ -1266,7 +1266,7 @@ static inline int is_journal_aborted(journal_t *journal) | |||
1266 | 1266 | ||
1267 | static inline int is_handle_aborted(handle_t *handle) | 1267 | static inline int is_handle_aborted(handle_t *handle) |
1268 | { | 1268 | { |
1269 | if (handle->h_aborted) | 1269 | if (handle->h_aborted || !handle->h_transaction) |
1270 | return 1; | 1270 | return 1; |
1271 | return is_journal_aborted(handle->h_transaction->t_journal); | 1271 | return is_journal_aborted(handle->h_transaction->t_journal); |
1272 | } | 1272 | } |