2 * Interface between ext4 and JBD
7 #include <trace/events/ext4.h>
9 int __ext4_journal_get_undo_access(const char *where
, handle_t
*handle
,
10 struct buffer_head
*bh
)
14 if (ext4_handle_valid(handle
)) {
15 err
= jbd2_journal_get_undo_access(handle
, bh
);
17 ext4_journal_abort_handle(where
, __func__
, bh
,
23 int __ext4_journal_get_write_access(const char *where
, handle_t
*handle
,
24 struct buffer_head
*bh
)
28 if (ext4_handle_valid(handle
)) {
29 err
= jbd2_journal_get_write_access(handle
, bh
);
31 ext4_journal_abort_handle(where
, __func__
, bh
,
38 * The ext4 forget function must perform a revoke if we are freeing data
39 * which has been journaled. Metadata (eg. indirect blocks) must be
40 * revoked in all cases.
42 * "bh" may be NULL: a metadata block may have been freed from memory
43 * but there may still be a record of it in the journal, and that record
44 * still needs to be revoked.
46 * If the handle isn't valid we're not journaling, but we still need to
47 * call into ext4_journal_revoke() to put the buffer head.
49 int __ext4_forget(const char *where
, handle_t
*handle
, int is_metadata
,
50 struct inode
*inode
, struct buffer_head
*bh
,
57 trace_ext4_forget(inode
, is_metadata
, blocknr
);
58 BUFFER_TRACE(bh
, "enter");
60 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
62 bh
, is_metadata
, inode
->i_mode
,
63 test_opt(inode
->i_sb
, DATA_FLAGS
));
65 /* In the no journal case, we can just do a bforget and return */
66 if (!ext4_handle_valid(handle
)) {
71 /* Never use the revoke function if we are doing full data
72 * journaling: there is no need to, and a V1 superblock won't
73 * support it. Otherwise, only skip the revoke on un-journaled
76 if (test_opt(inode
->i_sb
, DATA_FLAGS
) == EXT4_MOUNT_JOURNAL_DATA
||
77 (!is_metadata
&& !ext4_should_journal_data(inode
))) {
79 BUFFER_TRACE(bh
, "call jbd2_journal_forget");
80 err
= jbd2_journal_forget(handle
, bh
);
82 ext4_journal_abort_handle(where
, __func__
, bh
,
90 * data!=journal && (is_metadata || should_journal_data(inode))
92 BUFFER_TRACE(bh
, "call jbd2_journal_revoke");
93 err
= jbd2_journal_revoke(handle
, blocknr
, bh
);
95 ext4_journal_abort_handle(where
, __func__
, bh
, handle
, err
);
96 ext4_abort(inode
->i_sb
, __func__
,
97 "error %d when attempting revoke", err
);
99 BUFFER_TRACE(bh
, "exit");
103 int __ext4_journal_get_create_access(const char *where
,
104 handle_t
*handle
, struct buffer_head
*bh
)
108 if (ext4_handle_valid(handle
)) {
109 err
= jbd2_journal_get_create_access(handle
, bh
);
111 ext4_journal_abort_handle(where
, __func__
, bh
,
117 int __ext4_handle_dirty_metadata(const char *where
, handle_t
*handle
,
118 struct inode
*inode
, struct buffer_head
*bh
)
122 if (ext4_handle_valid(handle
)) {
123 err
= jbd2_journal_dirty_metadata(handle
, bh
);
125 ext4_journal_abort_handle(where
, __func__
, bh
,
129 mark_buffer_dirty_inode(bh
, inode
);
131 mark_buffer_dirty(bh
);
132 if (inode
&& inode_needs_sync(inode
)) {
133 sync_dirty_buffer(bh
);
134 if (buffer_req(bh
) && !buffer_uptodate(bh
)) {
135 ext4_error(inode
->i_sb
,
136 "IO error syncing inode, "
137 "inode=%lu, block=%llu",
139 (unsigned long long) bh
->b_blocknr
);