2 * linux/fs/jbd2/transaction.c
4 * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
6 * Copyright 1998 Red Hat corp --- All Rights Reserved
8 * This file is part of the Linux kernel and is made available under
9 * the terms of the GNU General Public License, version 2, or at your
10 * option, any later version, incorporated herein by reference.
12 * Generic filesystem transaction handling code; part of the ext2fs
15 * This file manages transactions (compound commits managed by the
16 * journaling code) and handles (individual atomic operations by the
20 #include <linux/time.h>
22 #include <linux/jbd2.h>
23 #include <linux/errno.h>
24 #include <linux/slab.h>
25 #include <linux/timer.h>
27 #include <linux/highmem.h>
29 static void __jbd2_journal_temp_unlink_buffer(struct journal_head
*jh
);
32 * jbd2_get_transaction: obtain a new transaction_t object.
34 * Simply allocate and initialise a new transaction. Create it in
35 * RUNNING state and add it to the current journal (which should not
36 * have an existing running transaction: we only make a new transaction
37 * once we have started to commit the old one).
40 * The journal MUST be locked. We don't perform atomic mallocs on the
41 * new transaction and we can't block without protecting against other
42 * processes trying to touch the journal while it is in transition.
44 * Called under j_state_lock
47 static transaction_t
*
48 jbd2_get_transaction(journal_t
*journal
, transaction_t
*transaction
)
50 transaction
->t_journal
= journal
;
51 transaction
->t_state
= T_RUNNING
;
52 transaction
->t_tid
= journal
->j_transaction_sequence
++;
53 transaction
->t_expires
= jiffies
+ journal
->j_commit_interval
;
54 spin_lock_init(&transaction
->t_handle_lock
);
56 /* Set up the commit timer for the new transaction. */
57 journal
->j_commit_timer
.expires
= round_jiffies(transaction
->t_expires
);
58 add_timer(&journal
->j_commit_timer
);
60 J_ASSERT(journal
->j_running_transaction
== NULL
);
61 journal
->j_running_transaction
= transaction
;
62 transaction
->t_max_wait
= 0;
63 transaction
->t_start
= jiffies
;
71 * A handle_t is an object which represents a single atomic update to a
72 * filesystem, and which tracks all of the modifications which form part
77 * start_this_handle: Given a handle, deal with any locking or stalling
78 * needed to make sure that there is enough journal space for the handle
79 * to begin. Attach the handle to a transaction and set up the
80 * transaction's buffer credits.
83 static int start_this_handle(journal_t
*journal
, handle_t
*handle
)
85 transaction_t
*transaction
;
87 int nblocks
= handle
->h_buffer_credits
;
88 transaction_t
*new_transaction
= NULL
;
90 unsigned long ts
= jiffies
;
92 if (nblocks
> journal
->j_max_transaction_buffers
) {
93 printk(KERN_ERR
"JBD: %s wants too many credits (%d > %d)\n",
94 current
->comm
, nblocks
,
95 journal
->j_max_transaction_buffers
);
101 if (!journal
->j_running_transaction
) {
102 new_transaction
= kzalloc(sizeof(*new_transaction
),
103 GFP_NOFS
|__GFP_NOFAIL
);
104 if (!new_transaction
) {
110 jbd_debug(3, "New handle %p going live.\n", handle
);
115 * We need to hold j_state_lock until t_updates has been incremented,
116 * for proper journal barrier handling
118 spin_lock(&journal
->j_state_lock
);
120 if (is_journal_aborted(journal
) ||
121 (journal
->j_errno
!= 0 && !(journal
->j_flags
& JBD2_ACK_ERR
))) {
122 spin_unlock(&journal
->j_state_lock
);
127 /* Wait on the journal's transaction barrier if necessary */
128 if (journal
->j_barrier_count
) {
129 spin_unlock(&journal
->j_state_lock
);
130 wait_event(journal
->j_wait_transaction_locked
,
131 journal
->j_barrier_count
== 0);
135 if (!journal
->j_running_transaction
) {
136 if (!new_transaction
) {
137 spin_unlock(&journal
->j_state_lock
);
138 goto alloc_transaction
;
140 jbd2_get_transaction(journal
, new_transaction
);
141 new_transaction
= NULL
;
144 transaction
= journal
->j_running_transaction
;
147 * If the current transaction is locked down for commit, wait for the
148 * lock to be released.
150 if (transaction
->t_state
== T_LOCKED
) {
153 prepare_to_wait(&journal
->j_wait_transaction_locked
,
154 &wait
, TASK_UNINTERRUPTIBLE
);
155 spin_unlock(&journal
->j_state_lock
);
157 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
162 * If there is not enough space left in the log to write all potential
163 * buffers requested by this operation, we need to stall pending a log
164 * checkpoint to free some more log space.
166 spin_lock(&transaction
->t_handle_lock
);
167 needed
= transaction
->t_outstanding_credits
+ nblocks
;
169 if (needed
> journal
->j_max_transaction_buffers
) {
171 * If the current transaction is already too large, then start
172 * to commit it: we can then go back and attach this handle to
177 jbd_debug(2, "Handle %p starting new commit...\n", handle
);
178 spin_unlock(&transaction
->t_handle_lock
);
179 prepare_to_wait(&journal
->j_wait_transaction_locked
, &wait
,
180 TASK_UNINTERRUPTIBLE
);
181 __jbd2_log_start_commit(journal
, transaction
->t_tid
);
182 spin_unlock(&journal
->j_state_lock
);
184 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
189 * The commit code assumes that it can get enough log space
190 * without forcing a checkpoint. This is *critical* for
191 * correctness: a checkpoint of a buffer which is also
192 * associated with a committing transaction creates a deadlock,
193 * so commit simply cannot force through checkpoints.
195 * We must therefore ensure the necessary space in the journal
196 * *before* starting to dirty potentially checkpointed buffers
197 * in the new transaction.
199 * The worst part is, any transaction currently committing can
200 * reduce the free space arbitrarily. Be careful to account for
201 * those buffers when checkpointing.
205 * @@@ AKPM: This seems rather over-defensive. We're giving commit
206 * a _lot_ of headroom: 1/4 of the journal plus the size of
207 * the committing transaction. Really, we only need to give it
208 * committing_transaction->t_outstanding_credits plus "enough" for
209 * the log control blocks.
210 * Also, this test is inconsitent with the matching one in
211 * jbd2_journal_extend().
213 if (__jbd2_log_space_left(journal
) < jbd_space_needed(journal
)) {
214 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle
);
215 spin_unlock(&transaction
->t_handle_lock
);
216 __jbd2_log_wait_for_space(journal
);
220 /* OK, account for the buffers that this operation expects to
221 * use and add the handle to the running transaction. */
223 if (time_after(transaction
->t_start
, ts
)) {
224 ts
= jbd2_time_diff(ts
, transaction
->t_start
);
225 if (ts
> transaction
->t_max_wait
)
226 transaction
->t_max_wait
= ts
;
229 handle
->h_transaction
= transaction
;
230 transaction
->t_outstanding_credits
+= nblocks
;
231 transaction
->t_updates
++;
232 transaction
->t_handle_count
++;
233 jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
234 handle
, nblocks
, transaction
->t_outstanding_credits
,
235 __jbd2_log_space_left(journal
));
236 spin_unlock(&transaction
->t_handle_lock
);
237 spin_unlock(&journal
->j_state_lock
);
239 if (unlikely(new_transaction
)) /* It's usually NULL */
240 kfree(new_transaction
);
244 static struct lock_class_key jbd2_handle_key
;
246 /* Allocate a new handle. This should probably be in a slab... */
247 static handle_t
*new_handle(int nblocks
)
249 handle_t
*handle
= jbd2_alloc_handle(GFP_NOFS
);
252 memset(handle
, 0, sizeof(*handle
));
253 handle
->h_buffer_credits
= nblocks
;
256 lockdep_init_map(&handle
->h_lockdep_map
, "jbd2_handle",
257 &jbd2_handle_key
, 0);
263 * handle_t *jbd2_journal_start() - Obtain a new handle.
264 * @journal: Journal to start transaction on.
265 * @nblocks: number of block buffer we might modify
267 * We make sure that the transaction can guarantee at least nblocks of
268 * modified buffers in the log. We block until the log can guarantee
271 * This function is visible to journal users (like ext3fs), so is not
272 * called with the journal already locked.
274 * Return a pointer to a newly allocated handle, or NULL on failure
276 handle_t
*jbd2_journal_start(journal_t
*journal
, int nblocks
)
278 handle_t
*handle
= journal_current_handle();
282 return ERR_PTR(-EROFS
);
285 J_ASSERT(handle
->h_transaction
->t_journal
== journal
);
290 handle
= new_handle(nblocks
);
292 return ERR_PTR(-ENOMEM
);
294 current
->journal_info
= handle
;
296 err
= start_this_handle(journal
, handle
);
298 jbd2_free_handle(handle
);
299 current
->journal_info
= NULL
;
300 handle
= ERR_PTR(err
);
304 lock_acquire(&handle
->h_lockdep_map
, 0, 0, 0, 2, _THIS_IP_
);
310 * int jbd2_journal_extend() - extend buffer credits.
311 * @handle: handle to 'extend'
312 * @nblocks: nr blocks to try to extend by.
314 * Some transactions, such as large extends and truncates, can be done
315 * atomically all at once or in several stages. The operation requests
316 * a credit for a number of buffer modications in advance, but can
317 * extend its credit if it needs more.
319 * jbd2_journal_extend tries to give the running handle more buffer credits.
320 * It does not guarantee that allocation - this is a best-effort only.
321 * The calling process MUST be able to deal cleanly with a failure to
324 * Return 0 on success, non-zero on failure.
326 * return code < 0 implies an error
327 * return code > 0 implies normal transaction-full status.
329 int jbd2_journal_extend(handle_t
*handle
, int nblocks
)
331 transaction_t
*transaction
= handle
->h_transaction
;
332 journal_t
*journal
= transaction
->t_journal
;
337 if (is_handle_aborted(handle
))
342 spin_lock(&journal
->j_state_lock
);
344 /* Don't extend a locked-down transaction! */
345 if (handle
->h_transaction
->t_state
!= T_RUNNING
) {
346 jbd_debug(3, "denied handle %p %d blocks: "
347 "transaction not running\n", handle
, nblocks
);
351 spin_lock(&transaction
->t_handle_lock
);
352 wanted
= transaction
->t_outstanding_credits
+ nblocks
;
354 if (wanted
> journal
->j_max_transaction_buffers
) {
355 jbd_debug(3, "denied handle %p %d blocks: "
356 "transaction too large\n", handle
, nblocks
);
360 if (wanted
> __jbd2_log_space_left(journal
)) {
361 jbd_debug(3, "denied handle %p %d blocks: "
362 "insufficient log space\n", handle
, nblocks
);
366 handle
->h_buffer_credits
+= nblocks
;
367 transaction
->t_outstanding_credits
+= nblocks
;
370 jbd_debug(3, "extended handle %p by %d\n", handle
, nblocks
);
372 spin_unlock(&transaction
->t_handle_lock
);
374 spin_unlock(&journal
->j_state_lock
);
381 * int jbd2_journal_restart() - restart a handle .
382 * @handle: handle to restart
383 * @nblocks: nr credits requested
385 * Restart a handle for a multi-transaction filesystem
388 * If the jbd2_journal_extend() call above fails to grant new buffer credits
389 * to a running handle, a call to jbd2_journal_restart will commit the
390 * handle's transaction so far and reattach the handle to a new
391 * transaction capabable of guaranteeing the requested number of
395 int jbd2_journal_restart(handle_t
*handle
, int nblocks
)
397 transaction_t
*transaction
= handle
->h_transaction
;
398 journal_t
*journal
= transaction
->t_journal
;
401 /* If we've had an abort of any type, don't even think about
402 * actually doing the restart! */
403 if (is_handle_aborted(handle
))
407 * First unlink the handle from its current transaction, and start the
410 J_ASSERT(transaction
->t_updates
> 0);
411 J_ASSERT(journal_current_handle() == handle
);
413 spin_lock(&journal
->j_state_lock
);
414 spin_lock(&transaction
->t_handle_lock
);
415 transaction
->t_outstanding_credits
-= handle
->h_buffer_credits
;
416 transaction
->t_updates
--;
418 if (!transaction
->t_updates
)
419 wake_up(&journal
->j_wait_updates
);
420 spin_unlock(&transaction
->t_handle_lock
);
422 jbd_debug(2, "restarting handle %p\n", handle
);
423 __jbd2_log_start_commit(journal
, transaction
->t_tid
);
424 spin_unlock(&journal
->j_state_lock
);
426 handle
->h_buffer_credits
= nblocks
;
427 ret
= start_this_handle(journal
, handle
);
433 * void jbd2_journal_lock_updates () - establish a transaction barrier.
434 * @journal: Journal to establish a barrier on.
436 * This locks out any further updates from being started, and blocks
437 * until all existing updates have completed, returning only once the
438 * journal is in a quiescent state with no updates running.
440 * The journal lock should not be held on entry.
442 void jbd2_journal_lock_updates(journal_t
*journal
)
446 spin_lock(&journal
->j_state_lock
);
447 ++journal
->j_barrier_count
;
449 /* Wait until there are no running updates */
451 transaction_t
*transaction
= journal
->j_running_transaction
;
456 spin_lock(&transaction
->t_handle_lock
);
457 if (!transaction
->t_updates
) {
458 spin_unlock(&transaction
->t_handle_lock
);
461 prepare_to_wait(&journal
->j_wait_updates
, &wait
,
462 TASK_UNINTERRUPTIBLE
);
463 spin_unlock(&transaction
->t_handle_lock
);
464 spin_unlock(&journal
->j_state_lock
);
466 finish_wait(&journal
->j_wait_updates
, &wait
);
467 spin_lock(&journal
->j_state_lock
);
469 spin_unlock(&journal
->j_state_lock
);
472 * We have now established a barrier against other normal updates, but
473 * we also need to barrier against other jbd2_journal_lock_updates() calls
474 * to make sure that we serialise special journal-locked operations
477 mutex_lock(&journal
->j_barrier
);
481 * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
482 * @journal: Journal to release the barrier on.
484 * Release a transaction barrier obtained with jbd2_journal_lock_updates().
486 * Should be called without the journal lock held.
488 void jbd2_journal_unlock_updates (journal_t
*journal
)
490 J_ASSERT(journal
->j_barrier_count
!= 0);
492 mutex_unlock(&journal
->j_barrier
);
493 spin_lock(&journal
->j_state_lock
);
494 --journal
->j_barrier_count
;
495 spin_unlock(&journal
->j_state_lock
);
496 wake_up(&journal
->j_wait_transaction_locked
);
500 * Report any unexpected dirty buffers which turn up. Normally those
501 * indicate an error, but they can occur if the user is running (say)
502 * tune2fs to modify the live filesystem, so we need the option of
503 * continuing as gracefully as possible. #
505 * The caller should already hold the journal lock and
506 * j_list_lock spinlock: most callers will need those anyway
507 * in order to probe the buffer's journaling state safely.
509 static void jbd_unexpected_dirty_buffer(struct journal_head
*jh
)
513 /* If this buffer is one which might reasonably be dirty
514 * --- ie. data, or not part of this journal --- then
515 * we're OK to leave it alone, but otherwise we need to
516 * move the dirty bit to the journal's own internal
520 if (jlist
== BJ_Metadata
|| jlist
== BJ_Reserved
||
521 jlist
== BJ_Shadow
|| jlist
== BJ_Forget
) {
522 struct buffer_head
*bh
= jh2bh(jh
);
524 if (test_clear_buffer_dirty(bh
))
525 set_buffer_jbddirty(bh
);
530 * If the buffer is already part of the current transaction, then there
531 * is nothing we need to do. If it is already part of a prior
532 * transaction which we are still committing to disk, then we need to
533 * make sure that we do not overwrite the old copy: we do copy-out to
534 * preserve the copy going to disk. We also account the buffer against
535 * the handle's metadata buffer credits (unless the buffer is already
536 * part of the transaction, that is).
540 do_get_write_access(handle_t
*handle
, struct journal_head
*jh
,
543 struct buffer_head
*bh
;
544 transaction_t
*transaction
;
547 char *frozen_buffer
= NULL
;
550 if (is_handle_aborted(handle
))
553 transaction
= handle
->h_transaction
;
554 journal
= transaction
->t_journal
;
556 jbd_debug(5, "buffer_head %p, force_copy %d\n", jh
, force_copy
);
558 JBUFFER_TRACE(jh
, "entry");
562 /* @@@ Need to check for errors here at some point. */
565 jbd_lock_bh_state(bh
);
567 /* We now hold the buffer lock so it is safe to query the buffer
568 * state. Is the buffer dirty?
570 * If so, there are two possibilities. The buffer may be
571 * non-journaled, and undergoing a quite legitimate writeback.
572 * Otherwise, it is journaled, and we don't expect dirty buffers
573 * in that state (the buffers should be marked JBD_Dirty
574 * instead.) So either the IO is being done under our own
575 * control and this is a bug, or it's a third party IO such as
576 * dump(8) (which may leave the buffer scheduled for read ---
577 * ie. locked but not dirty) or tune2fs (which may actually have
578 * the buffer dirtied, ugh.) */
580 if (buffer_dirty(bh
)) {
582 * First question: is this buffer already part of the current
583 * transaction or the existing committing transaction?
585 if (jh
->b_transaction
) {
587 jh
->b_transaction
== transaction
||
589 journal
->j_committing_transaction
);
590 if (jh
->b_next_transaction
)
591 J_ASSERT_JH(jh
, jh
->b_next_transaction
==
595 * In any case we need to clean the dirty flag and we must
596 * do it under the buffer lock to be sure we don't race
597 * with running write-out.
599 JBUFFER_TRACE(jh
, "Unexpected dirty buffer");
600 jbd_unexpected_dirty_buffer(jh
);
606 if (is_handle_aborted(handle
)) {
607 jbd_unlock_bh_state(bh
);
613 * The buffer is already part of this transaction if b_transaction or
614 * b_next_transaction points to it
616 if (jh
->b_transaction
== transaction
||
617 jh
->b_next_transaction
== transaction
)
621 * this is the first time this transaction is touching this buffer,
622 * reset the modified flag
627 * If there is already a copy-out version of this buffer, then we don't
628 * need to make another one
630 if (jh
->b_frozen_data
) {
631 JBUFFER_TRACE(jh
, "has frozen data");
632 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
633 jh
->b_next_transaction
= transaction
;
637 /* Is there data here we need to preserve? */
639 if (jh
->b_transaction
&& jh
->b_transaction
!= transaction
) {
640 JBUFFER_TRACE(jh
, "owned by older transaction");
641 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
642 J_ASSERT_JH(jh
, jh
->b_transaction
==
643 journal
->j_committing_transaction
);
645 /* There is one case we have to be very careful about.
646 * If the committing transaction is currently writing
647 * this buffer out to disk and has NOT made a copy-out,
648 * then we cannot modify the buffer contents at all
649 * right now. The essence of copy-out is that it is the
650 * extra copy, not the primary copy, which gets
651 * journaled. If the primary copy is already going to
652 * disk then we cannot do copy-out here. */
654 if (jh
->b_jlist
== BJ_Shadow
) {
655 DEFINE_WAIT_BIT(wait
, &bh
->b_state
, BH_Unshadow
);
656 wait_queue_head_t
*wqh
;
658 wqh
= bit_waitqueue(&bh
->b_state
, BH_Unshadow
);
660 JBUFFER_TRACE(jh
, "on shadow: sleep");
661 jbd_unlock_bh_state(bh
);
662 /* commit wakes up all shadow buffers after IO */
664 prepare_to_wait(wqh
, &wait
.wait
,
665 TASK_UNINTERRUPTIBLE
);
666 if (jh
->b_jlist
!= BJ_Shadow
)
670 finish_wait(wqh
, &wait
.wait
);
674 /* Only do the copy if the currently-owning transaction
675 * still needs it. If it is on the Forget list, the
676 * committing transaction is past that stage. The
677 * buffer had better remain locked during the kmalloc,
678 * but that should be true --- we hold the journal lock
679 * still and the buffer is already on the BUF_JOURNAL
680 * list so won't be flushed.
682 * Subtle point, though: if this is a get_undo_access,
683 * then we will be relying on the frozen_data to contain
684 * the new value of the committed_data record after the
685 * transaction, so we HAVE to force the frozen_data copy
688 if (jh
->b_jlist
!= BJ_Forget
|| force_copy
) {
689 JBUFFER_TRACE(jh
, "generate frozen data");
690 if (!frozen_buffer
) {
691 JBUFFER_TRACE(jh
, "allocate memory for buffer");
692 jbd_unlock_bh_state(bh
);
694 jbd2_alloc(jh2bh(jh
)->b_size
,
696 if (!frozen_buffer
) {
698 "%s: OOM for frozen_buffer\n",
700 JBUFFER_TRACE(jh
, "oom!");
702 jbd_lock_bh_state(bh
);
707 jh
->b_frozen_data
= frozen_buffer
;
708 frozen_buffer
= NULL
;
711 jh
->b_next_transaction
= transaction
;
716 * Finally, if the buffer is not journaled right now, we need to make
717 * sure it doesn't get written to disk before the caller actually
718 * commits the new data
720 if (!jh
->b_transaction
) {
721 JBUFFER_TRACE(jh
, "no transaction");
722 J_ASSERT_JH(jh
, !jh
->b_next_transaction
);
723 jh
->b_transaction
= transaction
;
724 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
725 spin_lock(&journal
->j_list_lock
);
726 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Reserved
);
727 spin_unlock(&journal
->j_list_lock
);
736 J_EXPECT_JH(jh
, buffer_uptodate(jh2bh(jh
)),
737 "Possible IO failure.\n");
738 page
= jh2bh(jh
)->b_page
;
739 offset
= ((unsigned long) jh2bh(jh
)->b_data
) & ~PAGE_MASK
;
740 source
= kmap_atomic(page
, KM_USER0
);
741 memcpy(jh
->b_frozen_data
, source
+offset
, jh2bh(jh
)->b_size
);
742 kunmap_atomic(source
, KM_USER0
);
744 jbd_unlock_bh_state(bh
);
747 * If we are about to journal a buffer, then any revoke pending on it is
750 jbd2_journal_cancel_revoke(handle
, jh
);
753 if (unlikely(frozen_buffer
)) /* It's usually NULL */
754 jbd2_free(frozen_buffer
, bh
->b_size
);
756 JBUFFER_TRACE(jh
, "exit");
761 * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
762 * @handle: transaction to add buffer modifications to
763 * @bh: bh to be used for metadata writes
764 * @credits: variable that will receive credits for the buffer
766 * Returns an error code or 0 on success.
768 * In full data journalling mode the buffer may be of type BJ_AsyncData,
769 * because we're write()ing a buffer which is also part of a shared mapping.
772 int jbd2_journal_get_write_access(handle_t
*handle
, struct buffer_head
*bh
)
774 struct journal_head
*jh
= jbd2_journal_add_journal_head(bh
);
777 /* We do not want to get caught playing with fields which the
778 * log thread also manipulates. Make sure that the buffer
779 * completes any outstanding IO before proceeding. */
780 rc
= do_get_write_access(handle
, jh
, 0);
781 jbd2_journal_put_journal_head(jh
);
787 * When the user wants to journal a newly created buffer_head
788 * (ie. getblk() returned a new buffer and we are going to populate it
789 * manually rather than reading off disk), then we need to keep the
790 * buffer_head locked until it has been completely filled with new
791 * data. In this case, we should be able to make the assertion that
792 * the bh is not already part of an existing transaction.
794 * The buffer should already be locked by the caller by this point.
795 * There is no lock ranking violation: it was a newly created,
796 * unlocked buffer beforehand. */
799 * int jbd2_journal_get_create_access () - notify intent to use newly created bh
800 * @handle: transaction to new buffer to
803 * Call this if you create a new bh.
805 int jbd2_journal_get_create_access(handle_t
*handle
, struct buffer_head
*bh
)
807 transaction_t
*transaction
= handle
->h_transaction
;
808 journal_t
*journal
= transaction
->t_journal
;
809 struct journal_head
*jh
= jbd2_journal_add_journal_head(bh
);
812 jbd_debug(5, "journal_head %p\n", jh
);
814 if (is_handle_aborted(handle
))
818 JBUFFER_TRACE(jh
, "entry");
820 * The buffer may already belong to this transaction due to pre-zeroing
821 * in the filesystem's new_block code. It may also be on the previous,
822 * committing transaction's lists, but it HAS to be in Forget state in
823 * that case: the transaction must have deleted the buffer for it to be
826 jbd_lock_bh_state(bh
);
827 spin_lock(&journal
->j_list_lock
);
828 J_ASSERT_JH(jh
, (jh
->b_transaction
== transaction
||
829 jh
->b_transaction
== NULL
||
830 (jh
->b_transaction
== journal
->j_committing_transaction
&&
831 jh
->b_jlist
== BJ_Forget
)));
833 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
834 J_ASSERT_JH(jh
, buffer_locked(jh2bh(jh
)));
836 if (jh
->b_transaction
== NULL
) {
837 jh
->b_transaction
= transaction
;
839 /* first access by this transaction */
842 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
843 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Reserved
);
844 } else if (jh
->b_transaction
== journal
->j_committing_transaction
) {
845 /* first access by this transaction */
848 JBUFFER_TRACE(jh
, "set next transaction");
849 jh
->b_next_transaction
= transaction
;
851 spin_unlock(&journal
->j_list_lock
);
852 jbd_unlock_bh_state(bh
);
855 * akpm: I added this. ext3_alloc_branch can pick up new indirect
856 * blocks which contain freed but then revoked metadata. We need
857 * to cancel the revoke in case we end up freeing it yet again
858 * and the reallocating as data - this would cause a second revoke,
859 * which hits an assertion error.
861 JBUFFER_TRACE(jh
, "cancelling revoke");
862 jbd2_journal_cancel_revoke(handle
, jh
);
863 jbd2_journal_put_journal_head(jh
);
869 * int jbd2_journal_get_undo_access() - Notify intent to modify metadata with
870 * non-rewindable consequences
871 * @handle: transaction
872 * @bh: buffer to undo
873 * @credits: store the number of taken credits here (if not NULL)
875 * Sometimes there is a need to distinguish between metadata which has
876 * been committed to disk and that which has not. The ext3fs code uses
877 * this for freeing and allocating space, we have to make sure that we
878 * do not reuse freed space until the deallocation has been committed,
879 * since if we overwrote that space we would make the delete
880 * un-rewindable in case of a crash.
882 * To deal with that, jbd2_journal_get_undo_access requests write access to a
883 * buffer for parts of non-rewindable operations such as delete
884 * operations on the bitmaps. The journaling code must keep a copy of
885 * the buffer's contents prior to the undo_access call until such time
886 * as we know that the buffer has definitely been committed to disk.
888 * We never need to know which transaction the committed data is part
889 * of, buffers touched here are guaranteed to be dirtied later and so
890 * will be committed to a new transaction in due course, at which point
891 * we can discard the old committed data pointer.
893 * Returns error number or 0 on success.
895 int jbd2_journal_get_undo_access(handle_t
*handle
, struct buffer_head
*bh
)
898 struct journal_head
*jh
= jbd2_journal_add_journal_head(bh
);
899 char *committed_data
= NULL
;
901 JBUFFER_TRACE(jh
, "entry");
904 * Do this first --- it can drop the journal lock, so we want to
905 * make sure that obtaining the committed_data is done
906 * atomically wrt. completion of any outstanding commits.
908 err
= do_get_write_access(handle
, jh
, 1);
913 if (!jh
->b_committed_data
) {
914 committed_data
= jbd2_alloc(jh2bh(jh
)->b_size
, GFP_NOFS
);
915 if (!committed_data
) {
916 printk(KERN_EMERG
"%s: No memory for committed data\n",
923 jbd_lock_bh_state(bh
);
924 if (!jh
->b_committed_data
) {
925 /* Copy out the current buffer contents into the
926 * preserved, committed copy. */
927 JBUFFER_TRACE(jh
, "generate b_committed data");
928 if (!committed_data
) {
929 jbd_unlock_bh_state(bh
);
933 jh
->b_committed_data
= committed_data
;
934 committed_data
= NULL
;
935 memcpy(jh
->b_committed_data
, bh
->b_data
, bh
->b_size
);
937 jbd_unlock_bh_state(bh
);
939 jbd2_journal_put_journal_head(jh
);
940 if (unlikely(committed_data
))
941 jbd2_free(committed_data
, bh
->b_size
);
946 * int jbd2_journal_dirty_data() - mark a buffer as containing dirty data which
947 * needs to be flushed before we can commit the
948 * current transaction.
949 * @handle: transaction
950 * @bh: bufferhead to mark
952 * The buffer is placed on the transaction's data list and is marked as
953 * belonging to the transaction.
955 * Returns error number or 0 on success.
957 * jbd2_journal_dirty_data() can be called via page_launder->ext3_writepage
960 int jbd2_journal_dirty_data(handle_t
*handle
, struct buffer_head
*bh
)
962 journal_t
*journal
= handle
->h_transaction
->t_journal
;
964 struct journal_head
*jh
;
966 if (is_handle_aborted(handle
))
969 jh
= jbd2_journal_add_journal_head(bh
);
970 JBUFFER_TRACE(jh
, "entry");
973 * The buffer could *already* be dirty. Writeout can start
976 jbd_debug(4, "jh: %p, tid:%d\n", jh
, handle
->h_transaction
->t_tid
);
979 * What if the buffer is already part of a running transaction?
981 * There are two cases:
982 * 1) It is part of the current running transaction. Refile it,
983 * just in case we have allocated it as metadata, deallocated
984 * it, then reallocated it as data.
985 * 2) It is part of the previous, still-committing transaction.
986 * If all we want to do is to guarantee that the buffer will be
987 * written to disk before this new transaction commits, then
988 * being sure that the *previous* transaction has this same
989 * property is sufficient for us! Just leave it on its old
992 * In case (2), the buffer must not already exist as metadata
993 * --- that would violate write ordering (a transaction is free
994 * to write its data at any point, even before the previous
995 * committing transaction has committed). The caller must
996 * never, ever allow this to happen: there's nothing we can do
997 * about it in this layer.
999 jbd_lock_bh_state(bh
);
1000 spin_lock(&journal
->j_list_lock
);
1002 /* Now that we have bh_state locked, are we really still mapped? */
1003 if (!buffer_mapped(bh
)) {
1004 JBUFFER_TRACE(jh
, "unmapped buffer, bailing out");
1008 if (jh
->b_transaction
) {
1009 JBUFFER_TRACE(jh
, "has transaction");
1010 if (jh
->b_transaction
!= handle
->h_transaction
) {
1011 JBUFFER_TRACE(jh
, "belongs to older transaction");
1012 J_ASSERT_JH(jh
, jh
->b_transaction
==
1013 journal
->j_committing_transaction
);
1015 /* @@@ IS THIS TRUE ? */
1017 * Not any more. Scenario: someone does a write()
1018 * in data=journal mode. The buffer's transaction has
1019 * moved into commit. Then someone does another
1020 * write() to the file. We do the frozen data copyout
1021 * and set b_next_transaction to point to j_running_t.
1022 * And while we're in that state, someone does a
1023 * writepage() in an attempt to pageout the same area
1024 * of the file via a shared mapping. At present that
1025 * calls jbd2_journal_dirty_data(), and we get right here.
1026 * It may be too late to journal the data. Simply
1027 * falling through to the next test will suffice: the
1028 * data will be dirty and wil be checkpointed. The
1029 * ordering comments in the next comment block still
1032 //J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
1035 * If we're journalling data, and this buffer was
1036 * subject to a write(), it could be metadata, forget
1037 * or shadow against the committing transaction. Now,
1038 * someone has dirtied the same darn page via a mapping
1039 * and it is being writepage()'d.
1040 * We *could* just steal the page from commit, with some
1041 * fancy locking there. Instead, we just skip it -
1042 * don't tie the page's buffers to the new transaction
1044 * Implication: if we crash before the writepage() data
1045 * is written into the filesystem, recovery will replay
1048 if (jh
->b_jlist
!= BJ_None
&&
1049 jh
->b_jlist
!= BJ_SyncData
&&
1050 jh
->b_jlist
!= BJ_Locked
) {
1051 JBUFFER_TRACE(jh
, "Not stealing");
1056 * This buffer may be undergoing writeout in commit. We
1057 * can't return from here and let the caller dirty it
1058 * again because that can cause the write-out loop in
1059 * commit to never terminate.
1061 if (buffer_dirty(bh
)) {
1063 spin_unlock(&journal
->j_list_lock
);
1064 jbd_unlock_bh_state(bh
);
1066 sync_dirty_buffer(bh
);
1067 jbd_lock_bh_state(bh
);
1068 spin_lock(&journal
->j_list_lock
);
1069 /* Since we dropped the lock... */
1070 if (!buffer_mapped(bh
)) {
1071 JBUFFER_TRACE(jh
, "buffer got unmapped");
1074 /* The buffer may become locked again at any
1075 time if it is redirtied */
1078 /* journal_clean_data_list() may have got there first */
1079 if (jh
->b_transaction
!= NULL
) {
1080 JBUFFER_TRACE(jh
, "unfile from commit");
1081 __jbd2_journal_temp_unlink_buffer(jh
);
1082 /* It still points to the committing
1083 * transaction; move it to this one so
1084 * that the refile assert checks are
1086 jh
->b_transaction
= handle
->h_transaction
;
1088 /* The buffer will be refiled below */
1092 * Special case --- the buffer might actually have been
1093 * allocated and then immediately deallocated in the previous,
1094 * committing transaction, so might still be left on that
1095 * transaction's metadata lists.
1097 if (jh
->b_jlist
!= BJ_SyncData
&& jh
->b_jlist
!= BJ_Locked
) {
1098 JBUFFER_TRACE(jh
, "not on correct data list: unfile");
1099 J_ASSERT_JH(jh
, jh
->b_jlist
!= BJ_Shadow
);
1100 __jbd2_journal_temp_unlink_buffer(jh
);
1101 jh
->b_transaction
= handle
->h_transaction
;
1102 JBUFFER_TRACE(jh
, "file as data");
1103 __jbd2_journal_file_buffer(jh
, handle
->h_transaction
,
1107 JBUFFER_TRACE(jh
, "not on a transaction");
1108 __jbd2_journal_file_buffer(jh
, handle
->h_transaction
, BJ_SyncData
);
1111 spin_unlock(&journal
->j_list_lock
);
1112 jbd_unlock_bh_state(bh
);
1114 BUFFER_TRACE(bh
, "brelse");
1117 JBUFFER_TRACE(jh
, "exit");
1118 jbd2_journal_put_journal_head(jh
);
1123 * int jbd2_journal_dirty_metadata() - mark a buffer as containing dirty metadata
1124 * @handle: transaction to add buffer to.
1125 * @bh: buffer to mark
1127 * mark dirty metadata which needs to be journaled as part of the current
1130 * The buffer is placed on the transaction's metadata list and is marked
1131 * as belonging to the transaction.
1133 * Returns error number or 0 on success.
1135 * Special care needs to be taken if the buffer already belongs to the
1136 * current committing transaction (in which case we should have frozen
1137 * data present for that commit). In that case, we don't relink the
1138 * buffer: that only gets done when the old transaction finally
1139 * completes its commit.
1141 int jbd2_journal_dirty_metadata(handle_t
*handle
, struct buffer_head
*bh
)
1143 transaction_t
*transaction
= handle
->h_transaction
;
1144 journal_t
*journal
= transaction
->t_journal
;
1145 struct journal_head
*jh
= bh2jh(bh
);
1147 jbd_debug(5, "journal_head %p\n", jh
);
1148 JBUFFER_TRACE(jh
, "entry");
1149 if (is_handle_aborted(handle
))
1152 jbd_lock_bh_state(bh
);
1154 if (jh
->b_modified
== 0) {
1156 * This buffer's got modified and becoming part
1157 * of the transaction. This needs to be done
1158 * once a transaction -bzzz
1161 J_ASSERT_JH(jh
, handle
->h_buffer_credits
> 0);
1162 handle
->h_buffer_credits
--;
1166 * fastpath, to avoid expensive locking. If this buffer is already
1167 * on the running transaction's metadata list there is nothing to do.
1168 * Nobody can take it off again because there is a handle open.
1169 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1170 * result in this test being false, so we go in and take the locks.
1172 if (jh
->b_transaction
== transaction
&& jh
->b_jlist
== BJ_Metadata
) {
1173 JBUFFER_TRACE(jh
, "fastpath");
1174 J_ASSERT_JH(jh
, jh
->b_transaction
==
1175 journal
->j_running_transaction
);
1179 set_buffer_jbddirty(bh
);
1182 * Metadata already on the current transaction list doesn't
1183 * need to be filed. Metadata on another transaction's list must
1184 * be committing, and will be refiled once the commit completes:
1185 * leave it alone for now.
1187 if (jh
->b_transaction
!= transaction
) {
1188 JBUFFER_TRACE(jh
, "already on other transaction");
1189 J_ASSERT_JH(jh
, jh
->b_transaction
==
1190 journal
->j_committing_transaction
);
1191 J_ASSERT_JH(jh
, jh
->b_next_transaction
== transaction
);
1192 /* And this case is illegal: we can't reuse another
1193 * transaction's data buffer, ever. */
1197 /* That test should have eliminated the following case: */
1198 J_ASSERT_JH(jh
, jh
->b_frozen_data
== NULL
);
1200 JBUFFER_TRACE(jh
, "file as BJ_Metadata");
1201 spin_lock(&journal
->j_list_lock
);
1202 __jbd2_journal_file_buffer(jh
, handle
->h_transaction
, BJ_Metadata
);
1203 spin_unlock(&journal
->j_list_lock
);
1205 jbd_unlock_bh_state(bh
);
1207 JBUFFER_TRACE(jh
, "exit");
1212 * jbd2_journal_release_buffer: undo a get_write_access without any buffer
1213 * updates, if the update decided in the end that it didn't need access.
1217 jbd2_journal_release_buffer(handle_t
*handle
, struct buffer_head
*bh
)
1219 BUFFER_TRACE(bh
, "entry");
1223 * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
1224 * @handle: transaction handle
1225 * @bh: bh to 'forget'
1227 * We can only do the bforget if there are no commits pending against the
1228 * buffer. If the buffer is dirty in the current running transaction we
1229 * can safely unlink it.
1231 * bh may not be a journalled buffer at all - it may be a non-JBD
1232 * buffer which came off the hashtable. Check for this.
1234 * Decrements bh->b_count by one.
1236 * Allow this call even if the handle has aborted --- it may be part of
1237 * the caller's cleanup after an abort.
1239 int jbd2_journal_forget (handle_t
*handle
, struct buffer_head
*bh
)
1241 transaction_t
*transaction
= handle
->h_transaction
;
1242 journal_t
*journal
= transaction
->t_journal
;
1243 struct journal_head
*jh
;
1244 int drop_reserve
= 0;
1246 int was_modified
= 0;
1248 BUFFER_TRACE(bh
, "entry");
1250 jbd_lock_bh_state(bh
);
1251 spin_lock(&journal
->j_list_lock
);
1253 if (!buffer_jbd(bh
))
1257 /* Critical error: attempting to delete a bitmap buffer, maybe?
1258 * Don't do any jbd operations, and return an error. */
1259 if (!J_EXPECT_JH(jh
, !jh
->b_committed_data
,
1260 "inconsistent data on disk")) {
1265 /* keep track of wether or not this transaction modified us */
1266 was_modified
= jh
->b_modified
;
1269 * The buffer's going from the transaction, we must drop
1270 * all references -bzzz
1274 if (jh
->b_transaction
== handle
->h_transaction
) {
1275 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
1277 /* If we are forgetting a buffer which is already part
1278 * of this transaction, then we can just drop it from
1279 * the transaction immediately. */
1280 clear_buffer_dirty(bh
);
1281 clear_buffer_jbddirty(bh
);
1283 JBUFFER_TRACE(jh
, "belongs to current transaction: unfile");
1286 * we only want to drop a reference if this transaction
1287 * modified the buffer
1293 * We are no longer going to journal this buffer.
1294 * However, the commit of this transaction is still
1295 * important to the buffer: the delete that we are now
1296 * processing might obsolete an old log entry, so by
1297 * committing, we can satisfy the buffer's checkpoint.
1299 * So, if we have a checkpoint on the buffer, we should
1300 * now refile the buffer on our BJ_Forget list so that
1301 * we know to remove the checkpoint after we commit.
1304 if (jh
->b_cp_transaction
) {
1305 __jbd2_journal_temp_unlink_buffer(jh
);
1306 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Forget
);
1308 __jbd2_journal_unfile_buffer(jh
);
1309 jbd2_journal_remove_journal_head(bh
);
1311 if (!buffer_jbd(bh
)) {
1312 spin_unlock(&journal
->j_list_lock
);
1313 jbd_unlock_bh_state(bh
);
1318 } else if (jh
->b_transaction
) {
1319 J_ASSERT_JH(jh
, (jh
->b_transaction
==
1320 journal
->j_committing_transaction
));
1321 /* However, if the buffer is still owned by a prior
1322 * (committing) transaction, we can't drop it yet... */
1323 JBUFFER_TRACE(jh
, "belongs to older transaction");
1324 /* ... but we CAN drop it from the new transaction if we
1325 * have also modified it since the original commit. */
1327 if (jh
->b_next_transaction
) {
1328 J_ASSERT(jh
->b_next_transaction
== transaction
);
1329 jh
->b_next_transaction
= NULL
;
1332 * only drop a reference if this transaction modified
1341 spin_unlock(&journal
->j_list_lock
);
1342 jbd_unlock_bh_state(bh
);
1346 /* no need to reserve log space for this block -bzzz */
1347 handle
->h_buffer_credits
++;
1353 * int jbd2_journal_stop() - complete a transaction
1354 * @handle: tranaction to complete.
1356 * All done for a particular handle.
1358 * There is not much action needed here. We just return any remaining
1359 * buffer credits to the transaction and remove the handle. The only
1360 * complication is that we need to start a commit operation if the
1361 * filesystem is marked for synchronous update.
1363 * jbd2_journal_stop itself will not usually return an error, but it may
1364 * do so in unusual circumstances. In particular, expect it to
1365 * return -EIO if a jbd2_journal_abort has been executed since the
1366 * transaction began.
1368 int jbd2_journal_stop(handle_t
*handle
)
1370 transaction_t
*transaction
= handle
->h_transaction
;
1371 journal_t
*journal
= transaction
->t_journal
;
1372 int old_handle_count
, err
;
1375 J_ASSERT(journal_current_handle() == handle
);
1377 if (is_handle_aborted(handle
))
1380 J_ASSERT(transaction
->t_updates
> 0);
1384 if (--handle
->h_ref
> 0) {
1385 jbd_debug(4, "h_ref %d -> %d\n", handle
->h_ref
+ 1,
1390 jbd_debug(4, "Handle %p going down\n", handle
);
1393 * Implement synchronous transaction batching. If the handle
1394 * was synchronous, don't force a commit immediately. Let's
1395 * yield and let another thread piggyback onto this transaction.
1396 * Keep doing that while new threads continue to arrive.
1397 * It doesn't cost much - we're about to run a commit and sleep
1398 * on IO anyway. Speeds up many-threaded, many-dir operations
1401 * But don't do this if this process was the most recent one to
1402 * perform a synchronous write. We do this to detect the case where a
1403 * single process is doing a stream of sync writes. No point in waiting
1404 * for joiners in that case.
1407 if (handle
->h_sync
&& journal
->j_last_sync_writer
!= pid
) {
1408 journal
->j_last_sync_writer
= pid
;
1410 old_handle_count
= transaction
->t_handle_count
;
1411 schedule_timeout_uninterruptible(1);
1412 } while (old_handle_count
!= transaction
->t_handle_count
);
1415 current
->journal_info
= NULL
;
1416 spin_lock(&journal
->j_state_lock
);
1417 spin_lock(&transaction
->t_handle_lock
);
1418 transaction
->t_outstanding_credits
-= handle
->h_buffer_credits
;
1419 transaction
->t_updates
--;
1420 if (!transaction
->t_updates
) {
1421 wake_up(&journal
->j_wait_updates
);
1422 if (journal
->j_barrier_count
)
1423 wake_up(&journal
->j_wait_transaction_locked
);
1427 * If the handle is marked SYNC, we need to set another commit
1428 * going! We also want to force a commit if the current
1429 * transaction is occupying too much of the log, or if the
1430 * transaction is too old now.
1432 if (handle
->h_sync
||
1433 transaction
->t_outstanding_credits
>
1434 journal
->j_max_transaction_buffers
||
1435 time_after_eq(jiffies
, transaction
->t_expires
)) {
1436 /* Do this even for aborted journals: an abort still
1437 * completes the commit thread, it just doesn't write
1438 * anything to disk. */
1439 tid_t tid
= transaction
->t_tid
;
1441 spin_unlock(&transaction
->t_handle_lock
);
1442 jbd_debug(2, "transaction too old, requesting commit for "
1443 "handle %p\n", handle
);
1444 /* This is non-blocking */
1445 __jbd2_log_start_commit(journal
, transaction
->t_tid
);
1446 spin_unlock(&journal
->j_state_lock
);
1449 * Special case: JBD2_SYNC synchronous updates require us
1450 * to wait for the commit to complete.
1452 if (handle
->h_sync
&& !(current
->flags
& PF_MEMALLOC
))
1453 err
= jbd2_log_wait_commit(journal
, tid
);
1455 spin_unlock(&transaction
->t_handle_lock
);
1456 spin_unlock(&journal
->j_state_lock
);
1459 lock_release(&handle
->h_lockdep_map
, 1, _THIS_IP_
);
1461 jbd2_free_handle(handle
);
1466 * int jbd2_journal_force_commit() - force any uncommitted transactions
1467 * @journal: journal to force
1469 * For synchronous operations: force any uncommitted transactions
1470 * to disk. May seem kludgy, but it reuses all the handle batching
1471 * code in a very simple manner.
1473 int jbd2_journal_force_commit(journal_t
*journal
)
1478 handle
= jbd2_journal_start(journal
, 1);
1479 if (IS_ERR(handle
)) {
1480 ret
= PTR_ERR(handle
);
1483 ret
= jbd2_journal_stop(handle
);
1490 * List management code snippets: various functions for manipulating the
1491 * transaction buffer lists.
1496 * Append a buffer to a transaction list, given the transaction's list head
1499 * j_list_lock is held.
1501 * jbd_lock_bh_state(jh2bh(jh)) is held.
1505 __blist_add_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1508 jh
->b_tnext
= jh
->b_tprev
= jh
;
1511 /* Insert at the tail of the list to preserve order */
1512 struct journal_head
*first
= *list
, *last
= first
->b_tprev
;
1514 jh
->b_tnext
= first
;
1515 last
->b_tnext
= first
->b_tprev
= jh
;
1520 * Remove a buffer from a transaction list, given the transaction's list
1523 * Called with j_list_lock held, and the journal may not be locked.
1525 * jbd_lock_bh_state(jh2bh(jh)) is held.
1529 __blist_del_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1532 *list
= jh
->b_tnext
;
1536 jh
->b_tprev
->b_tnext
= jh
->b_tnext
;
1537 jh
->b_tnext
->b_tprev
= jh
->b_tprev
;
1541 * Remove a buffer from the appropriate transaction list.
1543 * Note that this function can *change* the value of
1544 * bh->b_transaction->t_sync_datalist, t_buffers, t_forget,
1545 * t_iobuf_list, t_shadow_list, t_log_list or t_reserved_list. If the caller
1546 * is holding onto a copy of one of thee pointers, it could go bad.
1547 * Generally the caller needs to re-read the pointer from the transaction_t.
1549 * Called under j_list_lock. The journal may not be locked.
1551 void __jbd2_journal_temp_unlink_buffer(struct journal_head
*jh
)
1553 struct journal_head
**list
= NULL
;
1554 transaction_t
*transaction
;
1555 struct buffer_head
*bh
= jh2bh(jh
);
1557 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
1558 transaction
= jh
->b_transaction
;
1560 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
1562 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
1563 if (jh
->b_jlist
!= BJ_None
)
1564 J_ASSERT_JH(jh
, transaction
!= NULL
);
1566 switch (jh
->b_jlist
) {
1570 list
= &transaction
->t_sync_datalist
;
1573 transaction
->t_nr_buffers
--;
1574 J_ASSERT_JH(jh
, transaction
->t_nr_buffers
>= 0);
1575 list
= &transaction
->t_buffers
;
1578 list
= &transaction
->t_forget
;
1581 list
= &transaction
->t_iobuf_list
;
1584 list
= &transaction
->t_shadow_list
;
1587 list
= &transaction
->t_log_list
;
1590 list
= &transaction
->t_reserved_list
;
1593 list
= &transaction
->t_locked_list
;
1597 __blist_del_buffer(list
, jh
);
1598 jh
->b_jlist
= BJ_None
;
1599 if (test_clear_buffer_jbddirty(bh
))
1600 mark_buffer_dirty(bh
); /* Expose it to the VM */
1603 void __jbd2_journal_unfile_buffer(struct journal_head
*jh
)
1605 __jbd2_journal_temp_unlink_buffer(jh
);
1606 jh
->b_transaction
= NULL
;
1609 void jbd2_journal_unfile_buffer(journal_t
*journal
, struct journal_head
*jh
)
1611 jbd_lock_bh_state(jh2bh(jh
));
1612 spin_lock(&journal
->j_list_lock
);
1613 __jbd2_journal_unfile_buffer(jh
);
1614 spin_unlock(&journal
->j_list_lock
);
1615 jbd_unlock_bh_state(jh2bh(jh
));
1619 * Called from jbd2_journal_try_to_free_buffers().
1621 * Called under jbd_lock_bh_state(bh)
1624 __journal_try_to_free_buffer(journal_t
*journal
, struct buffer_head
*bh
)
1626 struct journal_head
*jh
;
1630 if (buffer_locked(bh
) || buffer_dirty(bh
))
1633 if (jh
->b_next_transaction
!= NULL
)
1636 spin_lock(&journal
->j_list_lock
);
1637 if (jh
->b_transaction
!= NULL
&& jh
->b_cp_transaction
== NULL
) {
1638 if (jh
->b_jlist
== BJ_SyncData
|| jh
->b_jlist
== BJ_Locked
) {
1639 /* A written-back ordered data buffer */
1640 JBUFFER_TRACE(jh
, "release data");
1641 __jbd2_journal_unfile_buffer(jh
);
1642 jbd2_journal_remove_journal_head(bh
);
1645 } else if (jh
->b_cp_transaction
!= NULL
&& jh
->b_transaction
== NULL
) {
1646 /* written-back checkpointed metadata buffer */
1647 if (jh
->b_jlist
== BJ_None
) {
1648 JBUFFER_TRACE(jh
, "remove from checkpoint list");
1649 __jbd2_journal_remove_checkpoint(jh
);
1650 jbd2_journal_remove_journal_head(bh
);
1654 spin_unlock(&journal
->j_list_lock
);
1661 * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
1662 * @journal: journal for operation
1663 * @page: to try and free
1664 * @unused_gfp_mask: unused
1667 * For all the buffers on this page,
1668 * if they are fully written out ordered data, move them onto BUF_CLEAN
1669 * so try_to_free_buffers() can reap them.
1671 * This function returns non-zero if we wish try_to_free_buffers()
1672 * to be called. We do this if the page is releasable by try_to_free_buffers().
1673 * We also do it if the page has locked or dirty buffers and the caller wants
1674 * us to perform sync or async writeout.
1676 * This complicates JBD locking somewhat. We aren't protected by the
1677 * BKL here. We wish to remove the buffer from its committing or
1678 * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
1680 * This may *change* the value of transaction_t->t_datalist, so anyone
1681 * who looks at t_datalist needs to lock against this function.
1683 * Even worse, someone may be doing a jbd2_journal_dirty_data on this
1684 * buffer. So we need to lock against that. jbd2_journal_dirty_data()
1685 * will come out of the lock with the buffer dirty, which makes it
1686 * ineligible for release here.
1688 * Who else is affected by this? hmm... Really the only contender
1689 * is do_get_write_access() - it could be looking at the buffer while
1690 * journal_try_to_free_buffer() is changing its state. But that
1691 * cannot happen because we never reallocate freed data as metadata
1692 * while the data is part of a transaction. Yes?
1694 int jbd2_journal_try_to_free_buffers(journal_t
*journal
,
1695 struct page
*page
, gfp_t unused_gfp_mask
)
1697 struct buffer_head
*head
;
1698 struct buffer_head
*bh
;
1701 J_ASSERT(PageLocked(page
));
1703 head
= page_buffers(page
);
1706 struct journal_head
*jh
;
1709 * We take our own ref against the journal_head here to avoid
1710 * having to add tons of locking around each instance of
1711 * jbd2_journal_remove_journal_head() and jbd2_journal_put_journal_head().
1713 jh
= jbd2_journal_grab_journal_head(bh
);
1717 jbd_lock_bh_state(bh
);
1718 __journal_try_to_free_buffer(journal
, bh
);
1719 jbd2_journal_put_journal_head(jh
);
1720 jbd_unlock_bh_state(bh
);
1723 } while ((bh
= bh
->b_this_page
) != head
);
1724 ret
= try_to_free_buffers(page
);
1730 * This buffer is no longer needed. If it is on an older transaction's
1731 * checkpoint list we need to record it on this transaction's forget list
1732 * to pin this buffer (and hence its checkpointing transaction) down until
1733 * this transaction commits. If the buffer isn't on a checkpoint list, we
1735 * Returns non-zero if JBD no longer has an interest in the buffer.
1737 * Called under j_list_lock.
1739 * Called under jbd_lock_bh_state(bh).
1741 static int __dispose_buffer(struct journal_head
*jh
, transaction_t
*transaction
)
1744 struct buffer_head
*bh
= jh2bh(jh
);
1746 __jbd2_journal_unfile_buffer(jh
);
1748 if (jh
->b_cp_transaction
) {
1749 JBUFFER_TRACE(jh
, "on running+cp transaction");
1750 __jbd2_journal_file_buffer(jh
, transaction
, BJ_Forget
);
1751 clear_buffer_jbddirty(bh
);
1754 JBUFFER_TRACE(jh
, "on running transaction");
1755 jbd2_journal_remove_journal_head(bh
);
1762 * jbd2_journal_invalidatepage
1764 * This code is tricky. It has a number of cases to deal with.
1766 * There are two invariants which this code relies on:
1768 * i_size must be updated on disk before we start calling invalidatepage on the
1771 * This is done in ext3 by defining an ext3_setattr method which
1772 * updates i_size before truncate gets going. By maintaining this
1773 * invariant, we can be sure that it is safe to throw away any buffers
1774 * attached to the current transaction: once the transaction commits,
1775 * we know that the data will not be needed.
1777 * Note however that we can *not* throw away data belonging to the
1778 * previous, committing transaction!
1780 * Any disk blocks which *are* part of the previous, committing
1781 * transaction (and which therefore cannot be discarded immediately) are
1782 * not going to be reused in the new running transaction
1784 * The bitmap committed_data images guarantee this: any block which is
1785 * allocated in one transaction and removed in the next will be marked
1786 * as in-use in the committed_data bitmap, so cannot be reused until
1787 * the next transaction to delete the block commits. This means that
1788 * leaving committing buffers dirty is quite safe: the disk blocks
1789 * cannot be reallocated to a different file and so buffer aliasing is
1793 * The above applies mainly to ordered data mode. In writeback mode we
1794 * don't make guarantees about the order in which data hits disk --- in
1795 * particular we don't guarantee that new dirty data is flushed before
1796 * transaction commit --- so it is always safe just to discard data
1797 * immediately in that mode. --sct
1801 * The journal_unmap_buffer helper function returns zero if the buffer
1802 * concerned remains pinned as an anonymous buffer belonging to an older
1805 * We're outside-transaction here. Either or both of j_running_transaction
1806 * and j_committing_transaction may be NULL.
1808 static int journal_unmap_buffer(journal_t
*journal
, struct buffer_head
*bh
)
1810 transaction_t
*transaction
;
1811 struct journal_head
*jh
;
1815 BUFFER_TRACE(bh
, "entry");
1818 * It is safe to proceed here without the j_list_lock because the
1819 * buffers cannot be stolen by try_to_free_buffers as long as we are
1820 * holding the page lock. --sct
1823 if (!buffer_jbd(bh
))
1824 goto zap_buffer_unlocked
;
1826 spin_lock(&journal
->j_state_lock
);
1827 jbd_lock_bh_state(bh
);
1828 spin_lock(&journal
->j_list_lock
);
1830 jh
= jbd2_journal_grab_journal_head(bh
);
1832 goto zap_buffer_no_jh
;
1834 transaction
= jh
->b_transaction
;
1835 if (transaction
== NULL
) {
1836 /* First case: not on any transaction. If it
1837 * has no checkpoint link, then we can zap it:
1838 * it's a writeback-mode buffer so we don't care
1839 * if it hits disk safely. */
1840 if (!jh
->b_cp_transaction
) {
1841 JBUFFER_TRACE(jh
, "not on any transaction: zap");
1845 if (!buffer_dirty(bh
)) {
1846 /* bdflush has written it. We can drop it now */
1850 /* OK, it must be in the journal but still not
1851 * written fully to disk: it's metadata or
1852 * journaled data... */
1854 if (journal
->j_running_transaction
) {
1855 /* ... and once the current transaction has
1856 * committed, the buffer won't be needed any
1858 JBUFFER_TRACE(jh
, "checkpointed: add to BJ_Forget");
1859 ret
= __dispose_buffer(jh
,
1860 journal
->j_running_transaction
);
1861 jbd2_journal_put_journal_head(jh
);
1862 spin_unlock(&journal
->j_list_lock
);
1863 jbd_unlock_bh_state(bh
);
1864 spin_unlock(&journal
->j_state_lock
);
1867 /* There is no currently-running transaction. So the
1868 * orphan record which we wrote for this file must have
1869 * passed into commit. We must attach this buffer to
1870 * the committing transaction, if it exists. */
1871 if (journal
->j_committing_transaction
) {
1872 JBUFFER_TRACE(jh
, "give to committing trans");
1873 ret
= __dispose_buffer(jh
,
1874 journal
->j_committing_transaction
);
1875 jbd2_journal_put_journal_head(jh
);
1876 spin_unlock(&journal
->j_list_lock
);
1877 jbd_unlock_bh_state(bh
);
1878 spin_unlock(&journal
->j_state_lock
);
1881 /* The orphan record's transaction has
1882 * committed. We can cleanse this buffer */
1883 clear_buffer_jbddirty(bh
);
1887 } else if (transaction
== journal
->j_committing_transaction
) {
1888 JBUFFER_TRACE(jh
, "on committing transaction");
1889 if (jh
->b_jlist
== BJ_Locked
) {
1891 * The buffer is on the committing transaction's locked
1892 * list. We have the buffer locked, so I/O has
1893 * completed. So we can nail the buffer now.
1895 may_free
= __dispose_buffer(jh
, transaction
);
1899 * If it is committing, we simply cannot touch it. We
1900 * can remove it's next_transaction pointer from the
1901 * running transaction if that is set, but nothing
1903 set_buffer_freed(bh
);
1904 if (jh
->b_next_transaction
) {
1905 J_ASSERT(jh
->b_next_transaction
==
1906 journal
->j_running_transaction
);
1907 jh
->b_next_transaction
= NULL
;
1909 jbd2_journal_put_journal_head(jh
);
1910 spin_unlock(&journal
->j_list_lock
);
1911 jbd_unlock_bh_state(bh
);
1912 spin_unlock(&journal
->j_state_lock
);
1915 /* Good, the buffer belongs to the running transaction.
1916 * We are writing our own transaction's data, not any
1917 * previous one's, so it is safe to throw it away
1918 * (remember that we expect the filesystem to have set
1919 * i_size already for this truncate so recovery will not
1920 * expose the disk blocks we are discarding here.) */
1921 J_ASSERT_JH(jh
, transaction
== journal
->j_running_transaction
);
1922 JBUFFER_TRACE(jh
, "on running transaction");
1923 may_free
= __dispose_buffer(jh
, transaction
);
1927 jbd2_journal_put_journal_head(jh
);
1929 spin_unlock(&journal
->j_list_lock
);
1930 jbd_unlock_bh_state(bh
);
1931 spin_unlock(&journal
->j_state_lock
);
1932 zap_buffer_unlocked
:
1933 clear_buffer_dirty(bh
);
1934 J_ASSERT_BH(bh
, !buffer_jbddirty(bh
));
1935 clear_buffer_mapped(bh
);
1936 clear_buffer_req(bh
);
1937 clear_buffer_new(bh
);
1943 * void jbd2_journal_invalidatepage()
1944 * @journal: journal to use for flush...
1945 * @page: page to flush
1946 * @offset: length of page to invalidate.
1948 * Reap page buffers containing data after offset in page.
1951 void jbd2_journal_invalidatepage(journal_t
*journal
,
1953 unsigned long offset
)
1955 struct buffer_head
*head
, *bh
, *next
;
1956 unsigned int curr_off
= 0;
1959 if (!PageLocked(page
))
1961 if (!page_has_buffers(page
))
1964 /* We will potentially be playing with lists other than just the
1965 * data lists (especially for journaled data mode), so be
1966 * cautious in our locking. */
1968 head
= bh
= page_buffers(page
);
1970 unsigned int next_off
= curr_off
+ bh
->b_size
;
1971 next
= bh
->b_this_page
;
1973 if (offset
<= curr_off
) {
1974 /* This block is wholly outside the truncation point */
1976 may_free
&= journal_unmap_buffer(journal
, bh
);
1979 curr_off
= next_off
;
1982 } while (bh
!= head
);
1985 if (may_free
&& try_to_free_buffers(page
))
1986 J_ASSERT(!page_has_buffers(page
));
1991 * File a buffer on the given transaction list.
1993 void __jbd2_journal_file_buffer(struct journal_head
*jh
,
1994 transaction_t
*transaction
, int jlist
)
1996 struct journal_head
**list
= NULL
;
1998 struct buffer_head
*bh
= jh2bh(jh
);
2000 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
2001 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
2003 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
2004 J_ASSERT_JH(jh
, jh
->b_transaction
== transaction
||
2005 jh
->b_transaction
== NULL
);
2007 if (jh
->b_transaction
&& jh
->b_jlist
== jlist
)
2010 /* The following list of buffer states needs to be consistent
2011 * with __jbd_unexpected_dirty_buffer()'s handling of dirty
2014 if (jlist
== BJ_Metadata
|| jlist
== BJ_Reserved
||
2015 jlist
== BJ_Shadow
|| jlist
== BJ_Forget
) {
2016 if (test_clear_buffer_dirty(bh
) ||
2017 test_clear_buffer_jbddirty(bh
))
2021 if (jh
->b_transaction
)
2022 __jbd2_journal_temp_unlink_buffer(jh
);
2023 jh
->b_transaction
= transaction
;
2027 J_ASSERT_JH(jh
, !jh
->b_committed_data
);
2028 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
2031 list
= &transaction
->t_sync_datalist
;
2034 transaction
->t_nr_buffers
++;
2035 list
= &transaction
->t_buffers
;
2038 list
= &transaction
->t_forget
;
2041 list
= &transaction
->t_iobuf_list
;
2044 list
= &transaction
->t_shadow_list
;
2047 list
= &transaction
->t_log_list
;
2050 list
= &transaction
->t_reserved_list
;
2053 list
= &transaction
->t_locked_list
;
2057 __blist_add_buffer(list
, jh
);
2058 jh
->b_jlist
= jlist
;
2061 set_buffer_jbddirty(bh
);
2064 void jbd2_journal_file_buffer(struct journal_head
*jh
,
2065 transaction_t
*transaction
, int jlist
)
2067 jbd_lock_bh_state(jh2bh(jh
));
2068 spin_lock(&transaction
->t_journal
->j_list_lock
);
2069 __jbd2_journal_file_buffer(jh
, transaction
, jlist
);
2070 spin_unlock(&transaction
->t_journal
->j_list_lock
);
2071 jbd_unlock_bh_state(jh2bh(jh
));
2075 * Remove a buffer from its current buffer list in preparation for
2076 * dropping it from its current transaction entirely. If the buffer has
2077 * already started to be used by a subsequent transaction, refile the
2078 * buffer on that transaction's metadata list.
2080 * Called under journal->j_list_lock
2082 * Called under jbd_lock_bh_state(jh2bh(jh))
2084 void __jbd2_journal_refile_buffer(struct journal_head
*jh
)
2087 struct buffer_head
*bh
= jh2bh(jh
);
2089 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
2090 if (jh
->b_transaction
)
2091 assert_spin_locked(&jh
->b_transaction
->t_journal
->j_list_lock
);
2093 /* If the buffer is now unused, just drop it. */
2094 if (jh
->b_next_transaction
== NULL
) {
2095 __jbd2_journal_unfile_buffer(jh
);
2100 * It has been modified by a later transaction: add it to the new
2101 * transaction's metadata list.
2104 was_dirty
= test_clear_buffer_jbddirty(bh
);
2105 __jbd2_journal_temp_unlink_buffer(jh
);
2106 jh
->b_transaction
= jh
->b_next_transaction
;
2107 jh
->b_next_transaction
= NULL
;
2108 __jbd2_journal_file_buffer(jh
, jh
->b_transaction
,
2109 jh
->b_modified
? BJ_Metadata
: BJ_Reserved
);
2110 J_ASSERT_JH(jh
, jh
->b_transaction
->t_state
== T_RUNNING
);
2113 set_buffer_jbddirty(bh
);
2117 * For the unlocked version of this call, also make sure that any
2118 * hanging journal_head is cleaned up if necessary.
2120 * __jbd2_journal_refile_buffer is usually called as part of a single locked
2121 * operation on a buffer_head, in which the caller is probably going to
2122 * be hooking the journal_head onto other lists. In that case it is up
2123 * to the caller to remove the journal_head if necessary. For the
2124 * unlocked jbd2_journal_refile_buffer call, the caller isn't going to be
2125 * doing anything else to the buffer so we need to do the cleanup
2126 * ourselves to avoid a jh leak.
2128 * *** The journal_head may be freed by this call! ***
2130 void jbd2_journal_refile_buffer(journal_t
*journal
, struct journal_head
*jh
)
2132 struct buffer_head
*bh
= jh2bh(jh
);
2134 jbd_lock_bh_state(bh
);
2135 spin_lock(&journal
->j_list_lock
);
2137 __jbd2_journal_refile_buffer(jh
);
2138 jbd_unlock_bh_state(bh
);
2139 jbd2_journal_remove_journal_head(bh
);
2141 spin_unlock(&journal
->j_list_lock
);