1 // SPDX-License-Identifier: GPL-2.0+
3 * linux/fs/jbd2/transaction.c
5 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
7 * Copyright 1998 Red Hat corp --- All Rights Reserved
9 * Generic filesystem transaction handling code; part of the ext2fs
12 * This file manages transactions (compound commits managed by the
13 * journaling code) and handles (individual atomic operations by the
17 #include <linux/time.h>
19 #include <linux/jbd2.h>
20 #include <linux/errno.h>
21 #include <linux/slab.h>
22 #include <linux/timer.h>
24 #include <linux/highmem.h>
25 #include <linux/hrtimer.h>
26 #include <linux/backing-dev.h>
27 #include <linux/bug.h>
28 #include <linux/module.h>
29 #include <linux/sched/mm.h>
31 #include <trace/events/jbd2.h>
33 static void __jbd2_journal_temp_unlink_buffer(struct journal_head
*jh
);
34 static void __jbd2_journal_unfile_buffer(struct journal_head
*jh
);
36 static struct kmem_cache
*transaction_cache
;
37 int __init
jbd2_journal_init_transaction_cache(void)
39 J_ASSERT(!transaction_cache
);
40 transaction_cache
= kmem_cache_create("jbd2_transaction_s",
41 sizeof(transaction_t
),
43 SLAB_HWCACHE_ALIGN
|SLAB_TEMPORARY
,
45 if (!transaction_cache
) {
46 pr_emerg("JBD2: failed to create transaction cache\n");
52 void jbd2_journal_destroy_transaction_cache(void)
54 kmem_cache_destroy(transaction_cache
);
55 transaction_cache
= NULL
;
58 void jbd2_journal_free_transaction(transaction_t
*transaction
)
60 if (unlikely(ZERO_OR_NULL_PTR(transaction
)))
62 kmem_cache_free(transaction_cache
, transaction
);
66 * Base amount of descriptor blocks we reserve for each transaction.
68 static int jbd2_descriptor_blocks_per_trans(journal_t
*journal
)
70 int tag_space
= journal
->j_blocksize
- sizeof(journal_header_t
);
75 if (jbd2_journal_has_csum_v2or3(journal
))
76 tag_space
-= sizeof(struct jbd2_journal_block_tail
);
77 /* Commit code leaves a slack space of 16 bytes at the end of block */
78 tags_per_block
= (tag_space
- 16) / journal_tag_bytes(journal
);
80 * Revoke descriptors are accounted separately so we need to reserve
81 * space for commit block and normal transaction descriptor blocks.
83 return 1 + DIV_ROUND_UP(journal
->j_max_transaction_buffers
,
88 * jbd2_get_transaction: obtain a new transaction_t object.
90 * Simply initialise a new transaction. Initialize it in
91 * RUNNING state and add it to the current journal (which should not
92 * have an existing running transaction: we only make a new transaction
93 * once we have started to commit the old one).
96 * The journal MUST be locked. We don't perform atomic mallocs on the
97 * new transaction and we can't block without protecting against other
98 * processes trying to touch the journal while it is in transition.
102 static void jbd2_get_transaction(journal_t
*journal
,
103 transaction_t
*transaction
)
105 transaction
->t_journal
= journal
;
106 transaction
->t_state
= T_RUNNING
;
107 transaction
->t_start_time
= ktime_get();
108 transaction
->t_tid
= journal
->j_transaction_sequence
++;
109 transaction
->t_expires
= jiffies
+ journal
->j_commit_interval
;
110 spin_lock_init(&transaction
->t_handle_lock
);
111 atomic_set(&transaction
->t_updates
, 0);
112 atomic_set(&transaction
->t_outstanding_credits
,
113 jbd2_descriptor_blocks_per_trans(journal
) +
114 atomic_read(&journal
->j_reserved_credits
));
115 atomic_set(&transaction
->t_outstanding_revokes
, 0);
116 atomic_set(&transaction
->t_handle_count
, 0);
117 INIT_LIST_HEAD(&transaction
->t_inode_list
);
118 INIT_LIST_HEAD(&transaction
->t_private_list
);
120 /* Set up the commit timer for the new transaction. */
121 journal
->j_commit_timer
.expires
= round_jiffies_up(transaction
->t_expires
);
122 add_timer(&journal
->j_commit_timer
);
124 J_ASSERT(journal
->j_running_transaction
== NULL
);
125 journal
->j_running_transaction
= transaction
;
126 transaction
->t_max_wait
= 0;
127 transaction
->t_start
= jiffies
;
128 transaction
->t_requested
= 0;
134 * A handle_t is an object which represents a single atomic update to a
135 * filesystem, and which tracks all of the modifications which form part
136 * of that one update.
140 * Update transaction's maximum wait time, if debugging is enabled.
142 * In order for t_max_wait to be reliable, it must be protected by a
143 * lock. But doing so will mean that start_this_handle() can not be
144 * run in parallel on SMP systems, which limits our scalability. So
145 * unless debugging is enabled, we no longer update t_max_wait, which
146 * means that maximum wait time reported by the jbd2_run_stats
147 * tracepoint will always be zero.
149 static inline void update_t_max_wait(transaction_t
*transaction
,
152 #ifdef CONFIG_JBD2_DEBUG
153 if (jbd2_journal_enable_debug
&&
154 time_after(transaction
->t_start
, ts
)) {
155 ts
= jbd2_time_diff(ts
, transaction
->t_start
);
156 spin_lock(&transaction
->t_handle_lock
);
157 if (ts
> transaction
->t_max_wait
)
158 transaction
->t_max_wait
= ts
;
159 spin_unlock(&transaction
->t_handle_lock
);
165 * Wait until running transaction passes to T_FLUSH state and new transaction
166 * can thus be started. Also starts the commit if needed. The function expects
167 * running transaction to exist and releases j_state_lock.
169 static void wait_transaction_locked(journal_t
*journal
)
170 __releases(journal
->j_state_lock
)
174 tid_t tid
= journal
->j_running_transaction
->t_tid
;
176 prepare_to_wait(&journal
->j_wait_transaction_locked
, &wait
,
177 TASK_UNINTERRUPTIBLE
);
178 need_to_start
= !tid_geq(journal
->j_commit_request
, tid
);
179 read_unlock(&journal
->j_state_lock
);
181 jbd2_log_start_commit(journal
, tid
);
182 jbd2_might_wait_for_commit(journal
);
184 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
188 * Wait until running transaction transitions from T_SWITCH to T_FLUSH
189 * state and new transaction can thus be started. The function releases
192 static void wait_transaction_switching(journal_t
*journal
)
193 __releases(journal
->j_state_lock
)
197 if (WARN_ON(!journal
->j_running_transaction
||
198 journal
->j_running_transaction
->t_state
!= T_SWITCH
)) {
199 read_unlock(&journal
->j_state_lock
);
202 prepare_to_wait(&journal
->j_wait_transaction_locked
, &wait
,
203 TASK_UNINTERRUPTIBLE
);
204 read_unlock(&journal
->j_state_lock
);
206 * We don't call jbd2_might_wait_for_commit() here as there's no
207 * waiting for outstanding handles happening anymore in T_SWITCH state
208 * and handling of reserved handles actually relies on that for
212 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
215 static void sub_reserved_credits(journal_t
*journal
, int blocks
)
217 atomic_sub(blocks
, &journal
->j_reserved_credits
);
218 wake_up(&journal
->j_wait_reserved
);
222 * Wait until we can add credits for handle to the running transaction. Called
223 * with j_state_lock held for reading. Returns 0 if handle joined the running
224 * transaction. Returns 1 if we had to wait, j_state_lock is dropped, and
227 static int add_transaction_credits(journal_t
*journal
, int blocks
,
230 transaction_t
*t
= journal
->j_running_transaction
;
232 int total
= blocks
+ rsv_blocks
;
235 * If the current transaction is locked down for commit, wait
236 * for the lock to be released.
238 if (t
->t_state
!= T_RUNNING
) {
239 WARN_ON_ONCE(t
->t_state
>= T_FLUSH
);
240 wait_transaction_locked(journal
);
245 * If there is not enough space left in the log to write all
246 * potential buffers requested by this operation, we need to
247 * stall pending a log checkpoint to free some more log space.
249 needed
= atomic_add_return(total
, &t
->t_outstanding_credits
);
250 if (needed
> journal
->j_max_transaction_buffers
) {
252 * If the current transaction is already too large,
253 * then start to commit it: we can then go back and
254 * attach this handle to a new transaction.
256 atomic_sub(total
, &t
->t_outstanding_credits
);
259 * Is the number of reserved credits in the current transaction too
260 * big to fit this handle? Wait until reserved credits are freed.
262 if (atomic_read(&journal
->j_reserved_credits
) + total
>
263 journal
->j_max_transaction_buffers
) {
264 read_unlock(&journal
->j_state_lock
);
265 jbd2_might_wait_for_commit(journal
);
266 wait_event(journal
->j_wait_reserved
,
267 atomic_read(&journal
->j_reserved_credits
) + total
<=
268 journal
->j_max_transaction_buffers
);
272 wait_transaction_locked(journal
);
277 * The commit code assumes that it can get enough log space
278 * without forcing a checkpoint. This is *critical* for
279 * correctness: a checkpoint of a buffer which is also
280 * associated with a committing transaction creates a deadlock,
281 * so commit simply cannot force through checkpoints.
283 * We must therefore ensure the necessary space in the journal
284 * *before* starting to dirty potentially checkpointed buffers
285 * in the new transaction.
287 if (jbd2_log_space_left(journal
) < journal
->j_max_transaction_buffers
) {
288 atomic_sub(total
, &t
->t_outstanding_credits
);
289 read_unlock(&journal
->j_state_lock
);
290 jbd2_might_wait_for_commit(journal
);
291 write_lock(&journal
->j_state_lock
);
292 if (jbd2_log_space_left(journal
) <
293 journal
->j_max_transaction_buffers
)
294 __jbd2_log_wait_for_space(journal
);
295 write_unlock(&journal
->j_state_lock
);
299 /* No reservation? We are done... */
303 needed
= atomic_add_return(rsv_blocks
, &journal
->j_reserved_credits
);
304 /* We allow at most half of a transaction to be reserved */
305 if (needed
> journal
->j_max_transaction_buffers
/ 2) {
306 sub_reserved_credits(journal
, rsv_blocks
);
307 atomic_sub(total
, &t
->t_outstanding_credits
);
308 read_unlock(&journal
->j_state_lock
);
309 jbd2_might_wait_for_commit(journal
);
310 wait_event(journal
->j_wait_reserved
,
311 atomic_read(&journal
->j_reserved_credits
) + rsv_blocks
312 <= journal
->j_max_transaction_buffers
/ 2);
319 * start_this_handle: Given a handle, deal with any locking or stalling
320 * needed to make sure that there is enough journal space for the handle
321 * to begin. Attach the handle to a transaction and set up the
322 * transaction's buffer credits.
325 static int start_this_handle(journal_t
*journal
, handle_t
*handle
,
328 transaction_t
*transaction
, *new_transaction
= NULL
;
329 int blocks
= handle
->h_total_credits
;
331 unsigned long ts
= jiffies
;
333 if (handle
->h_rsv_handle
)
334 rsv_blocks
= handle
->h_rsv_handle
->h_total_credits
;
337 * Limit the number of reserved credits to 1/2 of maximum transaction
338 * size and limit the number of total credits to not exceed maximum
339 * transaction size per operation.
341 if ((rsv_blocks
> journal
->j_max_transaction_buffers
/ 2) ||
342 (rsv_blocks
+ blocks
> journal
->j_max_transaction_buffers
)) {
343 printk(KERN_ERR
"JBD2: %s wants too many credits "
344 "credits:%d rsv_credits:%d max:%d\n",
345 current
->comm
, blocks
, rsv_blocks
,
346 journal
->j_max_transaction_buffers
);
352 if (!journal
->j_running_transaction
) {
354 * If __GFP_FS is not present, then we may be being called from
355 * inside the fs writeback layer, so we MUST NOT fail.
357 if ((gfp_mask
& __GFP_FS
) == 0)
358 gfp_mask
|= __GFP_NOFAIL
;
359 new_transaction
= kmem_cache_zalloc(transaction_cache
,
361 if (!new_transaction
)
365 jbd_debug(3, "New handle %p going live.\n", handle
);
368 * We need to hold j_state_lock until t_updates has been incremented,
369 * for proper journal barrier handling
372 read_lock(&journal
->j_state_lock
);
373 BUG_ON(journal
->j_flags
& JBD2_UNMOUNT
);
374 if (is_journal_aborted(journal
) ||
375 (journal
->j_errno
!= 0 && !(journal
->j_flags
& JBD2_ACK_ERR
))) {
376 read_unlock(&journal
->j_state_lock
);
377 jbd2_journal_free_transaction(new_transaction
);
382 * Wait on the journal's transaction barrier if necessary. Specifically
383 * we allow reserved handles to proceed because otherwise commit could
384 * deadlock on page writeback not being able to complete.
386 if (!handle
->h_reserved
&& journal
->j_barrier_count
) {
387 read_unlock(&journal
->j_state_lock
);
388 wait_event(journal
->j_wait_transaction_locked
,
389 journal
->j_barrier_count
== 0);
393 if (!journal
->j_running_transaction
) {
394 read_unlock(&journal
->j_state_lock
);
395 if (!new_transaction
)
396 goto alloc_transaction
;
397 write_lock(&journal
->j_state_lock
);
398 if (!journal
->j_running_transaction
&&
399 (handle
->h_reserved
|| !journal
->j_barrier_count
)) {
400 jbd2_get_transaction(journal
, new_transaction
);
401 new_transaction
= NULL
;
403 write_unlock(&journal
->j_state_lock
);
407 transaction
= journal
->j_running_transaction
;
409 if (!handle
->h_reserved
) {
410 /* We may have dropped j_state_lock - restart in that case */
411 if (add_transaction_credits(journal
, blocks
, rsv_blocks
))
415 * We have handle reserved so we are allowed to join T_LOCKED
416 * transaction and we don't have to check for transaction size
417 * and journal space. But we still have to wait while running
418 * transaction is being switched to a committing one as it
419 * won't wait for any handles anymore.
421 if (transaction
->t_state
== T_SWITCH
) {
422 wait_transaction_switching(journal
);
425 sub_reserved_credits(journal
, blocks
);
426 handle
->h_reserved
= 0;
429 /* OK, account for the buffers that this operation expects to
430 * use and add the handle to the running transaction.
432 update_t_max_wait(transaction
, ts
);
433 handle
->h_transaction
= transaction
;
434 handle
->h_requested_credits
= blocks
;
435 handle
->h_revoke_credits_requested
= handle
->h_revoke_credits
;
436 handle
->h_start_jiffies
= jiffies
;
437 atomic_inc(&transaction
->t_updates
);
438 atomic_inc(&transaction
->t_handle_count
);
439 jbd_debug(4, "Handle %p given %d credits (total %d, free %lu)\n",
441 atomic_read(&transaction
->t_outstanding_credits
),
442 jbd2_log_space_left(journal
));
443 read_unlock(&journal
->j_state_lock
);
444 current
->journal_info
= handle
;
446 rwsem_acquire_read(&journal
->j_trans_commit_map
, 0, 0, _THIS_IP_
);
447 jbd2_journal_free_transaction(new_transaction
);
449 * Ensure that no allocations done while the transaction is open are
450 * going to recurse back to the fs layer.
452 handle
->saved_alloc_context
= memalloc_nofs_save();
456 /* Allocate a new handle. This should probably be in a slab... */
457 static handle_t
*new_handle(int nblocks
)
459 handle_t
*handle
= jbd2_alloc_handle(GFP_NOFS
);
462 handle
->h_total_credits
= nblocks
;
468 handle_t
*jbd2__journal_start(journal_t
*journal
, int nblocks
, int rsv_blocks
,
469 int revoke_records
, gfp_t gfp_mask
,
470 unsigned int type
, unsigned int line_no
)
472 handle_t
*handle
= journal_current_handle();
476 return ERR_PTR(-EROFS
);
479 J_ASSERT(handle
->h_transaction
->t_journal
== journal
);
484 nblocks
+= DIV_ROUND_UP(revoke_records
,
485 journal
->j_revoke_records_per_block
);
486 handle
= new_handle(nblocks
);
488 return ERR_PTR(-ENOMEM
);
490 handle_t
*rsv_handle
;
492 rsv_handle
= new_handle(rsv_blocks
);
494 jbd2_free_handle(handle
);
495 return ERR_PTR(-ENOMEM
);
497 rsv_handle
->h_reserved
= 1;
498 rsv_handle
->h_journal
= journal
;
499 handle
->h_rsv_handle
= rsv_handle
;
501 handle
->h_revoke_credits
= revoke_records
;
503 err
= start_this_handle(journal
, handle
, gfp_mask
);
505 if (handle
->h_rsv_handle
)
506 jbd2_free_handle(handle
->h_rsv_handle
);
507 jbd2_free_handle(handle
);
510 handle
->h_type
= type
;
511 handle
->h_line_no
= line_no
;
512 trace_jbd2_handle_start(journal
->j_fs_dev
->bd_dev
,
513 handle
->h_transaction
->t_tid
, type
,
518 EXPORT_SYMBOL(jbd2__journal_start
);
522 * jbd2_journal_start() - Obtain a new handle.
523 * @journal: Journal to start transaction on.
524 * @nblocks: number of block buffer we might modify
526 * We make sure that the transaction can guarantee at least nblocks of
527 * modified buffers in the log. We block until the log can guarantee
528 * that much space. Additionally, if rsv_blocks > 0, we also create another
529 * handle with rsv_blocks reserved blocks in the journal. This handle is
530 * stored in h_rsv_handle. It is not attached to any particular transaction
531 * and thus doesn't block transaction commit. If the caller uses this reserved
532 * handle, it has to set h_rsv_handle to NULL as otherwise jbd2_journal_stop()
533 * on the parent handle will dispose the reserved one. Reserved handle has to
534 * be converted to a normal handle using jbd2_journal_start_reserved() before
537 * Return a pointer to a newly allocated handle, or an ERR_PTR() value
540 handle_t
*jbd2_journal_start(journal_t
*journal
, int nblocks
)
542 return jbd2__journal_start(journal
, nblocks
, 0, 0, GFP_NOFS
, 0, 0);
544 EXPORT_SYMBOL(jbd2_journal_start
);
546 static void __jbd2_journal_unreserve_handle(handle_t
*handle
, transaction_t
*t
)
548 journal_t
*journal
= handle
->h_journal
;
550 WARN_ON(!handle
->h_reserved
);
551 sub_reserved_credits(journal
, handle
->h_total_credits
);
553 atomic_sub(handle
->h_total_credits
, &t
->t_outstanding_credits
);
556 void jbd2_journal_free_reserved(handle_t
*handle
)
558 journal_t
*journal
= handle
->h_journal
;
560 /* Get j_state_lock to pin running transaction if it exists */
561 read_lock(&journal
->j_state_lock
);
562 __jbd2_journal_unreserve_handle(handle
, journal
->j_running_transaction
);
563 read_unlock(&journal
->j_state_lock
);
564 jbd2_free_handle(handle
);
566 EXPORT_SYMBOL(jbd2_journal_free_reserved
);
569 * jbd2_journal_start_reserved() - start reserved handle
570 * @handle: handle to start
571 * @type: for handle statistics
572 * @line_no: for handle statistics
574 * Start handle that has been previously reserved with jbd2_journal_reserve().
575 * This attaches @handle to the running transaction (or creates one if there's
576 * not transaction running). Unlike jbd2_journal_start() this function cannot
577 * block on journal commit, checkpointing, or similar stuff. It can block on
578 * memory allocation or frozen journal though.
580 * Return 0 on success, non-zero on error - handle is freed in that case.
582 int jbd2_journal_start_reserved(handle_t
*handle
, unsigned int type
,
583 unsigned int line_no
)
585 journal_t
*journal
= handle
->h_journal
;
588 if (WARN_ON(!handle
->h_reserved
)) {
589 /* Someone passed in normal handle? Just stop it. */
590 jbd2_journal_stop(handle
);
594 * Usefulness of mixing of reserved and unreserved handles is
595 * questionable. So far nobody seems to need it so just error out.
597 if (WARN_ON(current
->journal_info
)) {
598 jbd2_journal_free_reserved(handle
);
602 handle
->h_journal
= NULL
;
604 * GFP_NOFS is here because callers are likely from writeback or
605 * similarly constrained call sites
607 ret
= start_this_handle(journal
, handle
, GFP_NOFS
);
609 handle
->h_journal
= journal
;
610 jbd2_journal_free_reserved(handle
);
613 handle
->h_type
= type
;
614 handle
->h_line_no
= line_no
;
615 trace_jbd2_handle_start(journal
->j_fs_dev
->bd_dev
,
616 handle
->h_transaction
->t_tid
, type
,
617 line_no
, handle
->h_total_credits
);
620 EXPORT_SYMBOL(jbd2_journal_start_reserved
);
623 * jbd2_journal_extend() - extend buffer credits.
624 * @handle: handle to 'extend'
625 * @nblocks: nr blocks to try to extend by.
626 * @revoke_records: number of revoke records to try to extend by.
628 * Some transactions, such as large extends and truncates, can be done
629 * atomically all at once or in several stages. The operation requests
630 * a credit for a number of buffer modifications in advance, but can
631 * extend its credit if it needs more.
633 * jbd2_journal_extend tries to give the running handle more buffer credits.
634 * It does not guarantee that allocation - this is a best-effort only.
635 * The calling process MUST be able to deal cleanly with a failure to
638 * Return 0 on success, non-zero on failure.
640 * return code < 0 implies an error
641 * return code > 0 implies normal transaction-full status.
643 int jbd2_journal_extend(handle_t
*handle
, int nblocks
, int revoke_records
)
645 transaction_t
*transaction
= handle
->h_transaction
;
650 if (is_handle_aborted(handle
))
652 journal
= transaction
->t_journal
;
656 read_lock(&journal
->j_state_lock
);
658 /* Don't extend a locked-down transaction! */
659 if (transaction
->t_state
!= T_RUNNING
) {
660 jbd_debug(3, "denied handle %p %d blocks: "
661 "transaction not running\n", handle
, nblocks
);
665 nblocks
+= DIV_ROUND_UP(
666 handle
->h_revoke_credits_requested
+ revoke_records
,
667 journal
->j_revoke_records_per_block
) -
669 handle
->h_revoke_credits_requested
,
670 journal
->j_revoke_records_per_block
);
671 spin_lock(&transaction
->t_handle_lock
);
672 wanted
= atomic_add_return(nblocks
,
673 &transaction
->t_outstanding_credits
);
675 if (wanted
> journal
->j_max_transaction_buffers
) {
676 jbd_debug(3, "denied handle %p %d blocks: "
677 "transaction too large\n", handle
, nblocks
);
678 atomic_sub(nblocks
, &transaction
->t_outstanding_credits
);
682 trace_jbd2_handle_extend(journal
->j_fs_dev
->bd_dev
,
684 handle
->h_type
, handle
->h_line_no
,
685 handle
->h_total_credits
,
688 handle
->h_total_credits
+= nblocks
;
689 handle
->h_requested_credits
+= nblocks
;
690 handle
->h_revoke_credits
+= revoke_records
;
691 handle
->h_revoke_credits_requested
+= revoke_records
;
694 jbd_debug(3, "extended handle %p by %d\n", handle
, nblocks
);
696 spin_unlock(&transaction
->t_handle_lock
);
698 read_unlock(&journal
->j_state_lock
);
702 static void stop_this_handle(handle_t
*handle
)
704 transaction_t
*transaction
= handle
->h_transaction
;
705 journal_t
*journal
= transaction
->t_journal
;
708 J_ASSERT(journal_current_handle() == handle
);
709 J_ASSERT(atomic_read(&transaction
->t_updates
) > 0);
710 current
->journal_info
= NULL
;
712 * Subtract necessary revoke descriptor blocks from handle credits. We
713 * take care to account only for revoke descriptor blocks the
714 * transaction will really need as large sequences of transactions with
715 * small numbers of revokes are relatively common.
717 revokes
= handle
->h_revoke_credits_requested
- handle
->h_revoke_credits
;
719 int t_revokes
, revoke_descriptors
;
720 int rr_per_blk
= journal
->j_revoke_records_per_block
;
722 WARN_ON_ONCE(DIV_ROUND_UP(revokes
, rr_per_blk
)
723 > handle
->h_total_credits
);
724 t_revokes
= atomic_add_return(revokes
,
725 &transaction
->t_outstanding_revokes
);
727 DIV_ROUND_UP(t_revokes
, rr_per_blk
) -
728 DIV_ROUND_UP(t_revokes
- revokes
, rr_per_blk
);
729 handle
->h_total_credits
-= revoke_descriptors
;
731 atomic_sub(handle
->h_total_credits
,
732 &transaction
->t_outstanding_credits
);
733 if (handle
->h_rsv_handle
)
734 __jbd2_journal_unreserve_handle(handle
->h_rsv_handle
,
736 if (atomic_dec_and_test(&transaction
->t_updates
))
737 wake_up(&journal
->j_wait_updates
);
739 rwsem_release(&journal
->j_trans_commit_map
, _THIS_IP_
);
741 * Scope of the GFP_NOFS context is over here and so we can restore the
742 * original alloc context.
744 memalloc_nofs_restore(handle
->saved_alloc_context
);
748 * jbd2__journal_restart() - restart a handle .
749 * @handle: handle to restart
750 * @nblocks: nr credits requested
751 * @revoke_records: number of revoke record credits requested
752 * @gfp_mask: memory allocation flags (for start_this_handle)
754 * Restart a handle for a multi-transaction filesystem
757 * If the jbd2_journal_extend() call above fails to grant new buffer credits
758 * to a running handle, a call to jbd2_journal_restart will commit the
759 * handle's transaction so far and reattach the handle to a new
760 * transaction capable of guaranteeing the requested number of
761 * credits. We preserve reserved handle if there's any attached to the
764 int jbd2__journal_restart(handle_t
*handle
, int nblocks
, int revoke_records
,
767 transaction_t
*transaction
= handle
->h_transaction
;
773 /* If we've had an abort of any type, don't even think about
774 * actually doing the restart! */
775 if (is_handle_aborted(handle
))
777 journal
= transaction
->t_journal
;
778 tid
= transaction
->t_tid
;
781 * First unlink the handle from its current transaction, and start the
784 jbd_debug(2, "restarting handle %p\n", handle
);
785 stop_this_handle(handle
);
786 handle
->h_transaction
= NULL
;
789 * TODO: If we use READ_ONCE / WRITE_ONCE for j_commit_request we can
790 * get rid of pointless j_state_lock traffic like this.
792 read_lock(&journal
->j_state_lock
);
793 need_to_start
= !tid_geq(journal
->j_commit_request
, tid
);
794 read_unlock(&journal
->j_state_lock
);
796 jbd2_log_start_commit(journal
, tid
);
797 handle
->h_total_credits
= nblocks
+
798 DIV_ROUND_UP(revoke_records
,
799 journal
->j_revoke_records_per_block
);
800 handle
->h_revoke_credits
= revoke_records
;
801 ret
= start_this_handle(journal
, handle
, gfp_mask
);
802 trace_jbd2_handle_restart(journal
->j_fs_dev
->bd_dev
,
803 ret
? 0 : handle
->h_transaction
->t_tid
,
804 handle
->h_type
, handle
->h_line_no
,
805 handle
->h_total_credits
);
808 EXPORT_SYMBOL(jbd2__journal_restart
);
811 int jbd2_journal_restart(handle_t
*handle
, int nblocks
)
813 return jbd2__journal_restart(handle
, nblocks
, 0, GFP_NOFS
);
815 EXPORT_SYMBOL(jbd2_journal_restart
);
818 * jbd2_journal_lock_updates () - establish a transaction barrier.
819 * @journal: Journal to establish a barrier on.
821 * This locks out any further updates from being started, and blocks
822 * until all existing updates have completed, returning only once the
823 * journal is in a quiescent state with no updates running.
825 * The journal lock should not be held on entry.
827 void jbd2_journal_lock_updates(journal_t
*journal
)
831 jbd2_might_wait_for_commit(journal
);
833 write_lock(&journal
->j_state_lock
);
834 ++journal
->j_barrier_count
;
836 /* Wait until there are no reserved handles */
837 if (atomic_read(&journal
->j_reserved_credits
)) {
838 write_unlock(&journal
->j_state_lock
);
839 wait_event(journal
->j_wait_reserved
,
840 atomic_read(&journal
->j_reserved_credits
) == 0);
841 write_lock(&journal
->j_state_lock
);
844 /* Wait until there are no running updates */
846 transaction_t
*transaction
= journal
->j_running_transaction
;
851 spin_lock(&transaction
->t_handle_lock
);
852 prepare_to_wait(&journal
->j_wait_updates
, &wait
,
853 TASK_UNINTERRUPTIBLE
);
854 if (!atomic_read(&transaction
->t_updates
)) {
855 spin_unlock(&transaction
->t_handle_lock
);
856 finish_wait(&journal
->j_wait_updates
, &wait
);
859 spin_unlock(&transaction
->t_handle_lock
);
860 write_unlock(&journal
->j_state_lock
);
862 finish_wait(&journal
->j_wait_updates
, &wait
);
863 write_lock(&journal
->j_state_lock
);
865 write_unlock(&journal
->j_state_lock
);
868 * We have now established a barrier against other normal updates, but
869 * we also need to barrier against other jbd2_journal_lock_updates() calls
870 * to make sure that we serialise special journal-locked operations
873 mutex_lock(&journal
->j_barrier
);
877 * jbd2_journal_unlock_updates () - release barrier
878 * @journal: Journal to release the barrier on.
880 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
882 * Should be called without the journal lock held.
884 void jbd2_journal_unlock_updates (journal_t
*journal
)
886 J_ASSERT(journal
->j_barrier_count
!= 0);
888 mutex_unlock(&journal
->j_barrier
);
889 write_lock(&journal
->j_state_lock
);
890 --journal
->j_barrier_count
;
891 write_unlock(&journal
->j_state_lock
);
892 wake_up(&journal
->j_wait_transaction_locked
);
895 static void warn_dirty_buffer(struct buffer_head
*bh
)
898 "JBD2: Spotted dirty metadata buffer (dev = %pg, blocknr = %llu). "
899 "There's a risk of filesystem corruption in case of system "
901 bh
->b_bdev
, (unsigned long long)bh
->b_blocknr
);
904 /* Call t_frozen trigger and copy buffer data into jh->b_frozen_data. */
905 static void jbd2_freeze_jh_data(struct journal_head
*jh
)
910 struct buffer_head
*bh
= jh2bh(jh
);
912 J_EXPECT_JH(jh
, buffer_uptodate(bh
), "Possible IO failure.\n");
914 offset
= offset_in_page(bh
->b_data
);
915 source
= kmap_atomic(page
);
916 /* Fire data frozen trigger just before we copy the data */
917 jbd2_buffer_frozen_trigger(jh
, source
+ offset
, jh
->b_triggers
);
918 memcpy(jh
->b_frozen_data
, source
+ offset
, bh
->b_size
);
919 kunmap_atomic(source
);
922 * Now that the frozen data is saved off, we need to store any matching
925 jh
->b_frozen_triggers
= jh
->b_triggers
;
929 * If the buffer is already part of the current transaction, then there
930 * is nothing we need to do. If it is already part of a prior
931 * transaction which we are still committing to disk, then we need to
932 * make sure that we do not overwrite the old copy: we do copy-out to
933 * preserve the copy going to disk. We also account the buffer against
934 * the handle's metadata buffer credits (unless the buffer is already
935 * part of the transaction, that is).
939 do_get_write_access(handle_t
*handle
, struct journal_head
*jh
,
942 struct buffer_head
*bh
;
943 transaction_t
*transaction
= handle
->h_transaction
;
946 char *frozen_buffer
= NULL
;
947 unsigned long start_lock
, time_lock
;
949 journal
= transaction
->t_journal
;
951 jbd_debug(5, "journal_head %p, force_copy %d\n", jh
, force_copy
);
953 JBUFFER_TRACE(jh
, "entry");
957 /* @@@ Need to check for errors here at some point. */
959 start_lock
= jiffies
;
961 spin_lock(&jh
->b_state_lock
);
963 /* If it takes too long to lock the buffer, trace it */
964 time_lock
= jbd2_time_diff(start_lock
, jiffies
);
965 if (time_lock
> HZ
/10)
966 trace_jbd2_lock_buffer_stall(bh
->b_bdev
->bd_dev
,
967 jiffies_to_msecs(time_lock
));
969 /* We now hold the buffer lock so it is safe to query the buffer
970 * state. Is the buffer dirty?
972 * If so, there are two possibilities. The buffer may be
973 * non-journaled, and undergoing a quite legitimate writeback.
974 * Otherwise, it is journaled, and we don't expect dirty buffers
975 * in that state (the buffers should be marked JBD_Dirty
976 * instead.) So either the IO is being done under our own
977 * control and this is a bug, or it's a third party IO such as
978 * dump(8) (which may leave the buffer scheduled for read ---
979 * ie. locked but not dirty) or tune2fs (which may actually have
980 * the buffer dirtied, ugh.) */
982 if (buffer_dirty(bh
)) {
984 * First question: is this buffer already part of the current
985 * transaction or the existing committing transaction?
987 if (jh
->b_transaction
) {
989 jh
->b_transaction
== transaction
||
991 journal
->j_committing_transaction
);
992 if (jh
->b_next_transaction
)
993 J_ASSERT_JH(jh
, jh
->b_next_transaction
==
995 warn_dirty_buffer(bh
);
998 * In any case we need to clean the dirty flag and we must
999 * do it under the buffer lock to be sure we don't race
1000 * with running write-out.
1002 JBUFFER_TRACE(jh
, "Journalling dirty buffer");
1003 clear_buffer_dirty(bh
);
1004 set_buffer_jbddirty(bh
);
1010 if (is_handle_aborted(handle
)) {
1011 spin_unlock(&jh
->b_state_lock
);
1017 * The buffer is already part of this transaction if b_transaction or
1018 * b_next_transaction points to it
1020 if (jh
->b_transaction
== transaction
||
1021 jh
->b_next_transaction
== transaction
)
1025 * this is the first time this transaction is touching this buffer,
1026 * reset the modified flag
1031 * If the buffer is not journaled right now, we need to make sure it
1032 * doesn't get written to disk before the caller actually commits the
1035 if (!jh
->b_transaction
) {
1036 JBUFFER_TRACE(jh
, "no transaction");
1037 J_ASSERT_JH(jh
, !jh
->b_next_transaction
);
1038 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
1040 * Make sure all stores to jh (b_modified, b_frozen_data) are
1041 * visible before attaching it to the running transaction.
1042 * Paired with barrier in jbd2_write_access_granted()
1045 spin_lock(&journal
->j_list_lock
);
1046 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Reserved
);
1047 spin_unlock(&journal
->j_list_lock
);
1051 * If there is already a copy-out version of this buffer, then we don't
1052 * need to make another one
1054 if (jh
->b_frozen_data
) {
1055 JBUFFER_TRACE(jh
, "has frozen data");
1056 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
1060 JBUFFER_TRACE(jh
, "owned by older transaction");
1061 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
1062 J_ASSERT_JH(jh
, jh
->b_transaction
== journal
->j_committing_transaction
);
1065 * There is one case we have to be very careful about. If the
1066 * committing transaction is currently writing this buffer out to disk
1067 * and has NOT made a copy-out, then we cannot modify the buffer
1068 * contents at all right now. The essence of copy-out is that it is
1069 * the extra copy, not the primary copy, which gets journaled. If the
1070 * primary copy is already going to disk then we cannot do copy-out
1073 if (buffer_shadow(bh
)) {
1074 JBUFFER_TRACE(jh
, "on shadow: sleep");
1075 spin_unlock(&jh
->b_state_lock
);
1076 wait_on_bit_io(&bh
->b_state
, BH_Shadow
, TASK_UNINTERRUPTIBLE
);
1081 * Only do the copy if the currently-owning transaction still needs it.
1082 * If buffer isn't on BJ_Metadata list, the committing transaction is
1083 * past that stage (here we use the fact that BH_Shadow is set under
1084 * bh_state lock together with refiling to BJ_Shadow list and at this
1085 * point we know the buffer doesn't have BH_Shadow set).
1087 * Subtle point, though: if this is a get_undo_access, then we will be
1088 * relying on the frozen_data to contain the new value of the
1089 * committed_data record after the transaction, so we HAVE to force the
1090 * frozen_data copy in that case.
1092 if (jh
->b_jlist
== BJ_Metadata
|| force_copy
) {
1093 JBUFFER_TRACE(jh
, "generate frozen data");
1094 if (!frozen_buffer
) {
1095 JBUFFER_TRACE(jh
, "allocate memory for buffer");
1096 spin_unlock(&jh
->b_state_lock
);
1097 frozen_buffer
= jbd2_alloc(jh2bh(jh
)->b_size
,
1098 GFP_NOFS
| __GFP_NOFAIL
);
1101 jh
->b_frozen_data
= frozen_buffer
;
1102 frozen_buffer
= NULL
;
1103 jbd2_freeze_jh_data(jh
);
1107 * Make sure all stores to jh (b_modified, b_frozen_data) are visible
1108 * before attaching it to the running transaction. Paired with barrier
1109 * in jbd2_write_access_granted()
1112 jh
->b_next_transaction
= transaction
;
1115 spin_unlock(&jh
->b_state_lock
);
1118 * If we are about to journal a buffer, then any revoke pending on it is
1121 jbd2_journal_cancel_revoke(handle
, jh
);
1124 if (unlikely(frozen_buffer
)) /* It's usually NULL */
1125 jbd2_free(frozen_buffer
, bh
->b_size
);
1127 JBUFFER_TRACE(jh
, "exit");
1131 /* Fast check whether buffer is already attached to the required transaction */
1132 static bool jbd2_write_access_granted(handle_t
*handle
, struct buffer_head
*bh
,
1135 struct journal_head
*jh
;
1138 /* Dirty buffers require special handling... */
1139 if (buffer_dirty(bh
))
1143 * RCU protects us from dereferencing freed pages. So the checks we do
1144 * are guaranteed not to oops. However the jh slab object can get freed
1145 * & reallocated while we work with it. So we have to be careful. When
1146 * we see jh attached to the running transaction, we know it must stay
1147 * so until the transaction is committed. Thus jh won't be freed and
1148 * will be attached to the same bh while we run. However it can
1149 * happen jh gets freed, reallocated, and attached to the transaction
1150 * just after we get pointer to it from bh. So we have to be careful
1151 * and recheck jh still belongs to our bh before we return success.
1154 if (!buffer_jbd(bh
))
1156 /* This should be bh2jh() but that doesn't work with inline functions */
1157 jh
= READ_ONCE(bh
->b_private
);
1160 /* For undo access buffer must have data copied */
1161 if (undo
&& !jh
->b_committed_data
)
1163 if (READ_ONCE(jh
->b_transaction
) != handle
->h_transaction
&&
1164 READ_ONCE(jh
->b_next_transaction
) != handle
->h_transaction
)
1167 * There are two reasons for the barrier here:
1168 * 1) Make sure to fetch b_bh after we did previous checks so that we
1169 * detect when jh went through free, realloc, attach to transaction
1170 * while we were checking. Paired with implicit barrier in that path.
1171 * 2) So that access to bh done after jbd2_write_access_granted()
1172 * doesn't get reordered and see inconsistent state of concurrent
1173 * do_get_write_access().
1176 if (unlikely(jh
->b_bh
!= bh
))
1185 * jbd2_journal_get_write_access() - notify intent to modify a buffer
1186 * for metadata (not data) update.
1187 * @handle: transaction to add buffer modifications to
1188 * @bh: bh to be used for metadata writes
1190 * Returns: error code or 0 on success.
1192 * In full data journalling mode the buffer may be of type BJ_AsyncData,
1193 * because we're ``write()ing`` a buffer which is also part of a shared mapping.
1196 int jbd2_journal_get_write_access(handle_t
*handle
, struct buffer_head
*bh
)
1198 struct journal_head
*jh
;
1201 if (is_handle_aborted(handle
))
1204 if (jbd2_write_access_granted(handle
, bh
, false))
1207 jh
= jbd2_journal_add_journal_head(bh
);
1208 /* We do not want to get caught playing with fields which the
1209 * log thread also manipulates. Make sure that the buffer
1210 * completes any outstanding IO before proceeding. */
1211 rc
= do_get_write_access(handle
, jh
, 0);
1212 jbd2_journal_put_journal_head(jh
);
1218 * When the user wants to journal a newly created buffer_head
1219 * (ie. getblk() returned a new buffer and we are going to populate it
1220 * manually rather than reading off disk), then we need to keep the
1221 * buffer_head locked until it has been completely filled with new
1222 * data. In this case, we should be able to make the assertion that
1223 * the bh is not already part of an existing transaction.
1225 * The buffer should already be locked by the caller by this point.
1226 * There is no lock ranking violation: it was a newly created,
1227 * unlocked buffer beforehand. */
1230 * jbd2_journal_get_create_access () - notify intent to use newly created bh
1231 * @handle: transaction to new buffer to
1234 * Call this if you create a new bh.
1236 int jbd2_journal_get_create_access(handle_t
*handle
, struct buffer_head
*bh
)
1238 transaction_t
*transaction
= handle
->h_transaction
;
1240 struct journal_head
*jh
= jbd2_journal_add_journal_head(bh
);
1243 jbd_debug(5, "journal_head %p\n", jh
);
1245 if (is_handle_aborted(handle
))
1247 journal
= transaction
->t_journal
;
1250 JBUFFER_TRACE(jh
, "entry");
1252 * The buffer may already belong to this transaction due to pre-zeroing
1253 * in the filesystem's new_block code. It may also be on the previous,
1254 * committing transaction's lists, but it HAS to be in Forget state in
1255 * that case: the transaction must have deleted the buffer for it to be
1258 spin_lock(&jh
->b_state_lock
);
1259 J_ASSERT_JH(jh
, (jh
->b_transaction
== transaction
||
1260 jh
->b_transaction
== NULL
||
1261 (jh
->b_transaction
== journal
->j_committing_transaction
&&
1262 jh
->b_jlist
== BJ_Forget
)));
1264 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
1265 J_ASSERT_JH(jh
, buffer_locked(jh2bh(jh
)));
1267 if (jh
->b_transaction
== NULL
) {
1269 * Previous jbd2_journal_forget() could have left the buffer
1270 * with jbddirty bit set because it was being committed. When
1271 * the commit finished, we've filed the buffer for
1272 * checkpointing and marked it dirty. Now we are reallocating
1273 * the buffer so the transaction freeing it must have
1274 * committed and so it's safe to clear the dirty bit.
1276 clear_buffer_dirty(jh2bh(jh
));
1277 /* first access by this transaction */
1280 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
1281 spin_lock(&journal
->j_list_lock
);
1282 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Reserved
);
1283 spin_unlock(&journal
->j_list_lock
);
1284 } else if (jh
->b_transaction
== journal
->j_committing_transaction
) {
1285 /* first access by this transaction */
1288 JBUFFER_TRACE(jh
, "set next transaction");
1289 spin_lock(&journal
->j_list_lock
);
1290 jh
->b_next_transaction
= transaction
;
1291 spin_unlock(&journal
->j_list_lock
);
1293 spin_unlock(&jh
->b_state_lock
);
1296 * akpm: I added this. ext3_alloc_branch can pick up new indirect
1297 * blocks which contain freed but then revoked metadata. We need
1298 * to cancel the revoke in case we end up freeing it yet again
1299 * and the reallocating as data - this would cause a second revoke,
1300 * which hits an assertion error.
1302 JBUFFER_TRACE(jh
, "cancelling revoke");
1303 jbd2_journal_cancel_revoke(handle
, jh
);
1305 jbd2_journal_put_journal_head(jh
);
1310 * jbd2_journal_get_undo_access() - Notify intent to modify metadata with
1311 * non-rewindable consequences
1312 * @handle: transaction
1313 * @bh: buffer to undo
1315 * Sometimes there is a need to distinguish between metadata which has
1316 * been committed to disk and that which has not. The ext3fs code uses
1317 * this for freeing and allocating space, we have to make sure that we
1318 * do not reuse freed space until the deallocation has been committed,
1319 * since if we overwrote that space we would make the delete
1320 * un-rewindable in case of a crash.
1322 * To deal with that, jbd2_journal_get_undo_access requests write access to a
1323 * buffer for parts of non-rewindable operations such as delete
1324 * operations on the bitmaps. The journaling code must keep a copy of
1325 * the buffer's contents prior to the undo_access call until such time
1326 * as we know that the buffer has definitely been committed to disk.
1328 * We never need to know which transaction the committed data is part
1329 * of, buffers touched here are guaranteed to be dirtied later and so
1330 * will be committed to a new transaction in due course, at which point
1331 * we can discard the old committed data pointer.
1333 * Returns error number or 0 on success.
1335 int jbd2_journal_get_undo_access(handle_t
*handle
, struct buffer_head
*bh
)
1338 struct journal_head
*jh
;
1339 char *committed_data
= NULL
;
1341 if (is_handle_aborted(handle
))
1344 if (jbd2_write_access_granted(handle
, bh
, true))
1347 jh
= jbd2_journal_add_journal_head(bh
);
1348 JBUFFER_TRACE(jh
, "entry");
1351 * Do this first --- it can drop the journal lock, so we want to
1352 * make sure that obtaining the committed_data is done
1353 * atomically wrt. completion of any outstanding commits.
1355 err
= do_get_write_access(handle
, jh
, 1);
1360 if (!jh
->b_committed_data
)
1361 committed_data
= jbd2_alloc(jh2bh(jh
)->b_size
,
1362 GFP_NOFS
|__GFP_NOFAIL
);
1364 spin_lock(&jh
->b_state_lock
);
1365 if (!jh
->b_committed_data
) {
1366 /* Copy out the current buffer contents into the
1367 * preserved, committed copy. */
1368 JBUFFER_TRACE(jh
, "generate b_committed data");
1369 if (!committed_data
) {
1370 spin_unlock(&jh
->b_state_lock
);
1374 jh
->b_committed_data
= committed_data
;
1375 committed_data
= NULL
;
1376 memcpy(jh
->b_committed_data
, bh
->b_data
, bh
->b_size
);
1378 spin_unlock(&jh
->b_state_lock
);
1380 jbd2_journal_put_journal_head(jh
);
1381 if (unlikely(committed_data
))
1382 jbd2_free(committed_data
, bh
->b_size
);
1387 * jbd2_journal_set_triggers() - Add triggers for commit writeout
1388 * @bh: buffer to trigger on
1389 * @type: struct jbd2_buffer_trigger_type containing the trigger(s).
1391 * Set any triggers on this journal_head. This is always safe, because
1392 * triggers for a committing buffer will be saved off, and triggers for
1393 * a running transaction will match the buffer in that transaction.
1395 * Call with NULL to clear the triggers.
1397 void jbd2_journal_set_triggers(struct buffer_head
*bh
,
1398 struct jbd2_buffer_trigger_type
*type
)
1400 struct journal_head
*jh
= jbd2_journal_grab_journal_head(bh
);
1404 jh
->b_triggers
= type
;
1405 jbd2_journal_put_journal_head(jh
);
1408 void jbd2_buffer_frozen_trigger(struct journal_head
*jh
, void *mapped_data
,
1409 struct jbd2_buffer_trigger_type
*triggers
)
1411 struct buffer_head
*bh
= jh2bh(jh
);
1413 if (!triggers
|| !triggers
->t_frozen
)
1416 triggers
->t_frozen(triggers
, bh
, mapped_data
, bh
->b_size
);
1419 void jbd2_buffer_abort_trigger(struct journal_head
*jh
,
1420 struct jbd2_buffer_trigger_type
*triggers
)
1422 if (!triggers
|| !triggers
->t_abort
)
1425 triggers
->t_abort(triggers
, jh2bh(jh
));
1429 * jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
1430 * @handle: transaction to add buffer to.
1431 * @bh: buffer to mark
1433 * mark dirty metadata which needs to be journaled as part of the current
1436 * The buffer must have previously had jbd2_journal_get_write_access()
1437 * called so that it has a valid journal_head attached to the buffer
1440 * The buffer is placed on the transaction's metadata list and is marked
1441 * as belonging to the transaction.
1443 * Returns error number or 0 on success.
1445 * Special care needs to be taken if the buffer already belongs to the
1446 * current committing transaction (in which case we should have frozen
1447 * data present for that commit). In that case, we don't relink the
1448 * buffer: that only gets done when the old transaction finally
1449 * completes its commit.
1451 int jbd2_journal_dirty_metadata(handle_t
*handle
, struct buffer_head
*bh
)
1453 transaction_t
*transaction
= handle
->h_transaction
;
1455 struct journal_head
*jh
;
1458 if (is_handle_aborted(handle
))
1460 if (!buffer_jbd(bh
))
1464 * We don't grab jh reference here since the buffer must be part
1465 * of the running transaction.
1468 jbd_debug(5, "journal_head %p\n", jh
);
1469 JBUFFER_TRACE(jh
, "entry");
1472 * This and the following assertions are unreliable since we may see jh
1473 * in inconsistent state unless we grab bh_state lock. But this is
1474 * crucial to catch bugs so let's do a reliable check until the
1475 * lockless handling is fully proven.
1477 if (jh
->b_transaction
!= transaction
&&
1478 jh
->b_next_transaction
!= transaction
) {
1479 spin_lock(&jh
->b_state_lock
);
1480 J_ASSERT_JH(jh
, jh
->b_transaction
== transaction
||
1481 jh
->b_next_transaction
== transaction
);
1482 spin_unlock(&jh
->b_state_lock
);
1484 if (jh
->b_modified
== 1) {
1485 /* If it's in our transaction it must be in BJ_Metadata list. */
1486 if (jh
->b_transaction
== transaction
&&
1487 jh
->b_jlist
!= BJ_Metadata
) {
1488 spin_lock(&jh
->b_state_lock
);
1489 if (jh
->b_transaction
== transaction
&&
1490 jh
->b_jlist
!= BJ_Metadata
)
1491 pr_err("JBD2: assertion failure: h_type=%u "
1492 "h_line_no=%u block_no=%llu jlist=%u\n",
1493 handle
->h_type
, handle
->h_line_no
,
1494 (unsigned long long) bh
->b_blocknr
,
1496 J_ASSERT_JH(jh
, jh
->b_transaction
!= transaction
||
1497 jh
->b_jlist
== BJ_Metadata
);
1498 spin_unlock(&jh
->b_state_lock
);
1503 journal
= transaction
->t_journal
;
1504 spin_lock(&jh
->b_state_lock
);
1506 if (jh
->b_modified
== 0) {
1508 * This buffer's got modified and becoming part
1509 * of the transaction. This needs to be done
1510 * once a transaction -bzzz
1512 if (WARN_ON_ONCE(jbd2_handle_buffer_credits(handle
) <= 0)) {
1517 handle
->h_total_credits
--;
1521 * fastpath, to avoid expensive locking. If this buffer is already
1522 * on the running transaction's metadata list there is nothing to do.
1523 * Nobody can take it off again because there is a handle open.
1524 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1525 * result in this test being false, so we go in and take the locks.
1527 if (jh
->b_transaction
== transaction
&& jh
->b_jlist
== BJ_Metadata
) {
1528 JBUFFER_TRACE(jh
, "fastpath");
1529 if (unlikely(jh
->b_transaction
!=
1530 journal
->j_running_transaction
)) {
1531 printk(KERN_ERR
"JBD2: %s: "
1532 "jh->b_transaction (%llu, %p, %u) != "
1533 "journal->j_running_transaction (%p, %u)\n",
1535 (unsigned long long) bh
->b_blocknr
,
1537 jh
->b_transaction
? jh
->b_transaction
->t_tid
: 0,
1538 journal
->j_running_transaction
,
1539 journal
->j_running_transaction
?
1540 journal
->j_running_transaction
->t_tid
: 0);
1546 set_buffer_jbddirty(bh
);
1549 * Metadata already on the current transaction list doesn't
1550 * need to be filed. Metadata on another transaction's list must
1551 * be committing, and will be refiled once the commit completes:
1552 * leave it alone for now.
1554 if (jh
->b_transaction
!= transaction
) {
1555 JBUFFER_TRACE(jh
, "already on other transaction");
1556 if (unlikely(((jh
->b_transaction
!=
1557 journal
->j_committing_transaction
)) ||
1558 (jh
->b_next_transaction
!= transaction
))) {
1559 printk(KERN_ERR
"jbd2_journal_dirty_metadata: %s: "
1560 "bad jh for block %llu: "
1561 "transaction (%p, %u), "
1562 "jh->b_transaction (%p, %u), "
1563 "jh->b_next_transaction (%p, %u), jlist %u\n",
1565 (unsigned long long) bh
->b_blocknr
,
1566 transaction
, transaction
->t_tid
,
1569 jh
->b_transaction
->t_tid
: 0,
1570 jh
->b_next_transaction
,
1571 jh
->b_next_transaction
?
1572 jh
->b_next_transaction
->t_tid
: 0,
1577 /* And this case is illegal: we can't reuse another
1578 * transaction's data buffer, ever. */
1582 /* That test should have eliminated the following case: */
1583 J_ASSERT_JH(jh
, jh
->b_frozen_data
== NULL
);
1585 JBUFFER_TRACE(jh
, "file as BJ_Metadata");
1586 spin_lock(&journal
->j_list_lock
);
1587 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Metadata
);
1588 spin_unlock(&journal
->j_list_lock
);
1590 spin_unlock(&jh
->b_state_lock
);
1592 JBUFFER_TRACE(jh
, "exit");
1597 * jbd2_journal_forget() - bforget() for potentially-journaled buffers.
1598 * @handle: transaction handle
1599 * @bh: bh to 'forget'
1601 * We can only do the bforget if there are no commits pending against the
1602 * buffer. If the buffer is dirty in the current running transaction we
1603 * can safely unlink it.
1605 * bh may not be a journalled buffer at all - it may be a non-JBD
1606 * buffer which came off the hashtable. Check for this.
1608 * Decrements bh->b_count by one.
1610 * Allow this call even if the handle has aborted --- it may be part of
1611 * the caller's cleanup after an abort.
1613 int jbd2_journal_forget(handle_t
*handle
, struct buffer_head
*bh
)
1615 transaction_t
*transaction
= handle
->h_transaction
;
1617 struct journal_head
*jh
;
1618 int drop_reserve
= 0;
1620 int was_modified
= 0;
1622 if (is_handle_aborted(handle
))
1624 journal
= transaction
->t_journal
;
1626 BUFFER_TRACE(bh
, "entry");
1628 jh
= jbd2_journal_grab_journal_head(bh
);
1634 spin_lock(&jh
->b_state_lock
);
1636 /* Critical error: attempting to delete a bitmap buffer, maybe?
1637 * Don't do any jbd operations, and return an error. */
1638 if (!J_EXPECT_JH(jh
, !jh
->b_committed_data
,
1639 "inconsistent data on disk")) {
1644 /* keep track of whether or not this transaction modified us */
1645 was_modified
= jh
->b_modified
;
1648 * The buffer's going from the transaction, we must drop
1649 * all references -bzzz
1653 if (jh
->b_transaction
== transaction
) {
1654 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
1656 /* If we are forgetting a buffer which is already part
1657 * of this transaction, then we can just drop it from
1658 * the transaction immediately. */
1659 clear_buffer_dirty(bh
);
1660 clear_buffer_jbddirty(bh
);
1662 JBUFFER_TRACE(jh
, "belongs to current transaction: unfile");
1665 * we only want to drop a reference if this transaction
1666 * modified the buffer
1672 * We are no longer going to journal this buffer.
1673 * However, the commit of this transaction is still
1674 * important to the buffer: the delete that we are now
1675 * processing might obsolete an old log entry, so by
1676 * committing, we can satisfy the buffer's checkpoint.
1678 * So, if we have a checkpoint on the buffer, we should
1679 * now refile the buffer on our BJ_Forget list so that
1680 * we know to remove the checkpoint after we commit.
1683 spin_lock(&journal
->j_list_lock
);
1684 if (jh
->b_cp_transaction
) {
1685 __jbd2_journal_temp_unlink_buffer(jh
);
1686 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Forget
);
1688 __jbd2_journal_unfile_buffer(jh
);
1689 jbd2_journal_put_journal_head(jh
);
1691 spin_unlock(&journal
->j_list_lock
);
1692 } else if (jh
->b_transaction
) {
1693 J_ASSERT_JH(jh
, (jh
->b_transaction
==
1694 journal
->j_committing_transaction
));
1695 /* However, if the buffer is still owned by a prior
1696 * (committing) transaction, we can't drop it yet... */
1697 JBUFFER_TRACE(jh
, "belongs to older transaction");
1698 /* ... but we CAN drop it from the new transaction through
1699 * marking the buffer as freed and set j_next_transaction to
1700 * the new transaction, so that not only the commit code
1701 * knows it should clear dirty bits when it is done with the
1702 * buffer, but also the buffer can be checkpointed only
1703 * after the new transaction commits. */
1705 set_buffer_freed(bh
);
1707 if (!jh
->b_next_transaction
) {
1708 spin_lock(&journal
->j_list_lock
);
1709 jh
->b_next_transaction
= transaction
;
1710 spin_unlock(&journal
->j_list_lock
);
1712 J_ASSERT(jh
->b_next_transaction
== transaction
);
1715 * only drop a reference if this transaction modified
1723 * Finally, if the buffer is not belongs to any
1724 * transaction, we can just drop it now if it has no
1727 spin_lock(&journal
->j_list_lock
);
1728 if (!jh
->b_cp_transaction
) {
1729 JBUFFER_TRACE(jh
, "belongs to none transaction");
1730 spin_unlock(&journal
->j_list_lock
);
1735 * Otherwise, if the buffer has been written to disk,
1736 * it is safe to remove the checkpoint and drop it.
1738 if (!buffer_dirty(bh
)) {
1739 __jbd2_journal_remove_checkpoint(jh
);
1740 spin_unlock(&journal
->j_list_lock
);
1745 * The buffer is still not written to disk, we should
1746 * attach this buffer to current transaction so that the
1747 * buffer can be checkpointed only after the current
1748 * transaction commits.
1750 clear_buffer_dirty(bh
);
1751 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Forget
);
1752 spin_unlock(&journal
->j_list_lock
);
1756 spin_unlock(&jh
->b_state_lock
);
1757 jbd2_journal_put_journal_head(jh
);
1759 /* no need to reserve log space for this block -bzzz */
1760 handle
->h_total_credits
++;
1766 * jbd2_journal_stop() - complete a transaction
1767 * @handle: transaction to complete.
1769 * All done for a particular handle.
1771 * There is not much action needed here. We just return any remaining
1772 * buffer credits to the transaction and remove the handle. The only
1773 * complication is that we need to start a commit operation if the
1774 * filesystem is marked for synchronous update.
1776 * jbd2_journal_stop itself will not usually return an error, but it may
1777 * do so in unusual circumstances. In particular, expect it to
1778 * return -EIO if a jbd2_journal_abort has been executed since the
1779 * transaction began.
1781 int jbd2_journal_stop(handle_t
*handle
)
1783 transaction_t
*transaction
= handle
->h_transaction
;
1785 int err
= 0, wait_for_commit
= 0;
1789 if (--handle
->h_ref
> 0) {
1790 jbd_debug(4, "h_ref %d -> %d\n", handle
->h_ref
+ 1,
1792 if (is_handle_aborted(handle
))
1798 * Handle is already detached from the transaction so there is
1799 * nothing to do other than free the handle.
1801 memalloc_nofs_restore(handle
->saved_alloc_context
);
1804 journal
= transaction
->t_journal
;
1805 tid
= transaction
->t_tid
;
1807 if (is_handle_aborted(handle
))
1810 jbd_debug(4, "Handle %p going down\n", handle
);
1811 trace_jbd2_handle_stats(journal
->j_fs_dev
->bd_dev
,
1812 tid
, handle
->h_type
, handle
->h_line_no
,
1813 jiffies
- handle
->h_start_jiffies
,
1814 handle
->h_sync
, handle
->h_requested_credits
,
1815 (handle
->h_requested_credits
-
1816 handle
->h_total_credits
));
1819 * Implement synchronous transaction batching. If the handle
1820 * was synchronous, don't force a commit immediately. Let's
1821 * yield and let another thread piggyback onto this
1822 * transaction. Keep doing that while new threads continue to
1823 * arrive. It doesn't cost much - we're about to run a commit
1824 * and sleep on IO anyway. Speeds up many-threaded, many-dir
1825 * operations by 30x or more...
1827 * We try and optimize the sleep time against what the
1828 * underlying disk can do, instead of having a static sleep
1829 * time. This is useful for the case where our storage is so
1830 * fast that it is more optimal to go ahead and force a flush
1831 * and wait for the transaction to be committed than it is to
1832 * wait for an arbitrary amount of time for new writers to
1833 * join the transaction. We achieve this by measuring how
1834 * long it takes to commit a transaction, and compare it with
1835 * how long this transaction has been running, and if run time
1836 * < commit time then we sleep for the delta and commit. This
1837 * greatly helps super fast disks that would see slowdowns as
1838 * more threads started doing fsyncs.
1840 * But don't do this if this process was the most recent one
1841 * to perform a synchronous write. We do this to detect the
1842 * case where a single process is doing a stream of sync
1843 * writes. No point in waiting for joiners in that case.
1845 * Setting max_batch_time to 0 disables this completely.
1848 if (handle
->h_sync
&& journal
->j_last_sync_writer
!= pid
&&
1849 journal
->j_max_batch_time
) {
1850 u64 commit_time
, trans_time
;
1852 journal
->j_last_sync_writer
= pid
;
1854 read_lock(&journal
->j_state_lock
);
1855 commit_time
= journal
->j_average_commit_time
;
1856 read_unlock(&journal
->j_state_lock
);
1858 trans_time
= ktime_to_ns(ktime_sub(ktime_get(),
1859 transaction
->t_start_time
));
1861 commit_time
= max_t(u64
, commit_time
,
1862 1000*journal
->j_min_batch_time
);
1863 commit_time
= min_t(u64
, commit_time
,
1864 1000*journal
->j_max_batch_time
);
1866 if (trans_time
< commit_time
) {
1867 ktime_t expires
= ktime_add_ns(ktime_get(),
1869 set_current_state(TASK_UNINTERRUPTIBLE
);
1870 schedule_hrtimeout(&expires
, HRTIMER_MODE_ABS
);
1875 transaction
->t_synchronous_commit
= 1;
1878 * If the handle is marked SYNC, we need to set another commit
1879 * going! We also want to force a commit if the transaction is too
1882 if (handle
->h_sync
||
1883 time_after_eq(jiffies
, transaction
->t_expires
)) {
1884 /* Do this even for aborted journals: an abort still
1885 * completes the commit thread, it just doesn't write
1886 * anything to disk. */
1888 jbd_debug(2, "transaction too old, requesting commit for "
1889 "handle %p\n", handle
);
1890 /* This is non-blocking */
1891 jbd2_log_start_commit(journal
, tid
);
1894 * Special case: JBD2_SYNC synchronous updates require us
1895 * to wait for the commit to complete.
1897 if (handle
->h_sync
&& !(current
->flags
& PF_MEMALLOC
))
1898 wait_for_commit
= 1;
1902 * Once stop_this_handle() drops t_updates, the transaction could start
1903 * committing on us and eventually disappear. So we must not
1904 * dereference transaction pointer again after calling
1905 * stop_this_handle().
1907 stop_this_handle(handle
);
1909 if (wait_for_commit
)
1910 err
= jbd2_log_wait_commit(journal
, tid
);
1913 if (handle
->h_rsv_handle
)
1914 jbd2_free_handle(handle
->h_rsv_handle
);
1915 jbd2_free_handle(handle
);
1921 * List management code snippets: various functions for manipulating the
1922 * transaction buffer lists.
1927 * Append a buffer to a transaction list, given the transaction's list head
1930 * j_list_lock is held.
1932 * jh->b_state_lock is held.
1936 __blist_add_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1939 jh
->b_tnext
= jh
->b_tprev
= jh
;
1942 /* Insert at the tail of the list to preserve order */
1943 struct journal_head
*first
= *list
, *last
= first
->b_tprev
;
1945 jh
->b_tnext
= first
;
1946 last
->b_tnext
= first
->b_tprev
= jh
;
1951 * Remove a buffer from a transaction list, given the transaction's list
1954 * Called with j_list_lock held, and the journal may not be locked.
1956 * jh->b_state_lock is held.
1960 __blist_del_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1963 *list
= jh
->b_tnext
;
1967 jh
->b_tprev
->b_tnext
= jh
->b_tnext
;
1968 jh
->b_tnext
->b_tprev
= jh
->b_tprev
;
1972 * Remove a buffer from the appropriate transaction list.
1974 * Note that this function can *change* the value of
1975 * bh->b_transaction->t_buffers, t_forget, t_shadow_list, t_log_list or
1976 * t_reserved_list. If the caller is holding onto a copy of one of these
1977 * pointers, it could go bad. Generally the caller needs to re-read the
1978 * pointer from the transaction_t.
1980 * Called under j_list_lock.
1982 static void __jbd2_journal_temp_unlink_buffer(struct journal_head
*jh
)
1984 struct journal_head
**list
= NULL
;
1985 transaction_t
*transaction
;
1986 struct buffer_head
*bh
= jh2bh(jh
);
1988 lockdep_assert_held(&jh
->b_state_lock
);
1989 transaction
= jh
->b_transaction
;
1991 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
1993 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
1994 if (jh
->b_jlist
!= BJ_None
)
1995 J_ASSERT_JH(jh
, transaction
!= NULL
);
1997 switch (jh
->b_jlist
) {
2001 transaction
->t_nr_buffers
--;
2002 J_ASSERT_JH(jh
, transaction
->t_nr_buffers
>= 0);
2003 list
= &transaction
->t_buffers
;
2006 list
= &transaction
->t_forget
;
2009 list
= &transaction
->t_shadow_list
;
2012 list
= &transaction
->t_reserved_list
;
2016 __blist_del_buffer(list
, jh
);
2017 jh
->b_jlist
= BJ_None
;
2018 if (transaction
&& is_journal_aborted(transaction
->t_journal
))
2019 clear_buffer_jbddirty(bh
);
2020 else if (test_clear_buffer_jbddirty(bh
))
2021 mark_buffer_dirty(bh
); /* Expose it to the VM */
2025 * Remove buffer from all transactions. The caller is responsible for dropping
2026 * the jh reference that belonged to the transaction.
2028 * Called with bh_state lock and j_list_lock
2030 static void __jbd2_journal_unfile_buffer(struct journal_head
*jh
)
2032 J_ASSERT_JH(jh
, jh
->b_transaction
!= NULL
);
2033 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
2035 __jbd2_journal_temp_unlink_buffer(jh
);
2036 jh
->b_transaction
= NULL
;
2039 void jbd2_journal_unfile_buffer(journal_t
*journal
, struct journal_head
*jh
)
2041 struct buffer_head
*bh
= jh2bh(jh
);
2043 /* Get reference so that buffer cannot be freed before we unlock it */
2045 spin_lock(&jh
->b_state_lock
);
2046 spin_lock(&journal
->j_list_lock
);
2047 __jbd2_journal_unfile_buffer(jh
);
2048 spin_unlock(&journal
->j_list_lock
);
2049 spin_unlock(&jh
->b_state_lock
);
2050 jbd2_journal_put_journal_head(jh
);
2055 * Called from jbd2_journal_try_to_free_buffers().
2057 * Called under jh->b_state_lock
2060 __journal_try_to_free_buffer(journal_t
*journal
, struct buffer_head
*bh
)
2062 struct journal_head
*jh
;
2066 if (buffer_locked(bh
) || buffer_dirty(bh
))
2069 if (jh
->b_next_transaction
!= NULL
|| jh
->b_transaction
!= NULL
)
2072 spin_lock(&journal
->j_list_lock
);
2073 if (jh
->b_cp_transaction
!= NULL
) {
2074 /* written-back checkpointed metadata buffer */
2075 JBUFFER_TRACE(jh
, "remove from checkpoint list");
2076 __jbd2_journal_remove_checkpoint(jh
);
2078 spin_unlock(&journal
->j_list_lock
);
2084 * jbd2_journal_try_to_free_buffers() - try to free page buffers.
2085 * @journal: journal for operation
2086 * @page: to try and free
2088 * For all the buffers on this page,
2089 * if they are fully written out ordered data, move them onto BUF_CLEAN
2090 * so try_to_free_buffers() can reap them.
2092 * This function returns non-zero if we wish try_to_free_buffers()
2093 * to be called. We do this if the page is releasable by try_to_free_buffers().
2094 * We also do it if the page has locked or dirty buffers and the caller wants
2095 * us to perform sync or async writeout.
2097 * This complicates JBD locking somewhat. We aren't protected by the
2098 * BKL here. We wish to remove the buffer from its committing or
2099 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
2101 * This may *change* the value of transaction_t->t_datalist, so anyone
2102 * who looks at t_datalist needs to lock against this function.
2104 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
2105 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
2106 * will come out of the lock with the buffer dirty, which makes it
2107 * ineligible for release here.
2109 * Who else is affected by this? hmm... Really the only contender
2110 * is do_get_write_access() - it could be looking at the buffer while
2111 * journal_try_to_free_buffer() is changing its state. But that
2112 * cannot happen because we never reallocate freed data as metadata
2113 * while the data is part of a transaction. Yes?
2115 * Return 0 on failure, 1 on success
2117 int jbd2_journal_try_to_free_buffers(journal_t
*journal
, struct page
*page
)
2119 struct buffer_head
*head
;
2120 struct buffer_head
*bh
;
2121 bool has_write_io_error
= false;
2124 J_ASSERT(PageLocked(page
));
2126 head
= page_buffers(page
);
2129 struct journal_head
*jh
;
2132 * We take our own ref against the journal_head here to avoid
2133 * having to add tons of locking around each instance of
2134 * jbd2_journal_put_journal_head().
2136 jh
= jbd2_journal_grab_journal_head(bh
);
2140 spin_lock(&jh
->b_state_lock
);
2141 __journal_try_to_free_buffer(journal
, bh
);
2142 spin_unlock(&jh
->b_state_lock
);
2143 jbd2_journal_put_journal_head(jh
);
2148 * If we free a metadata buffer which has been failed to
2149 * write out, the jbd2 checkpoint procedure will not detect
2150 * this failure and may lead to filesystem inconsistency
2151 * after cleanup journal tail.
2153 if (buffer_write_io_error(bh
)) {
2154 pr_err("JBD2: Error while async write back metadata bh %llu.",
2155 (unsigned long long)bh
->b_blocknr
);
2156 has_write_io_error
= true;
2158 } while ((bh
= bh
->b_this_page
) != head
);
2160 ret
= try_to_free_buffers(page
);
2163 if (has_write_io_error
)
2164 jbd2_journal_abort(journal
, -EIO
);
2170 * This buffer is no longer needed. If it is on an older transaction's
2171 * checkpoint list we need to record it on this transaction's forget list
2172 * to pin this buffer (and hence its checkpointing transaction) down until
2173 * this transaction commits. If the buffer isn't on a checkpoint list, we
2175 * Returns non-zero if JBD no longer has an interest in the buffer.
2177 * Called under j_list_lock.
2179 * Called under jh->b_state_lock.
2181 static int __dispose_buffer(struct journal_head
*jh
, transaction_t
*transaction
)
2184 struct buffer_head
*bh
= jh2bh(jh
);
2186 if (jh
->b_cp_transaction
) {
2187 JBUFFER_TRACE(jh
, "on running+cp transaction");
2188 __jbd2_journal_temp_unlink_buffer(jh
);
2190 * We don't want to write the buffer anymore, clear the
2191 * bit so that we don't confuse checks in
2192 * __journal_file_buffer
2194 clear_buffer_dirty(bh
);
2195 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Forget
);
2198 JBUFFER_TRACE(jh
, "on running transaction");
2199 __jbd2_journal_unfile_buffer(jh
);
2200 jbd2_journal_put_journal_head(jh
);
2206 * jbd2_journal_invalidatepage
2208 * This code is tricky. It has a number of cases to deal with.
2210 * There are two invariants which this code relies on:
2212 * i_size must be updated on disk before we start calling invalidatepage on the
2215 * This is done in ext3 by defining an ext3_setattr method which
2216 * updates i_size before truncate gets going. By maintaining this
2217 * invariant, we can be sure that it is safe to throw away any buffers
2218 * attached to the current transaction: once the transaction commits,
2219 * we know that the data will not be needed.
2221 * Note however that we can *not* throw away data belonging to the
2222 * previous, committing transaction!
2224 * Any disk blocks which *are* part of the previous, committing
2225 * transaction (and which therefore cannot be discarded immediately) are
2226 * not going to be reused in the new running transaction
2228 * The bitmap committed_data images guarantee this: any block which is
2229 * allocated in one transaction and removed in the next will be marked
2230 * as in-use in the committed_data bitmap, so cannot be reused until
2231 * the next transaction to delete the block commits. This means that
2232 * leaving committing buffers dirty is quite safe: the disk blocks
2233 * cannot be reallocated to a different file and so buffer aliasing is
2237 * The above applies mainly to ordered data mode. In writeback mode we
2238 * don't make guarantees about the order in which data hits disk --- in
2239 * particular we don't guarantee that new dirty data is flushed before
2240 * transaction commit --- so it is always safe just to discard data
2241 * immediately in that mode. --sct
2245 * The journal_unmap_buffer helper function returns zero if the buffer
2246 * concerned remains pinned as an anonymous buffer belonging to an older
2249 * We're outside-transaction here. Either or both of j_running_transaction
2250 * and j_committing_transaction may be NULL.
2252 static int journal_unmap_buffer(journal_t
*journal
, struct buffer_head
*bh
,
2255 transaction_t
*transaction
;
2256 struct journal_head
*jh
;
2259 BUFFER_TRACE(bh
, "entry");
2262 * It is safe to proceed here without the j_list_lock because the
2263 * buffers cannot be stolen by try_to_free_buffers as long as we are
2264 * holding the page lock. --sct
2267 jh
= jbd2_journal_grab_journal_head(bh
);
2269 goto zap_buffer_unlocked
;
2271 /* OK, we have data buffer in journaled mode */
2272 write_lock(&journal
->j_state_lock
);
2273 spin_lock(&jh
->b_state_lock
);
2274 spin_lock(&journal
->j_list_lock
);
2277 * We cannot remove the buffer from checkpoint lists until the
2278 * transaction adding inode to orphan list (let's call it T)
2279 * is committed. Otherwise if the transaction changing the
2280 * buffer would be cleaned from the journal before T is
2281 * committed, a crash will cause that the correct contents of
2282 * the buffer will be lost. On the other hand we have to
2283 * clear the buffer dirty bit at latest at the moment when the
2284 * transaction marking the buffer as freed in the filesystem
2285 * structures is committed because from that moment on the
2286 * block can be reallocated and used by a different page.
2287 * Since the block hasn't been freed yet but the inode has
2288 * already been added to orphan list, it is safe for us to add
2289 * the buffer to BJ_Forget list of the newest transaction.
2291 * Also we have to clear buffer_mapped flag of a truncated buffer
2292 * because the buffer_head may be attached to the page straddling
2293 * i_size (can happen only when blocksize < pagesize) and thus the
2294 * buffer_head can be reused when the file is extended again. So we end
2295 * up keeping around invalidated buffers attached to transactions'
2296 * BJ_Forget list just to stop checkpointing code from cleaning up
2297 * the transaction this buffer was modified in.
2299 transaction
= jh
->b_transaction
;
2300 if (transaction
== NULL
) {
2301 /* First case: not on any transaction. If it
2302 * has no checkpoint link, then we can zap it:
2303 * it's a writeback-mode buffer so we don't care
2304 * if it hits disk safely. */
2305 if (!jh
->b_cp_transaction
) {
2306 JBUFFER_TRACE(jh
, "not on any transaction: zap");
2310 if (!buffer_dirty(bh
)) {
2311 /* bdflush has written it. We can drop it now */
2312 __jbd2_journal_remove_checkpoint(jh
);
2316 /* OK, it must be in the journal but still not
2317 * written fully to disk: it's metadata or
2318 * journaled data... */
2320 if (journal
->j_running_transaction
) {
2321 /* ... and once the current transaction has
2322 * committed, the buffer won't be needed any
2324 JBUFFER_TRACE(jh
, "checkpointed: add to BJ_Forget");
2325 may_free
= __dispose_buffer(jh
,
2326 journal
->j_running_transaction
);
2329 /* There is no currently-running transaction. So the
2330 * orphan record which we wrote for this file must have
2331 * passed into commit. We must attach this buffer to
2332 * the committing transaction, if it exists. */
2333 if (journal
->j_committing_transaction
) {
2334 JBUFFER_TRACE(jh
, "give to committing trans");
2335 may_free
= __dispose_buffer(jh
,
2336 journal
->j_committing_transaction
);
2339 /* The orphan record's transaction has
2340 * committed. We can cleanse this buffer */
2341 clear_buffer_jbddirty(bh
);
2342 __jbd2_journal_remove_checkpoint(jh
);
2346 } else if (transaction
== journal
->j_committing_transaction
) {
2347 JBUFFER_TRACE(jh
, "on committing transaction");
2349 * The buffer is committing, we simply cannot touch
2350 * it. If the page is straddling i_size we have to wait
2351 * for commit and try again.
2354 spin_unlock(&journal
->j_list_lock
);
2355 spin_unlock(&jh
->b_state_lock
);
2356 write_unlock(&journal
->j_state_lock
);
2357 jbd2_journal_put_journal_head(jh
);
2361 * OK, buffer won't be reachable after truncate. We just clear
2362 * b_modified to not confuse transaction credit accounting, and
2363 * set j_next_transaction to the running transaction (if there
2364 * is one) and mark buffer as freed so that commit code knows
2365 * it should clear dirty bits when it is done with the buffer.
2367 set_buffer_freed(bh
);
2368 if (journal
->j_running_transaction
&& buffer_jbddirty(bh
))
2369 jh
->b_next_transaction
= journal
->j_running_transaction
;
2371 spin_unlock(&journal
->j_list_lock
);
2372 spin_unlock(&jh
->b_state_lock
);
2373 write_unlock(&journal
->j_state_lock
);
2374 jbd2_journal_put_journal_head(jh
);
2377 /* Good, the buffer belongs to the running transaction.
2378 * We are writing our own transaction's data, not any
2379 * previous one's, so it is safe to throw it away
2380 * (remember that we expect the filesystem to have set
2381 * i_size already for this truncate so recovery will not
2382 * expose the disk blocks we are discarding here.) */
2383 J_ASSERT_JH(jh
, transaction
== journal
->j_running_transaction
);
2384 JBUFFER_TRACE(jh
, "on running transaction");
2385 may_free
= __dispose_buffer(jh
, transaction
);
2390 * This is tricky. Although the buffer is truncated, it may be reused
2391 * if blocksize < pagesize and it is attached to the page straddling
2392 * EOF. Since the buffer might have been added to BJ_Forget list of the
2393 * running transaction, journal_get_write_access() won't clear
2394 * b_modified and credit accounting gets confused. So clear b_modified
2398 spin_unlock(&journal
->j_list_lock
);
2399 spin_unlock(&jh
->b_state_lock
);
2400 write_unlock(&journal
->j_state_lock
);
2401 jbd2_journal_put_journal_head(jh
);
2402 zap_buffer_unlocked
:
2403 clear_buffer_dirty(bh
);
2404 J_ASSERT_BH(bh
, !buffer_jbddirty(bh
));
2405 clear_buffer_mapped(bh
);
2406 clear_buffer_req(bh
);
2407 clear_buffer_new(bh
);
2408 clear_buffer_delay(bh
);
2409 clear_buffer_unwritten(bh
);
2415 * jbd2_journal_invalidatepage()
2416 * @journal: journal to use for flush...
2417 * @page: page to flush
2418 * @offset: start of the range to invalidate
2419 * @length: length of the range to invalidate
2421 * Reap page buffers containing data after in the specified range in page.
2422 * Can return -EBUSY if buffers are part of the committing transaction and
2423 * the page is straddling i_size. Caller then has to wait for current commit
2426 int jbd2_journal_invalidatepage(journal_t
*journal
,
2428 unsigned int offset
,
2429 unsigned int length
)
2431 struct buffer_head
*head
, *bh
, *next
;
2432 unsigned int stop
= offset
+ length
;
2433 unsigned int curr_off
= 0;
2434 int partial_page
= (offset
|| length
< PAGE_SIZE
);
2438 if (!PageLocked(page
))
2440 if (!page_has_buffers(page
))
2443 BUG_ON(stop
> PAGE_SIZE
|| stop
< length
);
2445 /* We will potentially be playing with lists other than just the
2446 * data lists (especially for journaled data mode), so be
2447 * cautious in our locking. */
2449 head
= bh
= page_buffers(page
);
2451 unsigned int next_off
= curr_off
+ bh
->b_size
;
2452 next
= bh
->b_this_page
;
2454 if (next_off
> stop
)
2457 if (offset
<= curr_off
) {
2458 /* This block is wholly outside the truncation point */
2460 ret
= journal_unmap_buffer(journal
, bh
, partial_page
);
2466 curr_off
= next_off
;
2469 } while (bh
!= head
);
2471 if (!partial_page
) {
2472 if (may_free
&& try_to_free_buffers(page
))
2473 J_ASSERT(!page_has_buffers(page
));
2479 * File a buffer on the given transaction list.
2481 void __jbd2_journal_file_buffer(struct journal_head
*jh
,
2482 transaction_t
*transaction
, int jlist
)
2484 struct journal_head
**list
= NULL
;
2486 struct buffer_head
*bh
= jh2bh(jh
);
2488 lockdep_assert_held(&jh
->b_state_lock
);
2489 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
2491 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
2492 J_ASSERT_JH(jh
, jh
->b_transaction
== transaction
||
2493 jh
->b_transaction
== NULL
);
2495 if (jh
->b_transaction
&& jh
->b_jlist
== jlist
)
2498 if (jlist
== BJ_Metadata
|| jlist
== BJ_Reserved
||
2499 jlist
== BJ_Shadow
|| jlist
== BJ_Forget
) {
2501 * For metadata buffers, we track dirty bit in buffer_jbddirty
2502 * instead of buffer_dirty. We should not see a dirty bit set
2503 * here because we clear it in do_get_write_access but e.g.
2504 * tune2fs can modify the sb and set the dirty bit at any time
2505 * so we try to gracefully handle that.
2507 if (buffer_dirty(bh
))
2508 warn_dirty_buffer(bh
);
2509 if (test_clear_buffer_dirty(bh
) ||
2510 test_clear_buffer_jbddirty(bh
))
2514 if (jh
->b_transaction
)
2515 __jbd2_journal_temp_unlink_buffer(jh
);
2517 jbd2_journal_grab_journal_head(bh
);
2518 jh
->b_transaction
= transaction
;
2522 J_ASSERT_JH(jh
, !jh
->b_committed_data
);
2523 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
2526 transaction
->t_nr_buffers
++;
2527 list
= &transaction
->t_buffers
;
2530 list
= &transaction
->t_forget
;
2533 list
= &transaction
->t_shadow_list
;
2536 list
= &transaction
->t_reserved_list
;
2540 __blist_add_buffer(list
, jh
);
2541 jh
->b_jlist
= jlist
;
2544 set_buffer_jbddirty(bh
);
2547 void jbd2_journal_file_buffer(struct journal_head
*jh
,
2548 transaction_t
*transaction
, int jlist
)
2550 spin_lock(&jh
->b_state_lock
);
2551 spin_lock(&transaction
->t_journal
->j_list_lock
);
2552 __jbd2_journal_file_buffer(jh
, transaction
, jlist
);
2553 spin_unlock(&transaction
->t_journal
->j_list_lock
);
2554 spin_unlock(&jh
->b_state_lock
);
2558 * Remove a buffer from its current buffer list in preparation for
2559 * dropping it from its current transaction entirely. If the buffer has
2560 * already started to be used by a subsequent transaction, refile the
2561 * buffer on that transaction's metadata list.
2563 * Called under j_list_lock
2564 * Called under jh->b_state_lock
2566 * When this function returns true, there's no next transaction to refile to
2567 * and the caller has to drop jh reference through
2568 * jbd2_journal_put_journal_head().
2570 bool __jbd2_journal_refile_buffer(struct journal_head
*jh
)
2572 int was_dirty
, jlist
;
2573 struct buffer_head
*bh
= jh2bh(jh
);
2575 lockdep_assert_held(&jh
->b_state_lock
);
2576 if (jh
->b_transaction
)
2577 assert_spin_locked(&jh
->b_transaction
->t_journal
->j_list_lock
);
2579 /* If the buffer is now unused, just drop it. */
2580 if (jh
->b_next_transaction
== NULL
) {
2581 __jbd2_journal_unfile_buffer(jh
);
2586 * It has been modified by a later transaction: add it to the new
2587 * transaction's metadata list.
2590 was_dirty
= test_clear_buffer_jbddirty(bh
);
2591 __jbd2_journal_temp_unlink_buffer(jh
);
2594 * b_transaction must be set, otherwise the new b_transaction won't
2595 * be holding jh reference
2597 J_ASSERT_JH(jh
, jh
->b_transaction
!= NULL
);
2600 * We set b_transaction here because b_next_transaction will inherit
2601 * our jh reference and thus __jbd2_journal_file_buffer() must not
2604 WRITE_ONCE(jh
->b_transaction
, jh
->b_next_transaction
);
2605 WRITE_ONCE(jh
->b_next_transaction
, NULL
);
2606 if (buffer_freed(bh
))
2608 else if (jh
->b_modified
)
2609 jlist
= BJ_Metadata
;
2611 jlist
= BJ_Reserved
;
2612 __jbd2_journal_file_buffer(jh
, jh
->b_transaction
, jlist
);
2613 J_ASSERT_JH(jh
, jh
->b_transaction
->t_state
== T_RUNNING
);
2616 set_buffer_jbddirty(bh
);
2621 * __jbd2_journal_refile_buffer() with necessary locking added. We take our
2622 * bh reference so that we can safely unlock bh.
2624 * The jh and bh may be freed by this call.
2626 void jbd2_journal_refile_buffer(journal_t
*journal
, struct journal_head
*jh
)
2630 spin_lock(&jh
->b_state_lock
);
2631 spin_lock(&journal
->j_list_lock
);
2632 drop
= __jbd2_journal_refile_buffer(jh
);
2633 spin_unlock(&jh
->b_state_lock
);
2634 spin_unlock(&journal
->j_list_lock
);
2636 jbd2_journal_put_journal_head(jh
);
2640 * File inode in the inode list of the handle's transaction
2642 static int jbd2_journal_file_inode(handle_t
*handle
, struct jbd2_inode
*jinode
,
2643 unsigned long flags
, loff_t start_byte
, loff_t end_byte
)
2645 transaction_t
*transaction
= handle
->h_transaction
;
2648 if (is_handle_aborted(handle
))
2650 journal
= transaction
->t_journal
;
2652 jbd_debug(4, "Adding inode %lu, tid:%d\n", jinode
->i_vfs_inode
->i_ino
,
2653 transaction
->t_tid
);
2655 spin_lock(&journal
->j_list_lock
);
2656 jinode
->i_flags
|= flags
;
2658 if (jinode
->i_dirty_end
) {
2659 jinode
->i_dirty_start
= min(jinode
->i_dirty_start
, start_byte
);
2660 jinode
->i_dirty_end
= max(jinode
->i_dirty_end
, end_byte
);
2662 jinode
->i_dirty_start
= start_byte
;
2663 jinode
->i_dirty_end
= end_byte
;
2666 /* Is inode already attached where we need it? */
2667 if (jinode
->i_transaction
== transaction
||
2668 jinode
->i_next_transaction
== transaction
)
2672 * We only ever set this variable to 1 so the test is safe. Since
2673 * t_need_data_flush is likely to be set, we do the test to save some
2674 * cacheline bouncing
2676 if (!transaction
->t_need_data_flush
)
2677 transaction
->t_need_data_flush
= 1;
2678 /* On some different transaction's list - should be
2679 * the committing one */
2680 if (jinode
->i_transaction
) {
2681 J_ASSERT(jinode
->i_next_transaction
== NULL
);
2682 J_ASSERT(jinode
->i_transaction
==
2683 journal
->j_committing_transaction
);
2684 jinode
->i_next_transaction
= transaction
;
2687 /* Not on any transaction list... */
2688 J_ASSERT(!jinode
->i_next_transaction
);
2689 jinode
->i_transaction
= transaction
;
2690 list_add(&jinode
->i_list
, &transaction
->t_inode_list
);
2692 spin_unlock(&journal
->j_list_lock
);
2697 int jbd2_journal_inode_ranged_write(handle_t
*handle
,
2698 struct jbd2_inode
*jinode
, loff_t start_byte
, loff_t length
)
2700 return jbd2_journal_file_inode(handle
, jinode
,
2701 JI_WRITE_DATA
| JI_WAIT_DATA
, start_byte
,
2702 start_byte
+ length
- 1);
2705 int jbd2_journal_inode_ranged_wait(handle_t
*handle
, struct jbd2_inode
*jinode
,
2706 loff_t start_byte
, loff_t length
)
2708 return jbd2_journal_file_inode(handle
, jinode
, JI_WAIT_DATA
,
2709 start_byte
, start_byte
+ length
- 1);
2713 * File truncate and transaction commit interact with each other in a
2714 * non-trivial way. If a transaction writing data block A is
2715 * committing, we cannot discard the data by truncate until we have
2716 * written them. Otherwise if we crashed after the transaction with
2717 * write has committed but before the transaction with truncate has
2718 * committed, we could see stale data in block A. This function is a
2719 * helper to solve this problem. It starts writeout of the truncated
2720 * part in case it is in the committing transaction.
2722 * Filesystem code must call this function when inode is journaled in
2723 * ordered mode before truncation happens and after the inode has been
2724 * placed on orphan list with the new inode size. The second condition
2725 * avoids the race that someone writes new data and we start
2726 * committing the transaction after this function has been called but
2727 * before a transaction for truncate is started (and furthermore it
2728 * allows us to optimize the case where the addition to orphan list
2729 * happens in the same transaction as write --- we don't have to write
2730 * any data in such case).
2732 int jbd2_journal_begin_ordered_truncate(journal_t
*journal
,
2733 struct jbd2_inode
*jinode
,
2736 transaction_t
*inode_trans
, *commit_trans
;
2739 /* This is a quick check to avoid locking if not necessary */
2740 if (!jinode
->i_transaction
)
2742 /* Locks are here just to force reading of recent values, it is
2743 * enough that the transaction was not committing before we started
2744 * a transaction adding the inode to orphan list */
2745 read_lock(&journal
->j_state_lock
);
2746 commit_trans
= journal
->j_committing_transaction
;
2747 read_unlock(&journal
->j_state_lock
);
2748 spin_lock(&journal
->j_list_lock
);
2749 inode_trans
= jinode
->i_transaction
;
2750 spin_unlock(&journal
->j_list_lock
);
2751 if (inode_trans
== commit_trans
) {
2752 ret
= filemap_fdatawrite_range(jinode
->i_vfs_inode
->i_mapping
,
2753 new_size
, LLONG_MAX
);
2755 jbd2_journal_abort(journal
, ret
);