2 * Interface between ext4 and JBD
7 #include <trace/events/ext4.h>
9 /* Just increment the non-pointer handle value */
10 static handle_t
*ext4_get_nojournal(void)
12 handle_t
*handle
= current
->journal_info
;
13 unsigned long ref_cnt
= (unsigned long)handle
;
15 BUG_ON(ref_cnt
>= EXT4_NOJOURNAL_MAX_REF_COUNT
);
18 handle
= (handle_t
*)ref_cnt
;
20 current
->journal_info
= handle
;
25 /* Decrement the non-pointer handle value */
26 static void ext4_put_nojournal(handle_t
*handle
)
28 unsigned long ref_cnt
= (unsigned long)handle
;
33 handle
= (handle_t
*)ref_cnt
;
35 current
->journal_info
= handle
;
39 * Wrappers for jbd2_journal_start/end.
41 static int ext4_journal_check_start(struct super_block
*sb
)
46 if (sb
->s_flags
& MS_RDONLY
)
48 WARN_ON(sb
->s_writers
.frozen
== SB_FREEZE_COMPLETE
);
49 journal
= EXT4_SB(sb
)->s_journal
;
51 * Special case here: if the journal has aborted behind our
52 * backs (eg. EIO in the commit thread), then we still need to
53 * take the FS itself readonly cleanly.
55 if (journal
&& is_journal_aborted(journal
)) {
56 ext4_abort(sb
, "Detected aborted journal");
62 handle_t
*__ext4_journal_start_sb(struct super_block
*sb
, unsigned int line
,
63 int type
, int blocks
, int rsv_blocks
)
68 trace_ext4_journal_start(sb
, blocks
, rsv_blocks
, _RET_IP_
);
69 err
= ext4_journal_check_start(sb
);
73 journal
= EXT4_SB(sb
)->s_journal
;
75 return ext4_get_nojournal();
76 return jbd2__journal_start(journal
, blocks
, rsv_blocks
, GFP_NOFS
,
80 int __ext4_journal_stop(const char *where
, unsigned int line
, handle_t
*handle
)
82 struct super_block
*sb
;
86 if (!ext4_handle_valid(handle
)) {
87 ext4_put_nojournal(handle
);
90 sb
= handle
->h_transaction
->t_journal
->j_private
;
92 rc
= jbd2_journal_stop(handle
);
97 __ext4_std_error(sb
, where
, line
, err
);
101 handle_t
*__ext4_journal_start_reserved(handle_t
*handle
, unsigned int line
,
104 struct super_block
*sb
;
107 if (!ext4_handle_valid(handle
))
108 return ext4_get_nojournal();
110 sb
= handle
->h_journal
->j_private
;
111 trace_ext4_journal_start_reserved(sb
, handle
->h_buffer_credits
,
113 err
= ext4_journal_check_start(sb
);
115 jbd2_journal_free_reserved(handle
);
119 err
= jbd2_journal_start_reserved(handle
, type
, line
);
125 void ext4_journal_abort_handle(const char *caller
, unsigned int line
,
126 const char *err_fn
, struct buffer_head
*bh
,
127 handle_t
*handle
, int err
)
130 const char *errstr
= ext4_decode_error(NULL
, err
, nbuf
);
132 BUG_ON(!ext4_handle_valid(handle
));
135 BUFFER_TRACE(bh
, "abort");
140 if (is_handle_aborted(handle
))
143 printk(KERN_ERR
"EXT4-fs: %s:%d: aborting transaction: %s in %s\n",
144 caller
, line
, errstr
, err_fn
);
146 jbd2_journal_abort_handle(handle
);
149 int __ext4_journal_get_write_access(const char *where
, unsigned int line
,
150 handle_t
*handle
, struct buffer_head
*bh
)
156 if (ext4_handle_valid(handle
)) {
157 err
= jbd2_journal_get_write_access(handle
, bh
);
159 ext4_journal_abort_handle(where
, line
, __func__
, bh
,
166 * The ext4 forget function must perform a revoke if we are freeing data
167 * which has been journaled. Metadata (eg. indirect blocks) must be
168 * revoked in all cases.
170 * "bh" may be NULL: a metadata block may have been freed from memory
171 * but there may still be a record of it in the journal, and that record
172 * still needs to be revoked.
174 * If the handle isn't valid we're not journaling, but we still need to
175 * call into ext4_journal_revoke() to put the buffer head.
177 int __ext4_forget(const char *where
, unsigned int line
, handle_t
*handle
,
178 int is_metadata
, struct inode
*inode
,
179 struct buffer_head
*bh
, ext4_fsblk_t blocknr
)
185 trace_ext4_forget(inode
, is_metadata
, blocknr
);
186 BUFFER_TRACE(bh
, "enter");
188 jbd_debug(4, "forgetting bh %p: is_metadata = %d, mode %o, "
190 bh
, is_metadata
, inode
->i_mode
,
191 test_opt(inode
->i_sb
, DATA_FLAGS
));
193 /* In the no journal case, we can just do a bforget and return */
194 if (!ext4_handle_valid(handle
)) {
199 /* Never use the revoke function if we are doing full data
200 * journaling: there is no need to, and a V1 superblock won't
201 * support it. Otherwise, only skip the revoke on un-journaled
204 if (test_opt(inode
->i_sb
, DATA_FLAGS
) == EXT4_MOUNT_JOURNAL_DATA
||
205 (!is_metadata
&& !ext4_should_journal_data(inode
))) {
207 BUFFER_TRACE(bh
, "call jbd2_journal_forget");
208 err
= jbd2_journal_forget(handle
, bh
);
210 ext4_journal_abort_handle(where
, line
, __func__
,
218 * data!=journal && (is_metadata || should_journal_data(inode))
220 BUFFER_TRACE(bh
, "call jbd2_journal_revoke");
221 err
= jbd2_journal_revoke(handle
, blocknr
, bh
);
223 ext4_journal_abort_handle(where
, line
, __func__
,
225 __ext4_abort(inode
->i_sb
, where
, line
,
226 "error %d when attempting revoke", err
);
228 BUFFER_TRACE(bh
, "exit");
232 int __ext4_journal_get_create_access(const char *where
, unsigned int line
,
233 handle_t
*handle
, struct buffer_head
*bh
)
237 if (ext4_handle_valid(handle
)) {
238 err
= jbd2_journal_get_create_access(handle
, bh
);
240 ext4_journal_abort_handle(where
, line
, __func__
,
246 int __ext4_handle_dirty_metadata(const char *where
, unsigned int line
,
247 handle_t
*handle
, struct inode
*inode
,
248 struct buffer_head
*bh
)
256 if (ext4_handle_valid(handle
)) {
257 err
= jbd2_journal_dirty_metadata(handle
, bh
);
259 /* Errors can only happen if there is a bug */
261 __ext4_journal_stop(where
, line
, handle
);
265 mark_buffer_dirty_inode(bh
, inode
);
267 mark_buffer_dirty(bh
);
268 if (inode
&& inode_needs_sync(inode
)) {
269 sync_dirty_buffer(bh
);
270 if (buffer_req(bh
) && !buffer_uptodate(bh
)) {
271 struct ext4_super_block
*es
;
273 es
= EXT4_SB(inode
->i_sb
)->s_es
;
274 es
->s_last_error_block
=
275 cpu_to_le64(bh
->b_blocknr
);
276 ext4_error_inode(inode
, where
, line
,
278 "IO error syncing itable block");
286 int __ext4_handle_dirty_super(const char *where
, unsigned int line
,
287 handle_t
*handle
, struct super_block
*sb
)
289 struct buffer_head
*bh
= EXT4_SB(sb
)->s_sbh
;
292 ext4_superblock_csum_set(sb
);
293 if (ext4_handle_valid(handle
)) {
294 err
= jbd2_journal_dirty_metadata(handle
, bh
);
296 ext4_journal_abort_handle(where
, line
, __func__
,
299 mark_buffer_dirty(bh
);