2 * linux/fs/jbd/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/jbd.h>
23 #include <linux/errno.h>
24 #include <linux/slab.h>
25 #include <linux/timer.h>
27 #include <linux/highmem.h>
29 static void __journal_temp_unlink_buffer(struct journal_head
*jh
);
32 * 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 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
;
69 * A handle_t is an object which represents a single atomic update to a
70 * filesystem, and which tracks all of the modifications which form part
75 * start_this_handle: Given a handle, deal with any locking or stalling
76 * needed to make sure that there is enough journal space for the handle
77 * to begin. Attach the handle to a transaction and set up the
78 * transaction's buffer credits.
81 static int start_this_handle(journal_t
*journal
, handle_t
*handle
)
83 transaction_t
*transaction
;
85 int nblocks
= handle
->h_buffer_credits
;
86 transaction_t
*new_transaction
= NULL
;
89 if (nblocks
> journal
->j_max_transaction_buffers
) {
90 printk(KERN_ERR
"JBD: %s wants too many credits (%d > %d)\n",
91 current
->comm
, nblocks
,
92 journal
->j_max_transaction_buffers
);
98 if (!journal
->j_running_transaction
) {
99 new_transaction
= kzalloc(sizeof(*new_transaction
),
100 GFP_NOFS
|__GFP_NOFAIL
);
101 if (!new_transaction
) {
107 jbd_debug(3, "New handle %p going live.\n", handle
);
112 * We need to hold j_state_lock until t_updates has been incremented,
113 * for proper journal barrier handling
115 spin_lock(&journal
->j_state_lock
);
117 if (is_journal_aborted(journal
) ||
118 (journal
->j_errno
!= 0 && !(journal
->j_flags
& JFS_ACK_ERR
))) {
119 spin_unlock(&journal
->j_state_lock
);
124 /* Wait on the journal's transaction barrier if necessary */
125 if (journal
->j_barrier_count
) {
126 spin_unlock(&journal
->j_state_lock
);
127 wait_event(journal
->j_wait_transaction_locked
,
128 journal
->j_barrier_count
== 0);
132 if (!journal
->j_running_transaction
) {
133 if (!new_transaction
) {
134 spin_unlock(&journal
->j_state_lock
);
135 goto alloc_transaction
;
137 get_transaction(journal
, new_transaction
);
138 new_transaction
= NULL
;
141 transaction
= journal
->j_running_transaction
;
144 * If the current transaction is locked down for commit, wait for the
145 * lock to be released.
147 if (transaction
->t_state
== T_LOCKED
) {
150 prepare_to_wait(&journal
->j_wait_transaction_locked
,
151 &wait
, TASK_UNINTERRUPTIBLE
);
152 spin_unlock(&journal
->j_state_lock
);
154 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
159 * If there is not enough space left in the log to write all potential
160 * buffers requested by this operation, we need to stall pending a log
161 * checkpoint to free some more log space.
163 spin_lock(&transaction
->t_handle_lock
);
164 needed
= transaction
->t_outstanding_credits
+ nblocks
;
166 if (needed
> journal
->j_max_transaction_buffers
) {
168 * If the current transaction is already too large, then start
169 * to commit it: we can then go back and attach this handle to
174 jbd_debug(2, "Handle %p starting new commit...\n", handle
);
175 spin_unlock(&transaction
->t_handle_lock
);
176 prepare_to_wait(&journal
->j_wait_transaction_locked
, &wait
,
177 TASK_UNINTERRUPTIBLE
);
178 __log_start_commit(journal
, transaction
->t_tid
);
179 spin_unlock(&journal
->j_state_lock
);
181 finish_wait(&journal
->j_wait_transaction_locked
, &wait
);
186 * The commit code assumes that it can get enough log space
187 * without forcing a checkpoint. This is *critical* for
188 * correctness: a checkpoint of a buffer which is also
189 * associated with a committing transaction creates a deadlock,
190 * so commit simply cannot force through checkpoints.
192 * We must therefore ensure the necessary space in the journal
193 * *before* starting to dirty potentially checkpointed buffers
194 * in the new transaction.
196 * The worst part is, any transaction currently committing can
197 * reduce the free space arbitrarily. Be careful to account for
198 * those buffers when checkpointing.
202 * @@@ AKPM: This seems rather over-defensive. We're giving commit
203 * a _lot_ of headroom: 1/4 of the journal plus the size of
204 * the committing transaction. Really, we only need to give it
205 * committing_transaction->t_outstanding_credits plus "enough" for
206 * the log control blocks.
207 * Also, this test is inconsitent with the matching one in
210 if (__log_space_left(journal
) < jbd_space_needed(journal
)) {
211 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle
);
212 spin_unlock(&transaction
->t_handle_lock
);
213 __log_wait_for_space(journal
);
217 /* OK, account for the buffers that this operation expects to
218 * use and add the handle to the running transaction. */
220 handle
->h_transaction
= transaction
;
221 transaction
->t_outstanding_credits
+= nblocks
;
222 transaction
->t_updates
++;
223 transaction
->t_handle_count
++;
224 jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
225 handle
, nblocks
, transaction
->t_outstanding_credits
,
226 __log_space_left(journal
));
227 spin_unlock(&transaction
->t_handle_lock
);
228 spin_unlock(&journal
->j_state_lock
);
230 if (unlikely(new_transaction
)) /* It's usually NULL */
231 kfree(new_transaction
);
235 static struct lock_class_key jbd_handle_key
;
237 /* Allocate a new handle. This should probably be in a slab... */
238 static handle_t
*new_handle(int nblocks
)
240 handle_t
*handle
= jbd_alloc_handle(GFP_NOFS
);
243 memset(handle
, 0, sizeof(*handle
));
244 handle
->h_buffer_credits
= nblocks
;
247 lockdep_init_map(&handle
->h_lockdep_map
, "jbd_handle", &jbd_handle_key
, 0);
253 * handle_t *journal_start() - Obtain a new handle.
254 * @journal: Journal to start transaction on.
255 * @nblocks: number of block buffer we might modify
257 * We make sure that the transaction can guarantee at least nblocks of
258 * modified buffers in the log. We block until the log can guarantee
261 * This function is visible to journal users (like ext3fs), so is not
262 * called with the journal already locked.
264 * Return a pointer to a newly allocated handle, or NULL on failure
266 handle_t
*journal_start(journal_t
*journal
, int nblocks
)
268 handle_t
*handle
= journal_current_handle();
272 return ERR_PTR(-EROFS
);
275 J_ASSERT(handle
->h_transaction
->t_journal
== journal
);
280 handle
= new_handle(nblocks
);
282 return ERR_PTR(-ENOMEM
);
284 current
->journal_info
= handle
;
286 err
= start_this_handle(journal
, handle
);
288 jbd_free_handle(handle
);
289 current
->journal_info
= NULL
;
290 handle
= ERR_PTR(err
);
294 lock_acquire(&handle
->h_lockdep_map
, 0, 0, 0, 2, _THIS_IP_
);
301 * int journal_extend() - extend buffer credits.
302 * @handle: handle to 'extend'
303 * @nblocks: nr blocks to try to extend by.
305 * Some transactions, such as large extends and truncates, can be done
306 * atomically all at once or in several stages. The operation requests
307 * a credit for a number of buffer modications in advance, but can
308 * extend its credit if it needs more.
310 * journal_extend tries to give the running handle more buffer credits.
311 * It does not guarantee that allocation - this is a best-effort only.
312 * The calling process MUST be able to deal cleanly with a failure to
315 * Return 0 on success, non-zero on failure.
317 * return code < 0 implies an error
318 * return code > 0 implies normal transaction-full status.
320 int journal_extend(handle_t
*handle
, int nblocks
)
322 transaction_t
*transaction
= handle
->h_transaction
;
323 journal_t
*journal
= transaction
->t_journal
;
328 if (is_handle_aborted(handle
))
333 spin_lock(&journal
->j_state_lock
);
335 /* Don't extend a locked-down transaction! */
336 if (handle
->h_transaction
->t_state
!= T_RUNNING
) {
337 jbd_debug(3, "denied handle %p %d blocks: "
338 "transaction not running\n", handle
, nblocks
);
342 spin_lock(&transaction
->t_handle_lock
);
343 wanted
= transaction
->t_outstanding_credits
+ nblocks
;
345 if (wanted
> journal
->j_max_transaction_buffers
) {
346 jbd_debug(3, "denied handle %p %d blocks: "
347 "transaction too large\n", handle
, nblocks
);
351 if (wanted
> __log_space_left(journal
)) {
352 jbd_debug(3, "denied handle %p %d blocks: "
353 "insufficient log space\n", handle
, nblocks
);
357 handle
->h_buffer_credits
+= nblocks
;
358 transaction
->t_outstanding_credits
+= nblocks
;
361 jbd_debug(3, "extended handle %p by %d\n", handle
, nblocks
);
363 spin_unlock(&transaction
->t_handle_lock
);
365 spin_unlock(&journal
->j_state_lock
);
372 <<<<<<< HEAD:fs/jbd/transaction.c
373 * int journal_restart() - restart a handle .
375 * int journal_restart() - restart a handle.
376 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
377 * @handle: handle to restart
378 * @nblocks: nr credits requested
380 * Restart a handle for a multi-transaction filesystem
383 * If the journal_extend() call above fails to grant new buffer credits
384 * to a running handle, a call to journal_restart will commit the
385 * handle's transaction so far and reattach the handle to a new
386 * transaction capabable of guaranteeing the requested number of
390 int journal_restart(handle_t
*handle
, int nblocks
)
392 transaction_t
*transaction
= handle
->h_transaction
;
393 journal_t
*journal
= transaction
->t_journal
;
396 /* If we've had an abort of any type, don't even think about
397 * actually doing the restart! */
398 if (is_handle_aborted(handle
))
402 * First unlink the handle from its current transaction, and start the
405 J_ASSERT(transaction
->t_updates
> 0);
406 J_ASSERT(journal_current_handle() == handle
);
408 spin_lock(&journal
->j_state_lock
);
409 spin_lock(&transaction
->t_handle_lock
);
410 transaction
->t_outstanding_credits
-= handle
->h_buffer_credits
;
411 transaction
->t_updates
--;
413 if (!transaction
->t_updates
)
414 wake_up(&journal
->j_wait_updates
);
415 spin_unlock(&transaction
->t_handle_lock
);
417 jbd_debug(2, "restarting handle %p\n", handle
);
418 __log_start_commit(journal
, transaction
->t_tid
);
419 spin_unlock(&journal
->j_state_lock
);
421 handle
->h_buffer_credits
= nblocks
;
422 ret
= start_this_handle(journal
, handle
);
428 * void journal_lock_updates () - establish a transaction barrier.
429 * @journal: Journal to establish a barrier on.
431 * This locks out any further updates from being started, and blocks
432 * until all existing updates have completed, returning only once the
433 * journal is in a quiescent state with no updates running.
435 * The journal lock should not be held on entry.
437 void journal_lock_updates(journal_t
*journal
)
441 spin_lock(&journal
->j_state_lock
);
442 ++journal
->j_barrier_count
;
444 /* Wait until there are no running updates */
446 transaction_t
*transaction
= journal
->j_running_transaction
;
451 spin_lock(&transaction
->t_handle_lock
);
452 if (!transaction
->t_updates
) {
453 spin_unlock(&transaction
->t_handle_lock
);
456 prepare_to_wait(&journal
->j_wait_updates
, &wait
,
457 TASK_UNINTERRUPTIBLE
);
458 spin_unlock(&transaction
->t_handle_lock
);
459 spin_unlock(&journal
->j_state_lock
);
461 finish_wait(&journal
->j_wait_updates
, &wait
);
462 spin_lock(&journal
->j_state_lock
);
464 spin_unlock(&journal
->j_state_lock
);
467 * We have now established a barrier against other normal updates, but
468 * we also need to barrier against other journal_lock_updates() calls
469 * to make sure that we serialise special journal-locked operations
472 mutex_lock(&journal
->j_barrier
);
476 * void journal_unlock_updates (journal_t* journal) - release barrier
477 * @journal: Journal to release the barrier on.
479 * Release a transaction barrier obtained with journal_lock_updates().
481 * Should be called without the journal lock held.
483 void journal_unlock_updates (journal_t
*journal
)
485 J_ASSERT(journal
->j_barrier_count
!= 0);
487 mutex_unlock(&journal
->j_barrier
);
488 spin_lock(&journal
->j_state_lock
);
489 --journal
->j_barrier_count
;
490 spin_unlock(&journal
->j_state_lock
);
491 wake_up(&journal
->j_wait_transaction_locked
);
495 * Report any unexpected dirty buffers which turn up. Normally those
496 * indicate an error, but they can occur if the user is running (say)
497 * tune2fs to modify the live filesystem, so we need the option of
498 * continuing as gracefully as possible. #
500 * The caller should already hold the journal lock and
501 * j_list_lock spinlock: most callers will need those anyway
502 * in order to probe the buffer's journaling state safely.
504 static void jbd_unexpected_dirty_buffer(struct journal_head
*jh
)
508 /* If this buffer is one which might reasonably be dirty
509 * --- ie. data, or not part of this journal --- then
510 * we're OK to leave it alone, but otherwise we need to
511 * move the dirty bit to the journal's own internal
515 if (jlist
== BJ_Metadata
|| jlist
== BJ_Reserved
||
516 jlist
== BJ_Shadow
|| jlist
== BJ_Forget
) {
517 struct buffer_head
*bh
= jh2bh(jh
);
519 if (test_clear_buffer_dirty(bh
))
520 set_buffer_jbddirty(bh
);
525 * If the buffer is already part of the current transaction, then there
526 * is nothing we need to do. If it is already part of a prior
527 * transaction which we are still committing to disk, then we need to
528 * make sure that we do not overwrite the old copy: we do copy-out to
529 * preserve the copy going to disk. We also account the buffer against
530 * the handle's metadata buffer credits (unless the buffer is already
531 * part of the transaction, that is).
535 do_get_write_access(handle_t
*handle
, struct journal_head
*jh
,
538 struct buffer_head
*bh
;
539 transaction_t
*transaction
;
542 char *frozen_buffer
= NULL
;
545 if (is_handle_aborted(handle
))
548 transaction
= handle
->h_transaction
;
549 journal
= transaction
->t_journal
;
551 jbd_debug(5, "buffer_head %p, force_copy %d\n", jh
, force_copy
);
553 JBUFFER_TRACE(jh
, "entry");
557 /* @@@ Need to check for errors here at some point. */
560 jbd_lock_bh_state(bh
);
562 /* We now hold the buffer lock so it is safe to query the buffer
563 * state. Is the buffer dirty?
565 * If so, there are two possibilities. The buffer may be
566 * non-journaled, and undergoing a quite legitimate writeback.
567 * Otherwise, it is journaled, and we don't expect dirty buffers
568 * in that state (the buffers should be marked JBD_Dirty
569 * instead.) So either the IO is being done under our own
570 * control and this is a bug, or it's a third party IO such as
571 * dump(8) (which may leave the buffer scheduled for read ---
572 * ie. locked but not dirty) or tune2fs (which may actually have
573 * the buffer dirtied, ugh.) */
575 if (buffer_dirty(bh
)) {
577 * First question: is this buffer already part of the current
578 * transaction or the existing committing transaction?
580 if (jh
->b_transaction
) {
582 jh
->b_transaction
== transaction
||
584 journal
->j_committing_transaction
);
585 if (jh
->b_next_transaction
)
586 J_ASSERT_JH(jh
, jh
->b_next_transaction
==
590 * In any case we need to clean the dirty flag and we must
591 * do it under the buffer lock to be sure we don't race
592 * with running write-out.
594 JBUFFER_TRACE(jh
, "Unexpected dirty buffer");
595 jbd_unexpected_dirty_buffer(jh
);
601 if (is_handle_aborted(handle
)) {
602 jbd_unlock_bh_state(bh
);
608 * The buffer is already part of this transaction if b_transaction or
609 * b_next_transaction points to it
611 if (jh
->b_transaction
== transaction
||
612 jh
->b_next_transaction
== transaction
)
616 * If there is already a copy-out version of this buffer, then we don't
617 * need to make another one
619 if (jh
->b_frozen_data
) {
620 JBUFFER_TRACE(jh
, "has frozen data");
621 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
622 jh
->b_next_transaction
= transaction
;
626 /* Is there data here we need to preserve? */
628 if (jh
->b_transaction
&& jh
->b_transaction
!= transaction
) {
629 JBUFFER_TRACE(jh
, "owned by older transaction");
630 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
631 J_ASSERT_JH(jh
, jh
->b_transaction
==
632 journal
->j_committing_transaction
);
634 /* There is one case we have to be very careful about.
635 * If the committing transaction is currently writing
636 * this buffer out to disk and has NOT made a copy-out,
637 * then we cannot modify the buffer contents at all
638 * right now. The essence of copy-out is that it is the
639 * extra copy, not the primary copy, which gets
640 * journaled. If the primary copy is already going to
641 * disk then we cannot do copy-out here. */
643 if (jh
->b_jlist
== BJ_Shadow
) {
644 DEFINE_WAIT_BIT(wait
, &bh
->b_state
, BH_Unshadow
);
645 wait_queue_head_t
*wqh
;
647 wqh
= bit_waitqueue(&bh
->b_state
, BH_Unshadow
);
649 JBUFFER_TRACE(jh
, "on shadow: sleep");
650 jbd_unlock_bh_state(bh
);
651 /* commit wakes up all shadow buffers after IO */
653 prepare_to_wait(wqh
, &wait
.wait
,
654 TASK_UNINTERRUPTIBLE
);
655 if (jh
->b_jlist
!= BJ_Shadow
)
659 finish_wait(wqh
, &wait
.wait
);
663 /* Only do the copy if the currently-owning transaction
664 * still needs it. If it is on the Forget list, the
665 * committing transaction is past that stage. The
666 * buffer had better remain locked during the kmalloc,
667 * but that should be true --- we hold the journal lock
668 * still and the buffer is already on the BUF_JOURNAL
669 * list so won't be flushed.
671 * Subtle point, though: if this is a get_undo_access,
672 * then we will be relying on the frozen_data to contain
673 * the new value of the committed_data record after the
674 * transaction, so we HAVE to force the frozen_data copy
677 if (jh
->b_jlist
!= BJ_Forget
|| force_copy
) {
678 JBUFFER_TRACE(jh
, "generate frozen data");
679 if (!frozen_buffer
) {
680 JBUFFER_TRACE(jh
, "allocate memory for buffer");
681 jbd_unlock_bh_state(bh
);
683 jbd_alloc(jh2bh(jh
)->b_size
,
685 if (!frozen_buffer
) {
687 "%s: OOM for frozen_buffer\n",
689 JBUFFER_TRACE(jh
, "oom!");
691 jbd_lock_bh_state(bh
);
696 jh
->b_frozen_data
= frozen_buffer
;
697 frozen_buffer
= NULL
;
700 jh
->b_next_transaction
= transaction
;
705 * Finally, if the buffer is not journaled right now, we need to make
706 * sure it doesn't get written to disk before the caller actually
707 * commits the new data
709 if (!jh
->b_transaction
) {
710 JBUFFER_TRACE(jh
, "no transaction");
711 J_ASSERT_JH(jh
, !jh
->b_next_transaction
);
712 jh
->b_transaction
= transaction
;
713 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
714 spin_lock(&journal
->j_list_lock
);
715 __journal_file_buffer(jh
, transaction
, BJ_Reserved
);
716 spin_unlock(&journal
->j_list_lock
);
725 J_EXPECT_JH(jh
, buffer_uptodate(jh2bh(jh
)),
726 "Possible IO failure.\n");
727 page
= jh2bh(jh
)->b_page
;
728 offset
= ((unsigned long) jh2bh(jh
)->b_data
) & ~PAGE_MASK
;
729 source
= kmap_atomic(page
, KM_USER0
);
730 memcpy(jh
->b_frozen_data
, source
+offset
, jh2bh(jh
)->b_size
);
731 kunmap_atomic(source
, KM_USER0
);
733 jbd_unlock_bh_state(bh
);
736 * If we are about to journal a buffer, then any revoke pending on it is
739 journal_cancel_revoke(handle
, jh
);
742 if (unlikely(frozen_buffer
)) /* It's usually NULL */
743 jbd_free(frozen_buffer
, bh
->b_size
);
745 JBUFFER_TRACE(jh
, "exit");
750 * int journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
751 * @handle: transaction to add buffer modifications to
752 * @bh: bh to be used for metadata writes
753 * @credits: variable that will receive credits for the buffer
755 * Returns an error code or 0 on success.
757 * In full data journalling mode the buffer may be of type BJ_AsyncData,
758 * because we're write()ing a buffer which is also part of a shared mapping.
761 int journal_get_write_access(handle_t
*handle
, struct buffer_head
*bh
)
763 struct journal_head
*jh
= journal_add_journal_head(bh
);
766 /* We do not want to get caught playing with fields which the
767 * log thread also manipulates. Make sure that the buffer
768 * completes any outstanding IO before proceeding. */
769 rc
= do_get_write_access(handle
, jh
, 0);
770 journal_put_journal_head(jh
);
776 * When the user wants to journal a newly created buffer_head
777 * (ie. getblk() returned a new buffer and we are going to populate it
778 * manually rather than reading off disk), then we need to keep the
779 * buffer_head locked until it has been completely filled with new
780 * data. In this case, we should be able to make the assertion that
781 * the bh is not already part of an existing transaction.
783 * The buffer should already be locked by the caller by this point.
784 * There is no lock ranking violation: it was a newly created,
785 * unlocked buffer beforehand. */
788 * int journal_get_create_access () - notify intent to use newly created bh
789 * @handle: transaction to new buffer to
792 * Call this if you create a new bh.
794 int journal_get_create_access(handle_t
*handle
, struct buffer_head
*bh
)
796 transaction_t
*transaction
= handle
->h_transaction
;
797 journal_t
*journal
= transaction
->t_journal
;
798 struct journal_head
*jh
= journal_add_journal_head(bh
);
801 jbd_debug(5, "journal_head %p\n", jh
);
803 if (is_handle_aborted(handle
))
807 JBUFFER_TRACE(jh
, "entry");
809 * The buffer may already belong to this transaction due to pre-zeroing
810 * in the filesystem's new_block code. It may also be on the previous,
811 * committing transaction's lists, but it HAS to be in Forget state in
812 * that case: the transaction must have deleted the buffer for it to be
815 jbd_lock_bh_state(bh
);
816 spin_lock(&journal
->j_list_lock
);
817 J_ASSERT_JH(jh
, (jh
->b_transaction
== transaction
||
818 jh
->b_transaction
== NULL
||
819 (jh
->b_transaction
== journal
->j_committing_transaction
&&
820 jh
->b_jlist
== BJ_Forget
)));
822 J_ASSERT_JH(jh
, jh
->b_next_transaction
== NULL
);
823 J_ASSERT_JH(jh
, buffer_locked(jh2bh(jh
)));
825 if (jh
->b_transaction
== NULL
) {
826 jh
->b_transaction
= transaction
;
827 JBUFFER_TRACE(jh
, "file as BJ_Reserved");
828 __journal_file_buffer(jh
, transaction
, BJ_Reserved
);
829 } else if (jh
->b_transaction
== journal
->j_committing_transaction
) {
830 JBUFFER_TRACE(jh
, "set next transaction");
831 jh
->b_next_transaction
= transaction
;
833 spin_unlock(&journal
->j_list_lock
);
834 jbd_unlock_bh_state(bh
);
837 * akpm: I added this. ext3_alloc_branch can pick up new indirect
838 * blocks which contain freed but then revoked metadata. We need
839 * to cancel the revoke in case we end up freeing it yet again
840 * and the reallocating as data - this would cause a second revoke,
841 * which hits an assertion error.
843 JBUFFER_TRACE(jh
, "cancelling revoke");
844 journal_cancel_revoke(handle
, jh
);
845 journal_put_journal_head(jh
);
851 <<<<<<< HEAD:fs/jbd/transaction.c
852 * int journal_get_undo_access() - Notify intent to modify metadata with
853 * non-rewindable consequences
855 * int journal_get_undo_access() - Notify intent to modify metadata with non-rewindable consequences
856 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
857 * @handle: transaction
858 * @bh: buffer to undo
859 * @credits: store the number of taken credits here (if not NULL)
861 * Sometimes there is a need to distinguish between metadata which has
862 * been committed to disk and that which has not. The ext3fs code uses
863 * this for freeing and allocating space, we have to make sure that we
864 * do not reuse freed space until the deallocation has been committed,
865 * since if we overwrote that space we would make the delete
866 * un-rewindable in case of a crash.
868 * To deal with that, journal_get_undo_access requests write access to a
869 * buffer for parts of non-rewindable operations such as delete
870 * operations on the bitmaps. The journaling code must keep a copy of
871 * the buffer's contents prior to the undo_access call until such time
872 * as we know that the buffer has definitely been committed to disk.
874 * We never need to know which transaction the committed data is part
875 * of, buffers touched here are guaranteed to be dirtied later and so
876 * will be committed to a new transaction in due course, at which point
877 * we can discard the old committed data pointer.
879 * Returns error number or 0 on success.
881 int journal_get_undo_access(handle_t
*handle
, struct buffer_head
*bh
)
884 struct journal_head
*jh
= journal_add_journal_head(bh
);
885 char *committed_data
= NULL
;
887 JBUFFER_TRACE(jh
, "entry");
890 * Do this first --- it can drop the journal lock, so we want to
891 * make sure that obtaining the committed_data is done
892 * atomically wrt. completion of any outstanding commits.
894 err
= do_get_write_access(handle
, jh
, 1);
899 if (!jh
->b_committed_data
) {
900 committed_data
= jbd_alloc(jh2bh(jh
)->b_size
, GFP_NOFS
);
901 if (!committed_data
) {
902 printk(KERN_EMERG
"%s: No memory for committed data\n",
909 jbd_lock_bh_state(bh
);
910 if (!jh
->b_committed_data
) {
911 /* Copy out the current buffer contents into the
912 * preserved, committed copy. */
913 JBUFFER_TRACE(jh
, "generate b_committed data");
914 if (!committed_data
) {
915 jbd_unlock_bh_state(bh
);
919 jh
->b_committed_data
= committed_data
;
920 committed_data
= NULL
;
921 memcpy(jh
->b_committed_data
, bh
->b_data
, bh
->b_size
);
923 jbd_unlock_bh_state(bh
);
925 journal_put_journal_head(jh
);
926 if (unlikely(committed_data
))
927 jbd_free(committed_data
, bh
->b_size
);
932 <<<<<<< HEAD:fs/jbd/transaction.c
933 * int journal_dirty_data() - mark a buffer as containing dirty data which
934 * needs to be flushed before we can commit the
935 * current transaction.
937 * int journal_dirty_data() - mark a buffer as containing dirty data to be flushed
938 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
939 * @handle: transaction
940 * @bh: bufferhead to mark
942 <<<<<<< HEAD:fs/jbd/transaction.c
945 * Mark a buffer as containing dirty data which needs to be flushed before
946 * we can commit the current transaction.
948 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
949 * The buffer is placed on the transaction's data list and is marked as
950 * belonging to the transaction.
952 * Returns error number or 0 on success.
954 * journal_dirty_data() can be called via page_launder->ext3_writepage
957 int journal_dirty_data(handle_t
*handle
, struct buffer_head
*bh
)
959 journal_t
*journal
= handle
->h_transaction
->t_journal
;
961 struct journal_head
*jh
;
963 if (is_handle_aborted(handle
))
966 jh
= journal_add_journal_head(bh
);
967 JBUFFER_TRACE(jh
, "entry");
970 * The buffer could *already* be dirty. Writeout can start
973 jbd_debug(4, "jh: %p, tid:%d\n", jh
, handle
->h_transaction
->t_tid
);
976 * What if the buffer is already part of a running transaction?
978 * There are two cases:
979 * 1) It is part of the current running transaction. Refile it,
980 * just in case we have allocated it as metadata, deallocated
981 * it, then reallocated it as data.
982 * 2) It is part of the previous, still-committing transaction.
983 * If all we want to do is to guarantee that the buffer will be
984 * written to disk before this new transaction commits, then
985 * being sure that the *previous* transaction has this same
986 * property is sufficient for us! Just leave it on its old
989 * In case (2), the buffer must not already exist as metadata
990 * --- that would violate write ordering (a transaction is free
991 * to write its data at any point, even before the previous
992 * committing transaction has committed). The caller must
993 * never, ever allow this to happen: there's nothing we can do
994 * about it in this layer.
996 jbd_lock_bh_state(bh
);
997 spin_lock(&journal
->j_list_lock
);
999 /* Now that we have bh_state locked, are we really still mapped? */
1000 if (!buffer_mapped(bh
)) {
1001 JBUFFER_TRACE(jh
, "unmapped buffer, bailing out");
1005 if (jh
->b_transaction
) {
1006 JBUFFER_TRACE(jh
, "has transaction");
1007 if (jh
->b_transaction
!= handle
->h_transaction
) {
1008 JBUFFER_TRACE(jh
, "belongs to older transaction");
1009 J_ASSERT_JH(jh
, jh
->b_transaction
==
1010 journal
->j_committing_transaction
);
1012 /* @@@ IS THIS TRUE ? */
1014 * Not any more. Scenario: someone does a write()
1015 * in data=journal mode. The buffer's transaction has
1016 * moved into commit. Then someone does another
1017 * write() to the file. We do the frozen data copyout
1018 * and set b_next_transaction to point to j_running_t.
1019 * And while we're in that state, someone does a
1020 * writepage() in an attempt to pageout the same area
1021 * of the file via a shared mapping. At present that
1022 * calls journal_dirty_data(), and we get right here.
1023 * It may be too late to journal the data. Simply
1024 * falling through to the next test will suffice: the
1025 * data will be dirty and wil be checkpointed. The
1026 * ordering comments in the next comment block still
1029 //J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
1032 * If we're journalling data, and this buffer was
1033 * subject to a write(), it could be metadata, forget
1034 * or shadow against the committing transaction. Now,
1035 * someone has dirtied the same darn page via a mapping
1036 * and it is being writepage()'d.
1037 * We *could* just steal the page from commit, with some
1038 * fancy locking there. Instead, we just skip it -
1039 * don't tie the page's buffers to the new transaction
1041 * Implication: if we crash before the writepage() data
1042 * is written into the filesystem, recovery will replay
1045 if (jh
->b_jlist
!= BJ_None
&&
1046 jh
->b_jlist
!= BJ_SyncData
&&
1047 jh
->b_jlist
!= BJ_Locked
) {
1048 JBUFFER_TRACE(jh
, "Not stealing");
1053 * This buffer may be undergoing writeout in commit. We
1054 * can't return from here and let the caller dirty it
1055 * again because that can cause the write-out loop in
1056 * commit to never terminate.
1058 if (buffer_dirty(bh
)) {
1060 spin_unlock(&journal
->j_list_lock
);
1061 jbd_unlock_bh_state(bh
);
1063 sync_dirty_buffer(bh
);
1064 jbd_lock_bh_state(bh
);
1065 spin_lock(&journal
->j_list_lock
);
1066 /* Since we dropped the lock... */
1067 if (!buffer_mapped(bh
)) {
1068 JBUFFER_TRACE(jh
, "buffer got unmapped");
1071 /* The buffer may become locked again at any
1072 time if it is redirtied */
1075 /* journal_clean_data_list() may have got there first */
1076 if (jh
->b_transaction
!= NULL
) {
1077 JBUFFER_TRACE(jh
, "unfile from commit");
1078 __journal_temp_unlink_buffer(jh
);
1079 /* It still points to the committing
1080 * transaction; move it to this one so
1081 * that the refile assert checks are
1083 jh
->b_transaction
= handle
->h_transaction
;
1085 /* The buffer will be refiled below */
1089 * Special case --- the buffer might actually have been
1090 * allocated and then immediately deallocated in the previous,
1091 * committing transaction, so might still be left on that
1092 * transaction's metadata lists.
1094 if (jh
->b_jlist
!= BJ_SyncData
&& jh
->b_jlist
!= BJ_Locked
) {
1095 JBUFFER_TRACE(jh
, "not on correct data list: unfile");
1096 J_ASSERT_JH(jh
, jh
->b_jlist
!= BJ_Shadow
);
1097 __journal_temp_unlink_buffer(jh
);
1098 jh
->b_transaction
= handle
->h_transaction
;
1099 JBUFFER_TRACE(jh
, "file as data");
1100 __journal_file_buffer(jh
, handle
->h_transaction
,
1104 JBUFFER_TRACE(jh
, "not on a transaction");
1105 __journal_file_buffer(jh
, handle
->h_transaction
, BJ_SyncData
);
1108 spin_unlock(&journal
->j_list_lock
);
1109 jbd_unlock_bh_state(bh
);
1111 BUFFER_TRACE(bh
, "brelse");
1114 JBUFFER_TRACE(jh
, "exit");
1115 journal_put_journal_head(jh
);
1120 <<<<<<< HEAD:fs/jbd/transaction.c
1121 * int journal_dirty_metadata() - mark a buffer as containing dirty metadata
1123 * int journal_dirty_metadata() - mark a buffer as containing dirty metadata
1124 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
1125 * @handle: transaction to add buffer to.
1126 * @bh: buffer to mark
1128 <<<<<<< HEAD:fs/jbd/transaction.c
1129 * mark dirty metadata which needs to be journaled as part of the current
1131 * Mark dirty metadata which needs to be journaled as part of the current
1132 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:fs/jbd/transaction.c
1135 * The buffer is placed on the transaction's metadata list and is marked
1136 * as belonging to the transaction.
1138 * Returns error number or 0 on success.
1140 * Special care needs to be taken if the buffer already belongs to the
1141 * current committing transaction (in which case we should have frozen
1142 * data present for that commit). In that case, we don't relink the
1143 * buffer: that only gets done when the old transaction finally
1144 * completes its commit.
1146 int journal_dirty_metadata(handle_t
*handle
, struct buffer_head
*bh
)
1148 transaction_t
*transaction
= handle
->h_transaction
;
1149 journal_t
*journal
= transaction
->t_journal
;
1150 struct journal_head
*jh
= bh2jh(bh
);
1152 jbd_debug(5, "journal_head %p\n", jh
);
1153 JBUFFER_TRACE(jh
, "entry");
1154 if (is_handle_aborted(handle
))
1157 jbd_lock_bh_state(bh
);
1159 if (jh
->b_modified
== 0) {
1161 * This buffer's got modified and becoming part
1162 * of the transaction. This needs to be done
1163 * once a transaction -bzzz
1166 J_ASSERT_JH(jh
, handle
->h_buffer_credits
> 0);
1167 handle
->h_buffer_credits
--;
1171 * fastpath, to avoid expensive locking. If this buffer is already
1172 * on the running transaction's metadata list there is nothing to do.
1173 * Nobody can take it off again because there is a handle open.
1174 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1175 * result in this test being false, so we go in and take the locks.
1177 if (jh
->b_transaction
== transaction
&& jh
->b_jlist
== BJ_Metadata
) {
1178 JBUFFER_TRACE(jh
, "fastpath");
1179 J_ASSERT_JH(jh
, jh
->b_transaction
==
1180 journal
->j_running_transaction
);
1184 set_buffer_jbddirty(bh
);
1187 * Metadata already on the current transaction list doesn't
1188 * need to be filed. Metadata on another transaction's list must
1189 * be committing, and will be refiled once the commit completes:
1190 * leave it alone for now.
1192 if (jh
->b_transaction
!= transaction
) {
1193 JBUFFER_TRACE(jh
, "already on other transaction");
1194 J_ASSERT_JH(jh
, jh
->b_transaction
==
1195 journal
->j_committing_transaction
);
1196 J_ASSERT_JH(jh
, jh
->b_next_transaction
== transaction
);
1197 /* And this case is illegal: we can't reuse another
1198 * transaction's data buffer, ever. */
1202 /* That test should have eliminated the following case: */
1203 J_ASSERT_JH(jh
, jh
->b_frozen_data
== NULL
);
1205 JBUFFER_TRACE(jh
, "file as BJ_Metadata");
1206 spin_lock(&journal
->j_list_lock
);
1207 __journal_file_buffer(jh
, handle
->h_transaction
, BJ_Metadata
);
1208 spin_unlock(&journal
->j_list_lock
);
1210 jbd_unlock_bh_state(bh
);
1212 JBUFFER_TRACE(jh
, "exit");
1217 * journal_release_buffer: undo a get_write_access without any buffer
1218 * updates, if the update decided in the end that it didn't need access.
1222 journal_release_buffer(handle_t
*handle
, struct buffer_head
*bh
)
1224 BUFFER_TRACE(bh
, "entry");
1228 * void journal_forget() - bforget() for potentially-journaled buffers.
1229 * @handle: transaction handle
1230 * @bh: bh to 'forget'
1232 * We can only do the bforget if there are no commits pending against the
1233 * buffer. If the buffer is dirty in the current running transaction we
1234 * can safely unlink it.
1236 * bh may not be a journalled buffer at all - it may be a non-JBD
1237 * buffer which came off the hashtable. Check for this.
1239 * Decrements bh->b_count by one.
1241 * Allow this call even if the handle has aborted --- it may be part of
1242 * the caller's cleanup after an abort.
1244 int journal_forget (handle_t
*handle
, struct buffer_head
*bh
)
1246 transaction_t
*transaction
= handle
->h_transaction
;
1247 journal_t
*journal
= transaction
->t_journal
;
1248 struct journal_head
*jh
;
1249 int drop_reserve
= 0;
1252 BUFFER_TRACE(bh
, "entry");
1254 jbd_lock_bh_state(bh
);
1255 spin_lock(&journal
->j_list_lock
);
1257 if (!buffer_jbd(bh
))
1261 /* Critical error: attempting to delete a bitmap buffer, maybe?
1262 * Don't do any jbd operations, and return an error. */
1263 if (!J_EXPECT_JH(jh
, !jh
->b_committed_data
,
1264 "inconsistent data on disk")) {
1270 * The buffer's going from the transaction, we must drop
1271 * all references -bzzz
1275 if (jh
->b_transaction
== handle
->h_transaction
) {
1276 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
1278 /* If we are forgetting a buffer which is already part
1279 * of this transaction, then we can just drop it from
1280 * the transaction immediately. */
1281 clear_buffer_dirty(bh
);
1282 clear_buffer_jbddirty(bh
);
1284 JBUFFER_TRACE(jh
, "belongs to current transaction: unfile");
1289 * We are no longer going to journal this buffer.
1290 * However, the commit of this transaction is still
1291 * important to the buffer: the delete that we are now
1292 * processing might obsolete an old log entry, so by
1293 * committing, we can satisfy the buffer's checkpoint.
1295 * So, if we have a checkpoint on the buffer, we should
1296 * now refile the buffer on our BJ_Forget list so that
1297 * we know to remove the checkpoint after we commit.
1300 if (jh
->b_cp_transaction
) {
1301 __journal_temp_unlink_buffer(jh
);
1302 __journal_file_buffer(jh
, transaction
, BJ_Forget
);
1304 __journal_unfile_buffer(jh
);
1305 journal_remove_journal_head(bh
);
1307 if (!buffer_jbd(bh
)) {
1308 spin_unlock(&journal
->j_list_lock
);
1309 jbd_unlock_bh_state(bh
);
1314 } else if (jh
->b_transaction
) {
1315 J_ASSERT_JH(jh
, (jh
->b_transaction
==
1316 journal
->j_committing_transaction
));
1317 /* However, if the buffer is still owned by a prior
1318 * (committing) transaction, we can't drop it yet... */
1319 JBUFFER_TRACE(jh
, "belongs to older transaction");
1320 /* ... but we CAN drop it from the new transaction if we
1321 * have also modified it since the original commit. */
1323 if (jh
->b_next_transaction
) {
1324 J_ASSERT(jh
->b_next_transaction
== transaction
);
1325 jh
->b_next_transaction
= NULL
;
1331 spin_unlock(&journal
->j_list_lock
);
1332 jbd_unlock_bh_state(bh
);
1336 /* no need to reserve log space for this block -bzzz */
1337 handle
->h_buffer_credits
++;
1343 * int journal_stop() - complete a transaction
1344 * @handle: tranaction to complete.
1346 * All done for a particular handle.
1348 * There is not much action needed here. We just return any remaining
1349 * buffer credits to the transaction and remove the handle. The only
1350 * complication is that we need to start a commit operation if the
1351 * filesystem is marked for synchronous update.
1353 * journal_stop itself will not usually return an error, but it may
1354 * do so in unusual circumstances. In particular, expect it to
1355 * return -EIO if a journal_abort has been executed since the
1356 * transaction began.
1358 int journal_stop(handle_t
*handle
)
1360 transaction_t
*transaction
= handle
->h_transaction
;
1361 journal_t
*journal
= transaction
->t_journal
;
1362 int old_handle_count
, err
;
1365 J_ASSERT(journal_current_handle() == handle
);
1367 if (is_handle_aborted(handle
))
1370 J_ASSERT(transaction
->t_updates
> 0);
1374 if (--handle
->h_ref
> 0) {
1375 jbd_debug(4, "h_ref %d -> %d\n", handle
->h_ref
+ 1,
1380 jbd_debug(4, "Handle %p going down\n", handle
);
1383 * Implement synchronous transaction batching. If the handle
1384 * was synchronous, don't force a commit immediately. Let's
1385 * yield and let another thread piggyback onto this transaction.
1386 * Keep doing that while new threads continue to arrive.
1387 * It doesn't cost much - we're about to run a commit and sleep
1388 * on IO anyway. Speeds up many-threaded, many-dir operations
1391 * But don't do this if this process was the most recent one to
1392 * perform a synchronous write. We do this to detect the case where a
1393 * single process is doing a stream of sync writes. No point in waiting
1394 * for joiners in that case.
1397 if (handle
->h_sync
&& journal
->j_last_sync_writer
!= pid
) {
1398 journal
->j_last_sync_writer
= pid
;
1400 old_handle_count
= transaction
->t_handle_count
;
1401 schedule_timeout_uninterruptible(1);
1402 } while (old_handle_count
!= transaction
->t_handle_count
);
1405 current
->journal_info
= NULL
;
1406 spin_lock(&journal
->j_state_lock
);
1407 spin_lock(&transaction
->t_handle_lock
);
1408 transaction
->t_outstanding_credits
-= handle
->h_buffer_credits
;
1409 transaction
->t_updates
--;
1410 if (!transaction
->t_updates
) {
1411 wake_up(&journal
->j_wait_updates
);
1412 if (journal
->j_barrier_count
)
1413 wake_up(&journal
->j_wait_transaction_locked
);
1417 * If the handle is marked SYNC, we need to set another commit
1418 * going! We also want to force a commit if the current
1419 * transaction is occupying too much of the log, or if the
1420 * transaction is too old now.
1422 if (handle
->h_sync
||
1423 transaction
->t_outstanding_credits
>
1424 journal
->j_max_transaction_buffers
||
1425 time_after_eq(jiffies
, transaction
->t_expires
)) {
1426 /* Do this even for aborted journals: an abort still
1427 * completes the commit thread, it just doesn't write
1428 * anything to disk. */
1429 tid_t tid
= transaction
->t_tid
;
1431 spin_unlock(&transaction
->t_handle_lock
);
1432 jbd_debug(2, "transaction too old, requesting commit for "
1433 "handle %p\n", handle
);
1434 /* This is non-blocking */
1435 __log_start_commit(journal
, transaction
->t_tid
);
1436 spin_unlock(&journal
->j_state_lock
);
1439 * Special case: JFS_SYNC synchronous updates require us
1440 * to wait for the commit to complete.
1442 if (handle
->h_sync
&& !(current
->flags
& PF_MEMALLOC
))
1443 err
= log_wait_commit(journal
, tid
);
1445 spin_unlock(&transaction
->t_handle_lock
);
1446 spin_unlock(&journal
->j_state_lock
);
1449 lock_release(&handle
->h_lockdep_map
, 1, _THIS_IP_
);
1451 jbd_free_handle(handle
);
1455 /**int journal_force_commit() - force any uncommitted transactions
1456 * @journal: journal to force
1458 * For synchronous operations: force any uncommitted transactions
1459 * to disk. May seem kludgy, but it reuses all the handle batching
1460 * code in a very simple manner.
1462 int journal_force_commit(journal_t
*journal
)
1467 handle
= journal_start(journal
, 1);
1468 if (IS_ERR(handle
)) {
1469 ret
= PTR_ERR(handle
);
1472 ret
= journal_stop(handle
);
1479 * List management code snippets: various functions for manipulating the
1480 * transaction buffer lists.
1485 * Append a buffer to a transaction list, given the transaction's list head
1488 * j_list_lock is held.
1490 * jbd_lock_bh_state(jh2bh(jh)) is held.
1494 __blist_add_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1497 jh
->b_tnext
= jh
->b_tprev
= jh
;
1500 /* Insert at the tail of the list to preserve order */
1501 struct journal_head
*first
= *list
, *last
= first
->b_tprev
;
1503 jh
->b_tnext
= first
;
1504 last
->b_tnext
= first
->b_tprev
= jh
;
1509 * Remove a buffer from a transaction list, given the transaction's list
1512 * Called with j_list_lock held, and the journal may not be locked.
1514 * jbd_lock_bh_state(jh2bh(jh)) is held.
1518 __blist_del_buffer(struct journal_head
**list
, struct journal_head
*jh
)
1521 *list
= jh
->b_tnext
;
1525 jh
->b_tprev
->b_tnext
= jh
->b_tnext
;
1526 jh
->b_tnext
->b_tprev
= jh
->b_tprev
;
1530 * Remove a buffer from the appropriate transaction list.
1532 * Note that this function can *change* the value of
1533 * bh->b_transaction->t_sync_datalist, t_buffers, t_forget,
1534 * t_iobuf_list, t_shadow_list, t_log_list or t_reserved_list. If the caller
1535 * is holding onto a copy of one of thee pointers, it could go bad.
1536 * Generally the caller needs to re-read the pointer from the transaction_t.
1538 * Called under j_list_lock. The journal may not be locked.
1540 static void __journal_temp_unlink_buffer(struct journal_head
*jh
)
1542 struct journal_head
**list
= NULL
;
1543 transaction_t
*transaction
;
1544 struct buffer_head
*bh
= jh2bh(jh
);
1546 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
1547 transaction
= jh
->b_transaction
;
1549 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
1551 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
1552 if (jh
->b_jlist
!= BJ_None
)
1553 J_ASSERT_JH(jh
, transaction
!= NULL
);
1555 switch (jh
->b_jlist
) {
1559 list
= &transaction
->t_sync_datalist
;
1562 transaction
->t_nr_buffers
--;
1563 J_ASSERT_JH(jh
, transaction
->t_nr_buffers
>= 0);
1564 list
= &transaction
->t_buffers
;
1567 list
= &transaction
->t_forget
;
1570 list
= &transaction
->t_iobuf_list
;
1573 list
= &transaction
->t_shadow_list
;
1576 list
= &transaction
->t_log_list
;
1579 list
= &transaction
->t_reserved_list
;
1582 list
= &transaction
->t_locked_list
;
1586 __blist_del_buffer(list
, jh
);
1587 jh
->b_jlist
= BJ_None
;
1588 if (test_clear_buffer_jbddirty(bh
))
1589 mark_buffer_dirty(bh
); /* Expose it to the VM */
1592 void __journal_unfile_buffer(struct journal_head
*jh
)
1594 __journal_temp_unlink_buffer(jh
);
1595 jh
->b_transaction
= NULL
;
1598 void journal_unfile_buffer(journal_t
*journal
, struct journal_head
*jh
)
1600 jbd_lock_bh_state(jh2bh(jh
));
1601 spin_lock(&journal
->j_list_lock
);
1602 __journal_unfile_buffer(jh
);
1603 spin_unlock(&journal
->j_list_lock
);
1604 jbd_unlock_bh_state(jh2bh(jh
));
1608 * Called from journal_try_to_free_buffers().
1610 * Called under jbd_lock_bh_state(bh)
1613 __journal_try_to_free_buffer(journal_t
*journal
, struct buffer_head
*bh
)
1615 struct journal_head
*jh
;
1619 if (buffer_locked(bh
) || buffer_dirty(bh
))
1622 if (jh
->b_next_transaction
!= NULL
)
1625 spin_lock(&journal
->j_list_lock
);
1626 if (jh
->b_transaction
!= NULL
&& jh
->b_cp_transaction
== NULL
) {
1627 if (jh
->b_jlist
== BJ_SyncData
|| jh
->b_jlist
== BJ_Locked
) {
1628 /* A written-back ordered data buffer */
1629 JBUFFER_TRACE(jh
, "release data");
1630 __journal_unfile_buffer(jh
);
1631 journal_remove_journal_head(bh
);
1634 } else if (jh
->b_cp_transaction
!= NULL
&& jh
->b_transaction
== NULL
) {
1635 /* written-back checkpointed metadata buffer */
1636 if (jh
->b_jlist
== BJ_None
) {
1637 JBUFFER_TRACE(jh
, "remove from checkpoint list");
1638 __journal_remove_checkpoint(jh
);
1639 journal_remove_journal_head(bh
);
1643 spin_unlock(&journal
->j_list_lock
);
1650 * int journal_try_to_free_buffers() - try to free page buffers.
1651 * @journal: journal for operation
1652 * @page: to try and free
1653 * @unused_gfp_mask: unused
1656 * For all the buffers on this page,
1657 * if they are fully written out ordered data, move them onto BUF_CLEAN
1658 * so try_to_free_buffers() can reap them.
1660 * This function returns non-zero if we wish try_to_free_buffers()
1661 * to be called. We do this if the page is releasable by try_to_free_buffers().
1662 * We also do it if the page has locked or dirty buffers and the caller wants
1663 * us to perform sync or async writeout.
1665 * This complicates JBD locking somewhat. We aren't protected by the
1666 * BKL here. We wish to remove the buffer from its committing or
1667 * running transaction's ->t_datalist via __journal_unfile_buffer.
1669 * This may *change* the value of transaction_t->t_datalist, so anyone
1670 * who looks at t_datalist needs to lock against this function.
1672 * Even worse, someone may be doing a journal_dirty_data on this
1673 * buffer. So we need to lock against that. journal_dirty_data()
1674 * will come out of the lock with the buffer dirty, which makes it
1675 * ineligible for release here.
1677 * Who else is affected by this? hmm... Really the only contender
1678 * is do_get_write_access() - it could be looking at the buffer while
1679 * journal_try_to_free_buffer() is changing its state. But that
1680 * cannot happen because we never reallocate freed data as metadata
1681 * while the data is part of a transaction. Yes?
1683 int journal_try_to_free_buffers(journal_t
*journal
,
1684 struct page
*page
, gfp_t unused_gfp_mask
)
1686 struct buffer_head
*head
;
1687 struct buffer_head
*bh
;
1690 J_ASSERT(PageLocked(page
));
1692 head
= page_buffers(page
);
1695 struct journal_head
*jh
;
1698 * We take our own ref against the journal_head here to avoid
1699 * having to add tons of locking around each instance of
1700 * journal_remove_journal_head() and journal_put_journal_head().
1702 jh
= journal_grab_journal_head(bh
);
1706 jbd_lock_bh_state(bh
);
1707 __journal_try_to_free_buffer(journal
, bh
);
1708 journal_put_journal_head(jh
);
1709 jbd_unlock_bh_state(bh
);
1712 } while ((bh
= bh
->b_this_page
) != head
);
1713 ret
= try_to_free_buffers(page
);
1719 * This buffer is no longer needed. If it is on an older transaction's
1720 * checkpoint list we need to record it on this transaction's forget list
1721 * to pin this buffer (and hence its checkpointing transaction) down until
1722 * this transaction commits. If the buffer isn't on a checkpoint list, we
1724 * Returns non-zero if JBD no longer has an interest in the buffer.
1726 * Called under j_list_lock.
1728 * Called under jbd_lock_bh_state(bh).
1730 static int __dispose_buffer(struct journal_head
*jh
, transaction_t
*transaction
)
1733 struct buffer_head
*bh
= jh2bh(jh
);
1735 __journal_unfile_buffer(jh
);
1737 if (jh
->b_cp_transaction
) {
1738 JBUFFER_TRACE(jh
, "on running+cp transaction");
1739 __journal_file_buffer(jh
, transaction
, BJ_Forget
);
1740 clear_buffer_jbddirty(bh
);
1743 JBUFFER_TRACE(jh
, "on running transaction");
1744 journal_remove_journal_head(bh
);
1751 * journal_invalidatepage
1753 * This code is tricky. It has a number of cases to deal with.
1755 * There are two invariants which this code relies on:
1757 * i_size must be updated on disk before we start calling invalidatepage on the
1760 * This is done in ext3 by defining an ext3_setattr method which
1761 * updates i_size before truncate gets going. By maintaining this
1762 * invariant, we can be sure that it is safe to throw away any buffers
1763 * attached to the current transaction: once the transaction commits,
1764 * we know that the data will not be needed.
1766 * Note however that we can *not* throw away data belonging to the
1767 * previous, committing transaction!
1769 * Any disk blocks which *are* part of the previous, committing
1770 * transaction (and which therefore cannot be discarded immediately) are
1771 * not going to be reused in the new running transaction
1773 * The bitmap committed_data images guarantee this: any block which is
1774 * allocated in one transaction and removed in the next will be marked
1775 * as in-use in the committed_data bitmap, so cannot be reused until
1776 * the next transaction to delete the block commits. This means that
1777 * leaving committing buffers dirty is quite safe: the disk blocks
1778 * cannot be reallocated to a different file and so buffer aliasing is
1782 * The above applies mainly to ordered data mode. In writeback mode we
1783 * don't make guarantees about the order in which data hits disk --- in
1784 * particular we don't guarantee that new dirty data is flushed before
1785 * transaction commit --- so it is always safe just to discard data
1786 * immediately in that mode. --sct
1790 * The journal_unmap_buffer helper function returns zero if the buffer
1791 * concerned remains pinned as an anonymous buffer belonging to an older
1794 * We're outside-transaction here. Either or both of j_running_transaction
1795 * and j_committing_transaction may be NULL.
1797 static int journal_unmap_buffer(journal_t
*journal
, struct buffer_head
*bh
)
1799 transaction_t
*transaction
;
1800 struct journal_head
*jh
;
1804 BUFFER_TRACE(bh
, "entry");
1807 * It is safe to proceed here without the j_list_lock because the
1808 * buffers cannot be stolen by try_to_free_buffers as long as we are
1809 * holding the page lock. --sct
1812 if (!buffer_jbd(bh
))
1813 goto zap_buffer_unlocked
;
1815 spin_lock(&journal
->j_state_lock
);
1816 jbd_lock_bh_state(bh
);
1817 spin_lock(&journal
->j_list_lock
);
1819 jh
= journal_grab_journal_head(bh
);
1821 goto zap_buffer_no_jh
;
1823 transaction
= jh
->b_transaction
;
1824 if (transaction
== NULL
) {
1825 /* First case: not on any transaction. If it
1826 * has no checkpoint link, then we can zap it:
1827 * it's a writeback-mode buffer so we don't care
1828 * if it hits disk safely. */
1829 if (!jh
->b_cp_transaction
) {
1830 JBUFFER_TRACE(jh
, "not on any transaction: zap");
1834 if (!buffer_dirty(bh
)) {
1835 /* bdflush has written it. We can drop it now */
1839 /* OK, it must be in the journal but still not
1840 * written fully to disk: it's metadata or
1841 * journaled data... */
1843 if (journal
->j_running_transaction
) {
1844 /* ... and once the current transaction has
1845 * committed, the buffer won't be needed any
1847 JBUFFER_TRACE(jh
, "checkpointed: add to BJ_Forget");
1848 ret
= __dispose_buffer(jh
,
1849 journal
->j_running_transaction
);
1850 journal_put_journal_head(jh
);
1851 spin_unlock(&journal
->j_list_lock
);
1852 jbd_unlock_bh_state(bh
);
1853 spin_unlock(&journal
->j_state_lock
);
1856 /* There is no currently-running transaction. So the
1857 * orphan record which we wrote for this file must have
1858 * passed into commit. We must attach this buffer to
1859 * the committing transaction, if it exists. */
1860 if (journal
->j_committing_transaction
) {
1861 JBUFFER_TRACE(jh
, "give to committing trans");
1862 ret
= __dispose_buffer(jh
,
1863 journal
->j_committing_transaction
);
1864 journal_put_journal_head(jh
);
1865 spin_unlock(&journal
->j_list_lock
);
1866 jbd_unlock_bh_state(bh
);
1867 spin_unlock(&journal
->j_state_lock
);
1870 /* The orphan record's transaction has
1871 * committed. We can cleanse this buffer */
1872 clear_buffer_jbddirty(bh
);
1876 } else if (transaction
== journal
->j_committing_transaction
) {
1877 JBUFFER_TRACE(jh
, "on committing transaction");
1878 if (jh
->b_jlist
== BJ_Locked
) {
1880 * The buffer is on the committing transaction's locked
1881 * list. We have the buffer locked, so I/O has
1882 * completed. So we can nail the buffer now.
1884 may_free
= __dispose_buffer(jh
, transaction
);
1888 * If it is committing, we simply cannot touch it. We
1889 * can remove it's next_transaction pointer from the
1890 * running transaction if that is set, but nothing
1892 set_buffer_freed(bh
);
1893 if (jh
->b_next_transaction
) {
1894 J_ASSERT(jh
->b_next_transaction
==
1895 journal
->j_running_transaction
);
1896 jh
->b_next_transaction
= NULL
;
1898 journal_put_journal_head(jh
);
1899 spin_unlock(&journal
->j_list_lock
);
1900 jbd_unlock_bh_state(bh
);
1901 spin_unlock(&journal
->j_state_lock
);
1904 /* Good, the buffer belongs to the running transaction.
1905 * We are writing our own transaction's data, not any
1906 * previous one's, so it is safe to throw it away
1907 * (remember that we expect the filesystem to have set
1908 * i_size already for this truncate so recovery will not
1909 * expose the disk blocks we are discarding here.) */
1910 J_ASSERT_JH(jh
, transaction
== journal
->j_running_transaction
);
1911 JBUFFER_TRACE(jh
, "on running transaction");
1912 may_free
= __dispose_buffer(jh
, transaction
);
1916 journal_put_journal_head(jh
);
1918 spin_unlock(&journal
->j_list_lock
);
1919 jbd_unlock_bh_state(bh
);
1920 spin_unlock(&journal
->j_state_lock
);
1921 zap_buffer_unlocked
:
1922 clear_buffer_dirty(bh
);
1923 J_ASSERT_BH(bh
, !buffer_jbddirty(bh
));
1924 clear_buffer_mapped(bh
);
1925 clear_buffer_req(bh
);
1926 clear_buffer_new(bh
);
1932 * void journal_invalidatepage()
1933 * @journal: journal to use for flush...
1934 * @page: page to flush
1935 * @offset: length of page to invalidate.
1937 * Reap page buffers containing data after offset in page.
1940 void journal_invalidatepage(journal_t
*journal
,
1942 unsigned long offset
)
1944 struct buffer_head
*head
, *bh
, *next
;
1945 unsigned int curr_off
= 0;
1948 if (!PageLocked(page
))
1950 if (!page_has_buffers(page
))
1953 /* We will potentially be playing with lists other than just the
1954 * data lists (especially for journaled data mode), so be
1955 * cautious in our locking. */
1957 head
= bh
= page_buffers(page
);
1959 unsigned int next_off
= curr_off
+ bh
->b_size
;
1960 next
= bh
->b_this_page
;
1962 if (offset
<= curr_off
) {
1963 /* This block is wholly outside the truncation point */
1965 may_free
&= journal_unmap_buffer(journal
, bh
);
1968 curr_off
= next_off
;
1971 } while (bh
!= head
);
1974 if (may_free
&& try_to_free_buffers(page
))
1975 J_ASSERT(!page_has_buffers(page
));
1980 * File a buffer on the given transaction list.
1982 void __journal_file_buffer(struct journal_head
*jh
,
1983 transaction_t
*transaction
, int jlist
)
1985 struct journal_head
**list
= NULL
;
1987 struct buffer_head
*bh
= jh2bh(jh
);
1989 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
1990 assert_spin_locked(&transaction
->t_journal
->j_list_lock
);
1992 J_ASSERT_JH(jh
, jh
->b_jlist
< BJ_Types
);
1993 J_ASSERT_JH(jh
, jh
->b_transaction
== transaction
||
1994 jh
->b_transaction
== NULL
);
1996 if (jh
->b_transaction
&& jh
->b_jlist
== jlist
)
1999 /* The following list of buffer states needs to be consistent
2000 * with __jbd_unexpected_dirty_buffer()'s handling of dirty
2003 if (jlist
== BJ_Metadata
|| jlist
== BJ_Reserved
||
2004 jlist
== BJ_Shadow
|| jlist
== BJ_Forget
) {
2005 if (test_clear_buffer_dirty(bh
) ||
2006 test_clear_buffer_jbddirty(bh
))
2010 if (jh
->b_transaction
)
2011 __journal_temp_unlink_buffer(jh
);
2012 jh
->b_transaction
= transaction
;
2016 J_ASSERT_JH(jh
, !jh
->b_committed_data
);
2017 J_ASSERT_JH(jh
, !jh
->b_frozen_data
);
2020 list
= &transaction
->t_sync_datalist
;
2023 transaction
->t_nr_buffers
++;
2024 list
= &transaction
->t_buffers
;
2027 list
= &transaction
->t_forget
;
2030 list
= &transaction
->t_iobuf_list
;
2033 list
= &transaction
->t_shadow_list
;
2036 list
= &transaction
->t_log_list
;
2039 list
= &transaction
->t_reserved_list
;
2042 list
= &transaction
->t_locked_list
;
2046 __blist_add_buffer(list
, jh
);
2047 jh
->b_jlist
= jlist
;
2050 set_buffer_jbddirty(bh
);
2053 void journal_file_buffer(struct journal_head
*jh
,
2054 transaction_t
*transaction
, int jlist
)
2056 jbd_lock_bh_state(jh2bh(jh
));
2057 spin_lock(&transaction
->t_journal
->j_list_lock
);
2058 __journal_file_buffer(jh
, transaction
, jlist
);
2059 spin_unlock(&transaction
->t_journal
->j_list_lock
);
2060 jbd_unlock_bh_state(jh2bh(jh
));
2064 * Remove a buffer from its current buffer list in preparation for
2065 * dropping it from its current transaction entirely. If the buffer has
2066 * already started to be used by a subsequent transaction, refile the
2067 * buffer on that transaction's metadata list.
2069 * Called under journal->j_list_lock
2071 * Called under jbd_lock_bh_state(jh2bh(jh))
2073 void __journal_refile_buffer(struct journal_head
*jh
)
2076 struct buffer_head
*bh
= jh2bh(jh
);
2078 J_ASSERT_JH(jh
, jbd_is_locked_bh_state(bh
));
2079 if (jh
->b_transaction
)
2080 assert_spin_locked(&jh
->b_transaction
->t_journal
->j_list_lock
);
2082 /* If the buffer is now unused, just drop it. */
2083 if (jh
->b_next_transaction
== NULL
) {
2084 __journal_unfile_buffer(jh
);
2089 * It has been modified by a later transaction: add it to the new
2090 * transaction's metadata list.
2093 was_dirty
= test_clear_buffer_jbddirty(bh
);
2094 __journal_temp_unlink_buffer(jh
);
2095 jh
->b_transaction
= jh
->b_next_transaction
;
2096 jh
->b_next_transaction
= NULL
;
2097 __journal_file_buffer(jh
, jh
->b_transaction
,
2098 was_dirty
? BJ_Metadata
: BJ_Reserved
);
2099 J_ASSERT_JH(jh
, jh
->b_transaction
->t_state
== T_RUNNING
);
2102 set_buffer_jbddirty(bh
);
2106 * For the unlocked version of this call, also make sure that any
2107 * hanging journal_head is cleaned up if necessary.
2109 * __journal_refile_buffer is usually called as part of a single locked
2110 * operation on a buffer_head, in which the caller is probably going to
2111 * be hooking the journal_head onto other lists. In that case it is up
2112 * to the caller to remove the journal_head if necessary. For the
2113 * unlocked journal_refile_buffer call, the caller isn't going to be
2114 * doing anything else to the buffer so we need to do the cleanup
2115 * ourselves to avoid a jh leak.
2117 * *** The journal_head may be freed by this call! ***
2119 void journal_refile_buffer(journal_t
*journal
, struct journal_head
*jh
)
2121 struct buffer_head
*bh
= jh2bh(jh
);
2123 jbd_lock_bh_state(bh
);
2124 spin_lock(&journal
->j_list_lock
);
2126 __journal_refile_buffer(jh
);
2127 jbd_unlock_bh_state(bh
);
2128 journal_remove_journal_head(bh
);
2130 spin_unlock(&journal
->j_list_lock
);