RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / fs / jbd / transaction.c
blob8da3ce124b49c6064b0e02d8f295d618abffce20
1 /*
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
13 * journaling system.
15 * This file manages transactions (compound commits managed by the
16 * journaling code) and handles (individual atomic operations by the
17 * filesystem).
20 #include <linux/time.h>
21 #include <linux/fs.h>
22 #include <linux/jbd.h>
23 #include <linux/errno.h>
24 #include <linux/slab.h>
25 #include <linux/timer.h>
26 #include <linux/mm.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).
39 * Preconditions:
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;
63 return transaction;
67 * Handle management.
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
71 * of that one update.
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;
84 int needed;
85 int nblocks = handle->h_buffer_credits;
86 transaction_t *new_transaction = NULL;
87 int ret = 0;
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);
93 ret = -ENOSPC;
94 goto out;
97 alloc_transaction:
98 if (!journal->j_running_transaction) {
99 new_transaction = kzalloc(sizeof(*new_transaction),
100 GFP_NOFS|__GFP_NOFAIL);
101 if (!new_transaction) {
102 ret = -ENOMEM;
103 goto out;
107 jbd_debug(3, "New handle %p going live.\n", handle);
109 repeat:
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);
116 repeat_locked:
117 if (is_journal_aborted(journal) ||
118 (journal->j_errno != 0 && !(journal->j_flags & JFS_ACK_ERR))) {
119 spin_unlock(&journal->j_state_lock);
120 ret = -EROFS;
121 goto out;
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);
129 goto repeat;
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) {
148 DEFINE_WAIT(wait);
150 prepare_to_wait(&journal->j_wait_transaction_locked,
151 &wait, TASK_UNINTERRUPTIBLE);
152 spin_unlock(&journal->j_state_lock);
153 schedule();
154 finish_wait(&journal->j_wait_transaction_locked, &wait);
155 goto repeat;
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
170 * a new transaction.
172 DEFINE_WAIT(wait);
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);
180 schedule();
181 finish_wait(&journal->j_wait_transaction_locked, &wait);
182 goto repeat;
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
208 * journal_extend().
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);
214 goto repeat_locked;
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);
229 out:
230 if (unlikely(new_transaction)) /* It's usually NULL */
231 kfree(new_transaction);
232 return ret;
235 /* Allocate a new handle. This should probably be in a slab... */
236 static handle_t *new_handle(int nblocks)
238 handle_t *handle = jbd_alloc_handle(GFP_NOFS);
239 if (!handle)
240 return NULL;
241 memset(handle, 0, sizeof(*handle));
242 handle->h_buffer_credits = nblocks;
243 handle->h_ref = 1;
245 return handle;
249 * handle_t *journal_start() - Obtain a new handle.
250 * @journal: Journal to start transaction on.
251 * @nblocks: number of block buffer we might modify
253 * We make sure that the transaction can guarantee at least nblocks of
254 * modified buffers in the log. We block until the log can guarantee
255 * that much space.
257 * This function is visible to journal users (like ext3fs), so is not
258 * called with the journal already locked.
260 * Return a pointer to a newly allocated handle, or NULL on failure
262 handle_t *journal_start(journal_t *journal, int nblocks)
264 handle_t *handle = journal_current_handle();
265 int err;
267 if (!journal)
268 return ERR_PTR(-EROFS);
270 if (handle) {
271 J_ASSERT(handle->h_transaction->t_journal == journal);
272 handle->h_ref++;
273 return handle;
276 handle = new_handle(nblocks);
277 if (!handle)
278 return ERR_PTR(-ENOMEM);
280 current->journal_info = handle;
282 err = start_this_handle(journal, handle);
283 if (err < 0) {
284 jbd_free_handle(handle);
285 current->journal_info = NULL;
286 handle = ERR_PTR(err);
288 return handle;
292 * int journal_extend() - extend buffer credits.
293 * @handle: handle to 'extend'
294 * @nblocks: nr blocks to try to extend by.
296 * Some transactions, such as large extends and truncates, can be done
297 * atomically all at once or in several stages. The operation requests
298 * a credit for a number of buffer modications in advance, but can
299 * extend its credit if it needs more.
301 * journal_extend tries to give the running handle more buffer credits.
302 * It does not guarantee that allocation - this is a best-effort only.
303 * The calling process MUST be able to deal cleanly with a failure to
304 * extend here.
306 * Return 0 on success, non-zero on failure.
308 * return code < 0 implies an error
309 * return code > 0 implies normal transaction-full status.
311 int journal_extend(handle_t *handle, int nblocks)
313 transaction_t *transaction = handle->h_transaction;
314 journal_t *journal = transaction->t_journal;
315 int result;
316 int wanted;
318 result = -EIO;
319 if (is_handle_aborted(handle))
320 goto out;
322 result = 1;
324 spin_lock(&journal->j_state_lock);
326 /* Don't extend a locked-down transaction! */
327 if (handle->h_transaction->t_state != T_RUNNING) {
328 jbd_debug(3, "denied handle %p %d blocks: "
329 "transaction not running\n", handle, nblocks);
330 goto error_out;
333 spin_lock(&transaction->t_handle_lock);
334 wanted = transaction->t_outstanding_credits + nblocks;
336 if (wanted > journal->j_max_transaction_buffers) {
337 jbd_debug(3, "denied handle %p %d blocks: "
338 "transaction too large\n", handle, nblocks);
339 goto unlock;
342 if (wanted > __log_space_left(journal)) {
343 jbd_debug(3, "denied handle %p %d blocks: "
344 "insufficient log space\n", handle, nblocks);
345 goto unlock;
348 handle->h_buffer_credits += nblocks;
349 transaction->t_outstanding_credits += nblocks;
350 result = 0;
352 jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
353 unlock:
354 spin_unlock(&transaction->t_handle_lock);
355 error_out:
356 spin_unlock(&journal->j_state_lock);
357 out:
358 return result;
363 * int journal_restart() - restart a handle .
364 * @handle: handle to restart
365 * @nblocks: nr credits requested
367 * Restart a handle for a multi-transaction filesystem
368 * operation.
370 * If the journal_extend() call above fails to grant new buffer credits
371 * to a running handle, a call to journal_restart will commit the
372 * handle's transaction so far and reattach the handle to a new
373 * transaction capabable of guaranteeing the requested number of
374 * credits.
377 int journal_restart(handle_t *handle, int nblocks)
379 transaction_t *transaction = handle->h_transaction;
380 journal_t *journal = transaction->t_journal;
381 int ret;
383 /* If we've had an abort of any type, don't even think about
384 * actually doing the restart! */
385 if (is_handle_aborted(handle))
386 return 0;
389 * First unlink the handle from its current transaction, and start the
390 * commit on that.
392 J_ASSERT(transaction->t_updates > 0);
393 J_ASSERT(journal_current_handle() == handle);
395 spin_lock(&journal->j_state_lock);
396 spin_lock(&transaction->t_handle_lock);
397 transaction->t_outstanding_credits -= handle->h_buffer_credits;
398 transaction->t_updates--;
400 if (!transaction->t_updates)
401 wake_up(&journal->j_wait_updates);
402 spin_unlock(&transaction->t_handle_lock);
404 jbd_debug(2, "restarting handle %p\n", handle);
405 __log_start_commit(journal, transaction->t_tid);
406 spin_unlock(&journal->j_state_lock);
408 handle->h_buffer_credits = nblocks;
409 ret = start_this_handle(journal, handle);
410 return ret;
415 * void journal_lock_updates () - establish a transaction barrier.
416 * @journal: Journal to establish a barrier on.
418 * This locks out any further updates from being started, and blocks
419 * until all existing updates have completed, returning only once the
420 * journal is in a quiescent state with no updates running.
422 * The journal lock should not be held on entry.
424 void journal_lock_updates(journal_t *journal)
426 DEFINE_WAIT(wait);
428 spin_lock(&journal->j_state_lock);
429 ++journal->j_barrier_count;
431 /* Wait until there are no running updates */
432 while (1) {
433 transaction_t *transaction = journal->j_running_transaction;
435 if (!transaction)
436 break;
438 spin_lock(&transaction->t_handle_lock);
439 if (!transaction->t_updates) {
440 spin_unlock(&transaction->t_handle_lock);
441 break;
443 prepare_to_wait(&journal->j_wait_updates, &wait,
444 TASK_UNINTERRUPTIBLE);
445 spin_unlock(&transaction->t_handle_lock);
446 spin_unlock(&journal->j_state_lock);
447 schedule();
448 finish_wait(&journal->j_wait_updates, &wait);
449 spin_lock(&journal->j_state_lock);
451 spin_unlock(&journal->j_state_lock);
454 * We have now established a barrier against other normal updates, but
455 * we also need to barrier against other journal_lock_updates() calls
456 * to make sure that we serialise special journal-locked operations
457 * too.
459 mutex_lock(&journal->j_barrier);
463 * void journal_unlock_updates (journal_t* journal) - release barrier
464 * @journal: Journal to release the barrier on.
466 * Release a transaction barrier obtained with journal_lock_updates().
468 * Should be called without the journal lock held.
470 void journal_unlock_updates (journal_t *journal)
472 J_ASSERT(journal->j_barrier_count != 0);
474 mutex_unlock(&journal->j_barrier);
475 spin_lock(&journal->j_state_lock);
476 --journal->j_barrier_count;
477 spin_unlock(&journal->j_state_lock);
478 wake_up(&journal->j_wait_transaction_locked);
482 * Report any unexpected dirty buffers which turn up. Normally those
483 * indicate an error, but they can occur if the user is running (say)
484 * tune2fs to modify the live filesystem, so we need the option of
485 * continuing as gracefully as possible. #
487 * The caller should already hold the journal lock and
488 * j_list_lock spinlock: most callers will need those anyway
489 * in order to probe the buffer's journaling state safely.
491 static void jbd_unexpected_dirty_buffer(struct journal_head *jh)
493 int jlist;
495 /* If this buffer is one which might reasonably be dirty
496 * --- ie. data, or not part of this journal --- then
497 * we're OK to leave it alone, but otherwise we need to
498 * move the dirty bit to the journal's own internal
499 * JBDDirty bit. */
500 jlist = jh->b_jlist;
502 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
503 jlist == BJ_Shadow || jlist == BJ_Forget) {
504 struct buffer_head *bh = jh2bh(jh);
506 if (test_clear_buffer_dirty(bh))
507 set_buffer_jbddirty(bh);
512 * If the buffer is already part of the current transaction, then there
513 * is nothing we need to do. If it is already part of a prior
514 * transaction which we are still committing to disk, then we need to
515 * make sure that we do not overwrite the old copy: we do copy-out to
516 * preserve the copy going to disk. We also account the buffer against
517 * the handle's metadata buffer credits (unless the buffer is already
518 * part of the transaction, that is).
521 static int
522 do_get_write_access(handle_t *handle, struct journal_head *jh,
523 int force_copy)
525 struct buffer_head *bh;
526 transaction_t *transaction;
527 journal_t *journal;
528 int error;
529 char *frozen_buffer = NULL;
530 int need_copy = 0;
532 if (is_handle_aborted(handle))
533 return -EROFS;
535 transaction = handle->h_transaction;
536 journal = transaction->t_journal;
538 jbd_debug(5, "buffer_head %p, force_copy %d\n", jh, force_copy);
540 JBUFFER_TRACE(jh, "entry");
541 repeat:
542 bh = jh2bh(jh);
544 /* @@@ Need to check for errors here at some point. */
546 lock_buffer(bh);
547 jbd_lock_bh_state(bh);
549 /* We now hold the buffer lock so it is safe to query the buffer
550 * state. Is the buffer dirty?
552 * If so, there are two possibilities. The buffer may be
553 * non-journaled, and undergoing a quite legitimate writeback.
554 * Otherwise, it is journaled, and we don't expect dirty buffers
555 * in that state (the buffers should be marked JBD_Dirty
556 * instead.) So either the IO is being done under our own
557 * control and this is a bug, or it's a third party IO such as
558 * dump(8) (which may leave the buffer scheduled for read ---
559 * ie. locked but not dirty) or tune2fs (which may actually have
560 * the buffer dirtied, ugh.) */
562 if (buffer_dirty(bh)) {
564 * First question: is this buffer already part of the current
565 * transaction or the existing committing transaction?
567 if (jh->b_transaction) {
568 J_ASSERT_JH(jh,
569 jh->b_transaction == transaction ||
570 jh->b_transaction ==
571 journal->j_committing_transaction);
572 if (jh->b_next_transaction)
573 J_ASSERT_JH(jh, jh->b_next_transaction ==
574 transaction);
577 * In any case we need to clean the dirty flag and we must
578 * do it under the buffer lock to be sure we don't race
579 * with running write-out.
581 JBUFFER_TRACE(jh, "Unexpected dirty buffer");
582 jbd_unexpected_dirty_buffer(jh);
585 unlock_buffer(bh);
587 error = -EROFS;
588 if (is_handle_aborted(handle)) {
589 jbd_unlock_bh_state(bh);
590 goto out;
592 error = 0;
595 * The buffer is already part of this transaction if b_transaction or
596 * b_next_transaction points to it
598 if (jh->b_transaction == transaction ||
599 jh->b_next_transaction == transaction)
600 goto done;
603 * this is the first time this transaction is touching this buffer,
604 * reset the modified flag
606 jh->b_modified = 0;
609 * If there is already a copy-out version of this buffer, then we don't
610 * need to make another one
612 if (jh->b_frozen_data) {
613 JBUFFER_TRACE(jh, "has frozen data");
614 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
615 jh->b_next_transaction = transaction;
616 goto done;
619 /* Is there data here we need to preserve? */
621 if (jh->b_transaction && jh->b_transaction != transaction) {
622 JBUFFER_TRACE(jh, "owned by older transaction");
623 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
624 J_ASSERT_JH(jh, jh->b_transaction ==
625 journal->j_committing_transaction);
627 /* There is one case we have to be very careful about.
628 * If the committing transaction is currently writing
629 * this buffer out to disk and has NOT made a copy-out,
630 * then we cannot modify the buffer contents at all
631 * right now. The essence of copy-out is that it is the
632 * extra copy, not the primary copy, which gets
633 * journaled. If the primary copy is already going to
634 * disk then we cannot do copy-out here. */
636 if (jh->b_jlist == BJ_Shadow) {
637 DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
638 wait_queue_head_t *wqh;
640 wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
642 JBUFFER_TRACE(jh, "on shadow: sleep");
643 jbd_unlock_bh_state(bh);
644 /* commit wakes up all shadow buffers after IO */
645 for ( ; ; ) {
646 prepare_to_wait(wqh, &wait.wait,
647 TASK_UNINTERRUPTIBLE);
648 if (jh->b_jlist != BJ_Shadow)
649 break;
650 schedule();
652 finish_wait(wqh, &wait.wait);
653 goto repeat;
656 /* Only do the copy if the currently-owning transaction
657 * still needs it. If it is on the Forget list, the
658 * committing transaction is past that stage. The
659 * buffer had better remain locked during the kmalloc,
660 * but that should be true --- we hold the journal lock
661 * still and the buffer is already on the BUF_JOURNAL
662 * list so won't be flushed.
664 * Subtle point, though: if this is a get_undo_access,
665 * then we will be relying on the frozen_data to contain
666 * the new value of the committed_data record after the
667 * transaction, so we HAVE to force the frozen_data copy
668 * in that case. */
670 if (jh->b_jlist != BJ_Forget || force_copy) {
671 JBUFFER_TRACE(jh, "generate frozen data");
672 if (!frozen_buffer) {
673 JBUFFER_TRACE(jh, "allocate memory for buffer");
674 jbd_unlock_bh_state(bh);
675 frozen_buffer =
676 jbd_alloc(jh2bh(jh)->b_size,
677 GFP_NOFS);
678 if (!frozen_buffer) {
679 printk(KERN_EMERG
680 "%s: OOM for frozen_buffer\n",
681 __FUNCTION__);
682 JBUFFER_TRACE(jh, "oom!");
683 error = -ENOMEM;
684 jbd_lock_bh_state(bh);
685 goto done;
687 goto repeat;
689 jh->b_frozen_data = frozen_buffer;
690 frozen_buffer = NULL;
691 need_copy = 1;
693 jh->b_next_transaction = transaction;
698 * Finally, if the buffer is not journaled right now, we need to make
699 * sure it doesn't get written to disk before the caller actually
700 * commits the new data
702 if (!jh->b_transaction) {
703 JBUFFER_TRACE(jh, "no transaction");
704 J_ASSERT_JH(jh, !jh->b_next_transaction);
705 jh->b_transaction = transaction;
706 JBUFFER_TRACE(jh, "file as BJ_Reserved");
707 spin_lock(&journal->j_list_lock);
708 __journal_file_buffer(jh, transaction, BJ_Reserved);
709 spin_unlock(&journal->j_list_lock);
712 done:
713 if (need_copy) {
714 struct page *page;
715 int offset;
716 char *source;
718 J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
719 "Possible IO failure.\n");
720 page = jh2bh(jh)->b_page;
721 offset = ((unsigned long) jh2bh(jh)->b_data) & ~PAGE_MASK;
722 source = kmap_atomic(page, KM_USER0);
723 memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
724 kunmap_atomic(source, KM_USER0);
726 jbd_unlock_bh_state(bh);
729 * If we are about to journal a buffer, then any revoke pending on it is
730 * no longer valid
732 journal_cancel_revoke(handle, jh);
734 out:
735 if (unlikely(frozen_buffer)) /* It's usually NULL */
736 jbd_free(frozen_buffer, bh->b_size);
738 JBUFFER_TRACE(jh, "exit");
739 return error;
743 * int journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
744 * @handle: transaction to add buffer modifications to
745 * @bh: bh to be used for metadata writes
746 * @credits: variable that will receive credits for the buffer
748 * Returns an error code or 0 on success.
750 * In full data journalling mode the buffer may be of type BJ_AsyncData,
751 * because we're write()ing a buffer which is also part of a shared mapping.
754 int journal_get_write_access(handle_t *handle, struct buffer_head *bh)
756 struct journal_head *jh = journal_add_journal_head(bh);
757 int rc;
759 /* We do not want to get caught playing with fields which the
760 * log thread also manipulates. Make sure that the buffer
761 * completes any outstanding IO before proceeding. */
762 rc = do_get_write_access(handle, jh, 0);
763 journal_put_journal_head(jh);
764 return rc;
769 * When the user wants to journal a newly created buffer_head
770 * (ie. getblk() returned a new buffer and we are going to populate it
771 * manually rather than reading off disk), then we need to keep the
772 * buffer_head locked until it has been completely filled with new
773 * data. In this case, we should be able to make the assertion that
774 * the bh is not already part of an existing transaction.
776 * The buffer should already be locked by the caller by this point.
777 * There is no lock ranking violation: it was a newly created,
778 * unlocked buffer beforehand. */
781 * int journal_get_create_access () - notify intent to use newly created bh
782 * @handle: transaction to new buffer to
783 * @bh: new buffer.
785 * Call this if you create a new bh.
787 int journal_get_create_access(handle_t *handle, struct buffer_head *bh)
789 transaction_t *transaction = handle->h_transaction;
790 journal_t *journal = transaction->t_journal;
791 struct journal_head *jh = journal_add_journal_head(bh);
792 int err;
794 jbd_debug(5, "journal_head %p\n", jh);
795 err = -EROFS;
796 if (is_handle_aborted(handle))
797 goto out;
798 err = 0;
800 JBUFFER_TRACE(jh, "entry");
802 * The buffer may already belong to this transaction due to pre-zeroing
803 * in the filesystem's new_block code. It may also be on the previous,
804 * committing transaction's lists, but it HAS to be in Forget state in
805 * that case: the transaction must have deleted the buffer for it to be
806 * reused here.
808 jbd_lock_bh_state(bh);
809 spin_lock(&journal->j_list_lock);
810 J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
811 jh->b_transaction == NULL ||
812 (jh->b_transaction == journal->j_committing_transaction &&
813 jh->b_jlist == BJ_Forget)));
815 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
816 J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
818 if (jh->b_transaction == NULL) {
819 jh->b_transaction = transaction;
821 /* first access by this transaction */
822 jh->b_modified = 0;
824 JBUFFER_TRACE(jh, "file as BJ_Reserved");
825 __journal_file_buffer(jh, transaction, BJ_Reserved);
826 } else if (jh->b_transaction == journal->j_committing_transaction) {
827 /* first access by this transaction */
828 jh->b_modified = 0;
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);
846 out:
847 return err;
851 * int journal_get_undo_access() - Notify intent to modify metadata with
852 * non-rewindable consequences
853 * @handle: transaction
854 * @bh: buffer to undo
855 * @credits: store the number of taken credits here (if not NULL)
857 * Sometimes there is a need to distinguish between metadata which has
858 * been committed to disk and that which has not. The ext3fs code uses
859 * this for freeing and allocating space, we have to make sure that we
860 * do not reuse freed space until the deallocation has been committed,
861 * since if we overwrote that space we would make the delete
862 * un-rewindable in case of a crash.
864 * To deal with that, journal_get_undo_access requests write access to a
865 * buffer for parts of non-rewindable operations such as delete
866 * operations on the bitmaps. The journaling code must keep a copy of
867 * the buffer's contents prior to the undo_access call until such time
868 * as we know that the buffer has definitely been committed to disk.
870 * We never need to know which transaction the committed data is part
871 * of, buffers touched here are guaranteed to be dirtied later and so
872 * will be committed to a new transaction in due course, at which point
873 * we can discard the old committed data pointer.
875 * Returns error number or 0 on success.
877 int journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
879 int err;
880 struct journal_head *jh = journal_add_journal_head(bh);
881 char *committed_data = NULL;
883 JBUFFER_TRACE(jh, "entry");
886 * Do this first --- it can drop the journal lock, so we want to
887 * make sure that obtaining the committed_data is done
888 * atomically wrt. completion of any outstanding commits.
890 err = do_get_write_access(handle, jh, 1);
891 if (err)
892 goto out;
894 repeat:
895 if (!jh->b_committed_data) {
896 committed_data = jbd_alloc(jh2bh(jh)->b_size, GFP_NOFS);
897 if (!committed_data) {
898 printk(KERN_EMERG "%s: No memory for committed data\n",
899 __FUNCTION__);
900 err = -ENOMEM;
901 goto out;
905 jbd_lock_bh_state(bh);
906 if (!jh->b_committed_data) {
907 /* Copy out the current buffer contents into the
908 * preserved, committed copy. */
909 JBUFFER_TRACE(jh, "generate b_committed data");
910 if (!committed_data) {
911 jbd_unlock_bh_state(bh);
912 goto repeat;
915 jh->b_committed_data = committed_data;
916 committed_data = NULL;
917 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
919 jbd_unlock_bh_state(bh);
920 out:
921 journal_put_journal_head(jh);
922 if (unlikely(committed_data))
923 jbd_free(committed_data, bh->b_size);
924 return err;
928 * int journal_dirty_data() - mark a buffer as containing dirty data which
929 * needs to be flushed before we can commit the
930 * current transaction.
931 * @handle: transaction
932 * @bh: bufferhead to mark
934 * The buffer is placed on the transaction's data list and is marked as
935 * belonging to the transaction.
937 * Returns error number or 0 on success.
939 * journal_dirty_data() can be called via page_launder->ext3_writepage
940 * by kswapd.
942 int journal_dirty_data(handle_t *handle, struct buffer_head *bh)
944 journal_t *journal = handle->h_transaction->t_journal;
945 int need_brelse = 0;
946 struct journal_head *jh;
947 int ret = 0;
949 if (is_handle_aborted(handle))
950 return ret;
952 jh = journal_add_journal_head(bh);
953 JBUFFER_TRACE(jh, "entry");
956 * The buffer could *already* be dirty. Writeout can start
957 * at any time.
959 jbd_debug(4, "jh: %p, tid:%d\n", jh, handle->h_transaction->t_tid);
962 * What if the buffer is already part of a running transaction?
964 * There are two cases:
965 * 1) It is part of the current running transaction. Refile it,
966 * just in case we have allocated it as metadata, deallocated
967 * it, then reallocated it as data.
968 * 2) It is part of the previous, still-committing transaction.
969 * If all we want to do is to guarantee that the buffer will be
970 * written to disk before this new transaction commits, then
971 * being sure that the *previous* transaction has this same
972 * property is sufficient for us! Just leave it on its old
973 * transaction.
975 * In case (2), the buffer must not already exist as metadata
976 * --- that would violate write ordering (a transaction is free
977 * to write its data at any point, even before the previous
978 * committing transaction has committed). The caller must
979 * never, ever allow this to happen: there's nothing we can do
980 * about it in this layer.
982 jbd_lock_bh_state(bh);
983 spin_lock(&journal->j_list_lock);
985 /* Now that we have bh_state locked, are we really still mapped? */
986 if (!buffer_mapped(bh)) {
987 JBUFFER_TRACE(jh, "unmapped buffer, bailing out");
988 goto no_journal;
991 if (jh->b_transaction) {
992 JBUFFER_TRACE(jh, "has transaction");
993 if (jh->b_transaction != handle->h_transaction) {
994 JBUFFER_TRACE(jh, "belongs to older transaction");
995 J_ASSERT_JH(jh, jh->b_transaction ==
996 journal->j_committing_transaction);
998 /* @@@ IS THIS TRUE ? */
1000 * Not any more. Scenario: someone does a write()
1001 * in data=journal mode. The buffer's transaction has
1002 * moved into commit. Then someone does another
1003 * write() to the file. We do the frozen data copyout
1004 * and set b_next_transaction to point to j_running_t.
1005 * And while we're in that state, someone does a
1006 * writepage() in an attempt to pageout the same area
1007 * of the file via a shared mapping. At present that
1008 * calls journal_dirty_data(), and we get right here.
1009 * It may be too late to journal the data. Simply
1010 * falling through to the next test will suffice: the
1011 * data will be dirty and wil be checkpointed. The
1012 * ordering comments in the next comment block still
1013 * apply.
1015 //J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
1018 * If we're journalling data, and this buffer was
1019 * subject to a write(), it could be metadata, forget
1020 * or shadow against the committing transaction. Now,
1021 * someone has dirtied the same darn page via a mapping
1022 * and it is being writepage()'d.
1023 * We *could* just steal the page from commit, with some
1024 * fancy locking there. Instead, we just skip it -
1025 * don't tie the page's buffers to the new transaction
1026 * at all.
1027 * Implication: if we crash before the writepage() data
1028 * is written into the filesystem, recovery will replay
1029 * the write() data.
1031 if (jh->b_jlist != BJ_None &&
1032 jh->b_jlist != BJ_SyncData &&
1033 jh->b_jlist != BJ_Locked) {
1034 JBUFFER_TRACE(jh, "Not stealing");
1035 goto no_journal;
1039 * This buffer may be undergoing writeout in commit. We
1040 * can't return from here and let the caller dirty it
1041 * again because that can cause the write-out loop in
1042 * commit to never terminate.
1044 if (buffer_dirty(bh)) {
1045 get_bh(bh);
1046 spin_unlock(&journal->j_list_lock);
1047 jbd_unlock_bh_state(bh);
1048 need_brelse = 1;
1049 sync_dirty_buffer(bh);
1050 jbd_lock_bh_state(bh);
1051 spin_lock(&journal->j_list_lock);
1052 /* Since we dropped the lock... */
1053 if (!buffer_mapped(bh)) {
1054 JBUFFER_TRACE(jh, "buffer got unmapped");
1055 goto no_journal;
1057 /* The buffer may become locked again at any
1058 time if it is redirtied */
1062 * We cannot remove the buffer with io error from the
1063 * committing transaction, because otherwise it would
1064 * miss the error and the commit would not abort.
1066 if (unlikely(!buffer_uptodate(bh))) {
1067 ret = -EIO;
1068 goto no_journal;
1071 if (jh->b_transaction != NULL) {
1072 JBUFFER_TRACE(jh, "unfile from commit");
1073 __journal_temp_unlink_buffer(jh);
1074 /* It still points to the committing
1075 * transaction; move it to this one so
1076 * that the refile assert checks are
1077 * happy. */
1078 jh->b_transaction = handle->h_transaction;
1080 /* The buffer will be refiled below */
1084 * Special case --- the buffer might actually have been
1085 * allocated and then immediately deallocated in the previous,
1086 * committing transaction, so might still be left on that
1087 * transaction's metadata lists.
1089 if (jh->b_jlist != BJ_SyncData && jh->b_jlist != BJ_Locked) {
1090 JBUFFER_TRACE(jh, "not on correct data list: unfile");
1091 J_ASSERT_JH(jh, jh->b_jlist != BJ_Shadow);
1092 __journal_temp_unlink_buffer(jh);
1093 jh->b_transaction = handle->h_transaction;
1094 JBUFFER_TRACE(jh, "file as data");
1095 __journal_file_buffer(jh, handle->h_transaction,
1096 BJ_SyncData);
1098 } else {
1099 JBUFFER_TRACE(jh, "not on a transaction");
1100 __journal_file_buffer(jh, handle->h_transaction, BJ_SyncData);
1102 no_journal:
1103 spin_unlock(&journal->j_list_lock);
1104 jbd_unlock_bh_state(bh);
1105 if (need_brelse) {
1106 BUFFER_TRACE(bh, "brelse");
1107 __brelse(bh);
1109 JBUFFER_TRACE(jh, "exit");
1110 journal_put_journal_head(jh);
1111 return ret;
1115 * int journal_dirty_metadata() - mark a buffer as containing dirty metadata
1116 * @handle: transaction to add buffer to.
1117 * @bh: buffer to mark
1119 * mark dirty metadata which needs to be journaled as part of the current
1120 * transaction.
1122 * The buffer is placed on the transaction's metadata list and is marked
1123 * as belonging to the transaction.
1125 * Returns error number or 0 on success.
1127 * Special care needs to be taken if the buffer already belongs to the
1128 * current committing transaction (in which case we should have frozen
1129 * data present for that commit). In that case, we don't relink the
1130 * buffer: that only gets done when the old transaction finally
1131 * completes its commit.
1133 int journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
1135 transaction_t *transaction = handle->h_transaction;
1136 journal_t *journal = transaction->t_journal;
1137 struct journal_head *jh = bh2jh(bh);
1139 jbd_debug(5, "journal_head %p\n", jh);
1140 JBUFFER_TRACE(jh, "entry");
1141 if (is_handle_aborted(handle))
1142 goto out;
1144 jbd_lock_bh_state(bh);
1146 if (jh->b_modified == 0) {
1148 * This buffer's got modified and becoming part
1149 * of the transaction. This needs to be done
1150 * once a transaction -bzzz
1152 jh->b_modified = 1;
1153 J_ASSERT_JH(jh, handle->h_buffer_credits > 0);
1154 handle->h_buffer_credits--;
1158 * fastpath, to avoid expensive locking. If this buffer is already
1159 * on the running transaction's metadata list there is nothing to do.
1160 * Nobody can take it off again because there is a handle open.
1161 * I _think_ we're OK here with SMP barriers - a mistaken decision will
1162 * result in this test being false, so we go in and take the locks.
1164 if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1165 JBUFFER_TRACE(jh, "fastpath");
1166 J_ASSERT_JH(jh, jh->b_transaction ==
1167 journal->j_running_transaction);
1168 goto out_unlock_bh;
1171 set_buffer_jbddirty(bh);
1174 * Metadata already on the current transaction list doesn't
1175 * need to be filed. Metadata on another transaction's list must
1176 * be committing, and will be refiled once the commit completes:
1177 * leave it alone for now.
1179 if (jh->b_transaction != transaction) {
1180 JBUFFER_TRACE(jh, "already on other transaction");
1181 J_ASSERT_JH(jh, jh->b_transaction ==
1182 journal->j_committing_transaction);
1183 J_ASSERT_JH(jh, jh->b_next_transaction == transaction);
1184 /* And this case is illegal: we can't reuse another
1185 * transaction's data buffer, ever. */
1186 goto out_unlock_bh;
1189 /* That test should have eliminated the following case: */
1190 J_ASSERT_JH(jh, jh->b_frozen_data == 0);
1192 JBUFFER_TRACE(jh, "file as BJ_Metadata");
1193 spin_lock(&journal->j_list_lock);
1194 __journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
1195 spin_unlock(&journal->j_list_lock);
1196 out_unlock_bh:
1197 jbd_unlock_bh_state(bh);
1198 out:
1199 JBUFFER_TRACE(jh, "exit");
1200 return 0;
1204 * journal_release_buffer: undo a get_write_access without any buffer
1205 * updates, if the update decided in the end that it didn't need access.
1208 void
1209 journal_release_buffer(handle_t *handle, struct buffer_head *bh)
1211 BUFFER_TRACE(bh, "entry");
1215 * void journal_forget() - bforget() for potentially-journaled buffers.
1216 * @handle: transaction handle
1217 * @bh: bh to 'forget'
1219 * We can only do the bforget if there are no commits pending against the
1220 * buffer. If the buffer is dirty in the current running transaction we
1221 * can safely unlink it.
1223 * bh may not be a journalled buffer at all - it may be a non-JBD
1224 * buffer which came off the hashtable. Check for this.
1226 * Decrements bh->b_count by one.
1228 * Allow this call even if the handle has aborted --- it may be part of
1229 * the caller's cleanup after an abort.
1231 int journal_forget (handle_t *handle, struct buffer_head *bh)
1233 transaction_t *transaction = handle->h_transaction;
1234 journal_t *journal = transaction->t_journal;
1235 struct journal_head *jh;
1236 int drop_reserve = 0;
1237 int err = 0;
1238 int was_modified = 0;
1240 BUFFER_TRACE(bh, "entry");
1242 jbd_lock_bh_state(bh);
1243 spin_lock(&journal->j_list_lock);
1245 if (!buffer_jbd(bh))
1246 goto not_jbd;
1247 jh = bh2jh(bh);
1249 /* Critical error: attempting to delete a bitmap buffer, maybe?
1250 * Don't do any jbd operations, and return an error. */
1251 if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1252 "inconsistent data on disk")) {
1253 err = -EIO;
1254 goto not_jbd;
1257 /* keep track of wether or not this transaction modified us */
1258 was_modified = jh->b_modified;
1261 * The buffer's going from the transaction, we must drop
1262 * all references -bzzz
1264 jh->b_modified = 0;
1266 if (jh->b_transaction == handle->h_transaction) {
1267 J_ASSERT_JH(jh, !jh->b_frozen_data);
1269 /* If we are forgetting a buffer which is already part
1270 * of this transaction, then we can just drop it from
1271 * the transaction immediately. */
1272 clear_buffer_dirty(bh);
1273 clear_buffer_jbddirty(bh);
1275 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1278 * we only want to drop a reference if this transaction
1279 * modified the buffer
1281 if (was_modified)
1282 drop_reserve = 1;
1285 * We are no longer going to journal this buffer.
1286 * However, the commit of this transaction is still
1287 * important to the buffer: the delete that we are now
1288 * processing might obsolete an old log entry, so by
1289 * committing, we can satisfy the buffer's checkpoint.
1291 * So, if we have a checkpoint on the buffer, we should
1292 * now refile the buffer on our BJ_Forget list so that
1293 * we know to remove the checkpoint after we commit.
1296 if (jh->b_cp_transaction) {
1297 __journal_temp_unlink_buffer(jh);
1298 __journal_file_buffer(jh, transaction, BJ_Forget);
1299 } else {
1300 __journal_unfile_buffer(jh);
1301 journal_remove_journal_head(bh);
1302 __brelse(bh);
1303 if (!buffer_jbd(bh)) {
1304 spin_unlock(&journal->j_list_lock);
1305 jbd_unlock_bh_state(bh);
1306 __bforget(bh);
1307 goto drop;
1310 } else if (jh->b_transaction) {
1311 J_ASSERT_JH(jh, (jh->b_transaction ==
1312 journal->j_committing_transaction));
1313 /* However, if the buffer is still owned by a prior
1314 * (committing) transaction, we can't drop it yet... */
1315 JBUFFER_TRACE(jh, "belongs to older transaction");
1316 /* ... but we CAN drop it from the new transaction if we
1317 * have also modified it since the original commit. */
1319 if (jh->b_next_transaction) {
1320 J_ASSERT(jh->b_next_transaction == transaction);
1321 jh->b_next_transaction = NULL;
1324 * only drop a reference if this transaction modified
1325 * the buffer
1327 if (was_modified)
1328 drop_reserve = 1;
1332 not_jbd:
1333 spin_unlock(&journal->j_list_lock);
1334 jbd_unlock_bh_state(bh);
1335 __brelse(bh);
1336 drop:
1337 if (drop_reserve) {
1338 /* no need to reserve log space for this block -bzzz */
1339 handle->h_buffer_credits++;
1341 return err;
1345 * int journal_stop() - complete a transaction
1346 * @handle: tranaction to complete.
1348 * All done for a particular handle.
1350 * There is not much action needed here. We just return any remaining
1351 * buffer credits to the transaction and remove the handle. The only
1352 * complication is that we need to start a commit operation if the
1353 * filesystem is marked for synchronous update.
1355 * journal_stop itself will not usually return an error, but it may
1356 * do so in unusual circumstances. In particular, expect it to
1357 * return -EIO if a journal_abort has been executed since the
1358 * transaction began.
1360 int journal_stop(handle_t *handle)
1362 transaction_t *transaction = handle->h_transaction;
1363 journal_t *journal = transaction->t_journal;
1364 int old_handle_count, err;
1365 pid_t pid;
1367 J_ASSERT(journal_current_handle() == handle);
1369 if (is_handle_aborted(handle))
1370 err = -EIO;
1371 else {
1372 J_ASSERT(transaction->t_updates > 0);
1373 err = 0;
1376 if (--handle->h_ref > 0) {
1377 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1378 handle->h_ref);
1379 return err;
1382 jbd_debug(4, "Handle %p going down\n", handle);
1385 * Implement synchronous transaction batching. If the handle
1386 * was synchronous, don't force a commit immediately. Let's
1387 * yield and let another thread piggyback onto this transaction.
1388 * Keep doing that while new threads continue to arrive.
1389 * It doesn't cost much - we're about to run a commit and sleep
1390 * on IO anyway. Speeds up many-threaded, many-dir operations
1391 * by 30x or more...
1393 * But don't do this if this process was the most recent one to
1394 * perform a synchronous write. We do this to detect the case where a
1395 * single process is doing a stream of sync writes. No point in waiting
1396 * for joiners in that case.
1398 pid = current->pid;
1399 if (handle->h_sync && journal->j_last_sync_writer != pid) {
1400 journal->j_last_sync_writer = pid;
1401 do {
1402 old_handle_count = transaction->t_handle_count;
1403 schedule_timeout_uninterruptible(1);
1404 } while (old_handle_count != transaction->t_handle_count);
1407 if (handle->h_sync)
1408 transaction->t_synchronous_commit = 1;
1409 current->journal_info = NULL;
1410 spin_lock(&journal->j_state_lock);
1411 spin_lock(&transaction->t_handle_lock);
1412 transaction->t_outstanding_credits -= handle->h_buffer_credits;
1413 transaction->t_updates--;
1414 if (!transaction->t_updates) {
1415 wake_up(&journal->j_wait_updates);
1416 if (journal->j_barrier_count)
1417 wake_up(&journal->j_wait_transaction_locked);
1421 * If the handle is marked SYNC, we need to set another commit
1422 * going! We also want to force a commit if the current
1423 * transaction is occupying too much of the log, or if the
1424 * transaction is too old now.
1426 if (handle->h_sync ||
1427 transaction->t_outstanding_credits >
1428 journal->j_max_transaction_buffers ||
1429 time_after_eq(jiffies, transaction->t_expires)) {
1430 /* Do this even for aborted journals: an abort still
1431 * completes the commit thread, it just doesn't write
1432 * anything to disk. */
1433 tid_t tid = transaction->t_tid;
1435 spin_unlock(&transaction->t_handle_lock);
1436 jbd_debug(2, "transaction too old, requesting commit for "
1437 "handle %p\n", handle);
1438 /* This is non-blocking */
1439 __log_start_commit(journal, transaction->t_tid);
1440 spin_unlock(&journal->j_state_lock);
1443 * Special case: JFS_SYNC synchronous updates require us
1444 * to wait for the commit to complete.
1446 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
1447 err = log_wait_commit(journal, tid);
1448 } else {
1449 spin_unlock(&transaction->t_handle_lock);
1450 spin_unlock(&journal->j_state_lock);
1453 jbd_free_handle(handle);
1454 return err;
1457 /**int journal_force_commit() - force any uncommitted transactions
1458 * @journal: journal to force
1460 * For synchronous operations: force any uncommitted transactions
1461 * to disk. May seem kludgy, but it reuses all the handle batching
1462 * code in a very simple manner.
1464 int journal_force_commit(journal_t *journal)
1466 handle_t *handle;
1467 int ret;
1469 handle = journal_start(journal, 1);
1470 if (IS_ERR(handle)) {
1471 ret = PTR_ERR(handle);
1472 } else {
1473 handle->h_sync = 1;
1474 ret = journal_stop(handle);
1476 return ret;
1481 * List management code snippets: various functions for manipulating the
1482 * transaction buffer lists.
1487 * Append a buffer to a transaction list, given the transaction's list head
1488 * pointer.
1490 * j_list_lock is held.
1492 * jbd_lock_bh_state(jh2bh(jh)) is held.
1495 static inline void
1496 __blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1498 if (!*list) {
1499 jh->b_tnext = jh->b_tprev = jh;
1500 *list = jh;
1501 } else {
1502 /* Insert at the tail of the list to preserve order */
1503 struct journal_head *first = *list, *last = first->b_tprev;
1504 jh->b_tprev = last;
1505 jh->b_tnext = first;
1506 last->b_tnext = first->b_tprev = jh;
1511 * Remove a buffer from a transaction list, given the transaction's list
1512 * head pointer.
1514 * Called with j_list_lock held, and the journal may not be locked.
1516 * jbd_lock_bh_state(jh2bh(jh)) is held.
1519 static inline void
1520 __blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1522 if (*list == jh) {
1523 *list = jh->b_tnext;
1524 if (*list == jh)
1525 *list = NULL;
1527 jh->b_tprev->b_tnext = jh->b_tnext;
1528 jh->b_tnext->b_tprev = jh->b_tprev;
1532 * Remove a buffer from the appropriate transaction list.
1534 * Note that this function can *change* the value of
1535 * bh->b_transaction->t_sync_datalist, t_buffers, t_forget,
1536 * t_iobuf_list, t_shadow_list, t_log_list or t_reserved_list. If the caller
1537 * is holding onto a copy of one of thee pointers, it could go bad.
1538 * Generally the caller needs to re-read the pointer from the transaction_t.
1540 * Called under j_list_lock. The journal may not be locked.
1542 static void __journal_temp_unlink_buffer(struct journal_head *jh)
1544 struct journal_head **list = NULL;
1545 transaction_t *transaction;
1546 struct buffer_head *bh = jh2bh(jh);
1548 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1549 transaction = jh->b_transaction;
1550 if (transaction)
1551 assert_spin_locked(&transaction->t_journal->j_list_lock);
1553 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1554 if (jh->b_jlist != BJ_None)
1555 J_ASSERT_JH(jh, transaction != 0);
1557 switch (jh->b_jlist) {
1558 case BJ_None:
1559 return;
1560 case BJ_SyncData:
1561 list = &transaction->t_sync_datalist;
1562 break;
1563 case BJ_Metadata:
1564 transaction->t_nr_buffers--;
1565 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1566 list = &transaction->t_buffers;
1567 break;
1568 case BJ_Forget:
1569 list = &transaction->t_forget;
1570 break;
1571 case BJ_IO:
1572 list = &transaction->t_iobuf_list;
1573 break;
1574 case BJ_Shadow:
1575 list = &transaction->t_shadow_list;
1576 break;
1577 case BJ_LogCtl:
1578 list = &transaction->t_log_list;
1579 break;
1580 case BJ_Reserved:
1581 list = &transaction->t_reserved_list;
1582 break;
1583 case BJ_Locked:
1584 list = &transaction->t_locked_list;
1585 break;
1588 __blist_del_buffer(list, jh);
1589 jh->b_jlist = BJ_None;
1590 if (test_clear_buffer_jbddirty(bh))
1591 mark_buffer_dirty(bh); /* Expose it to the VM */
1594 void __journal_unfile_buffer(struct journal_head *jh)
1596 __journal_temp_unlink_buffer(jh);
1597 jh->b_transaction = NULL;
1600 void journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
1602 jbd_lock_bh_state(jh2bh(jh));
1603 spin_lock(&journal->j_list_lock);
1604 __journal_unfile_buffer(jh);
1605 spin_unlock(&journal->j_list_lock);
1606 jbd_unlock_bh_state(jh2bh(jh));
1610 * Called from journal_try_to_free_buffers().
1612 * Called under jbd_lock_bh_state(bh)
1614 static void
1615 __journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1617 struct journal_head *jh;
1619 jh = bh2jh(bh);
1621 if (buffer_locked(bh) || buffer_dirty(bh))
1622 goto out;
1624 if (jh->b_next_transaction != 0)
1625 goto out;
1627 spin_lock(&journal->j_list_lock);
1628 if (jh->b_transaction != 0 && jh->b_cp_transaction == 0) {
1629 if (jh->b_jlist == BJ_SyncData || jh->b_jlist == BJ_Locked) {
1630 /* A written-back ordered data buffer */
1631 JBUFFER_TRACE(jh, "release data");
1632 __journal_unfile_buffer(jh);
1633 journal_remove_journal_head(bh);
1634 __brelse(bh);
1636 } else if (jh->b_cp_transaction != 0 && jh->b_transaction == 0) {
1637 /* written-back checkpointed metadata buffer */
1638 if (jh->b_jlist == BJ_None) {
1639 JBUFFER_TRACE(jh, "remove from checkpoint list");
1640 __journal_remove_checkpoint(jh);
1641 journal_remove_journal_head(bh);
1642 __brelse(bh);
1645 spin_unlock(&journal->j_list_lock);
1646 out:
1647 return;
1652 * int journal_try_to_free_buffers() - try to free page buffers.
1653 * @journal: journal for operation
1654 * @page: to try and free
1655 * @unused_gfp_mask: unused
1658 * For all the buffers on this page,
1659 * if they are fully written out ordered data, move them onto BUF_CLEAN
1660 * so try_to_free_buffers() can reap them.
1662 * This function returns non-zero if we wish try_to_free_buffers()
1663 * to be called. We do this if the page is releasable by try_to_free_buffers().
1664 * We also do it if the page has locked or dirty buffers and the caller wants
1665 * us to perform sync or async writeout.
1667 * This complicates JBD locking somewhat. We aren't protected by the
1668 * BKL here. We wish to remove the buffer from its committing or
1669 * running transaction's ->t_datalist via __journal_unfile_buffer.
1671 * This may *change* the value of transaction_t->t_datalist, so anyone
1672 * who looks at t_datalist needs to lock against this function.
1674 * Even worse, someone may be doing a journal_dirty_data on this
1675 * buffer. So we need to lock against that. journal_dirty_data()
1676 * will come out of the lock with the buffer dirty, which makes it
1677 * ineligible for release here.
1679 * Who else is affected by this? hmm... Really the only contender
1680 * is do_get_write_access() - it could be looking at the buffer while
1681 * journal_try_to_free_buffer() is changing its state. But that
1682 * cannot happen because we never reallocate freed data as metadata
1683 * while the data is part of a transaction. Yes?
1685 int journal_try_to_free_buffers(journal_t *journal,
1686 struct page *page, gfp_t unused_gfp_mask)
1688 struct buffer_head *head;
1689 struct buffer_head *bh;
1690 int ret = 0;
1692 J_ASSERT(PageLocked(page));
1694 head = page_buffers(page);
1695 bh = head;
1696 do {
1697 struct journal_head *jh;
1700 * We take our own ref against the journal_head here to avoid
1701 * having to add tons of locking around each instance of
1702 * journal_remove_journal_head() and journal_put_journal_head().
1704 jh = journal_grab_journal_head(bh);
1705 if (!jh)
1706 continue;
1708 jbd_lock_bh_state(bh);
1709 __journal_try_to_free_buffer(journal, bh);
1710 journal_put_journal_head(jh);
1711 jbd_unlock_bh_state(bh);
1712 if (buffer_jbd(bh))
1713 goto busy;
1714 } while ((bh = bh->b_this_page) != head);
1715 ret = try_to_free_buffers(page);
1716 busy:
1717 return ret;
1721 * This buffer is no longer needed. If it is on an older transaction's
1722 * checkpoint list we need to record it on this transaction's forget list
1723 * to pin this buffer (and hence its checkpointing transaction) down until
1724 * this transaction commits. If the buffer isn't on a checkpoint list, we
1725 * release it.
1726 * Returns non-zero if JBD no longer has an interest in the buffer.
1728 * Called under j_list_lock.
1730 * Called under jbd_lock_bh_state(bh).
1732 static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
1734 int may_free = 1;
1735 struct buffer_head *bh = jh2bh(jh);
1737 __journal_unfile_buffer(jh);
1739 if (jh->b_cp_transaction) {
1740 JBUFFER_TRACE(jh, "on running+cp transaction");
1741 __journal_file_buffer(jh, transaction, BJ_Forget);
1742 clear_buffer_jbddirty(bh);
1743 may_free = 0;
1744 } else {
1745 JBUFFER_TRACE(jh, "on running transaction");
1746 journal_remove_journal_head(bh);
1747 __brelse(bh);
1749 return may_free;
1753 * journal_invalidatepage
1755 * This code is tricky. It has a number of cases to deal with.
1757 * There are two invariants which this code relies on:
1759 * i_size must be updated on disk before we start calling invalidatepage on the
1760 * data.
1762 * This is done in ext3 by defining an ext3_setattr method which
1763 * updates i_size before truncate gets going. By maintaining this
1764 * invariant, we can be sure that it is safe to throw away any buffers
1765 * attached to the current transaction: once the transaction commits,
1766 * we know that the data will not be needed.
1768 * Note however that we can *not* throw away data belonging to the
1769 * previous, committing transaction!
1771 * Any disk blocks which *are* part of the previous, committing
1772 * transaction (and which therefore cannot be discarded immediately) are
1773 * not going to be reused in the new running transaction
1775 * The bitmap committed_data images guarantee this: any block which is
1776 * allocated in one transaction and removed in the next will be marked
1777 * as in-use in the committed_data bitmap, so cannot be reused until
1778 * the next transaction to delete the block commits. This means that
1779 * leaving committing buffers dirty is quite safe: the disk blocks
1780 * cannot be reallocated to a different file and so buffer aliasing is
1781 * not possible.
1784 * The above applies mainly to ordered data mode. In writeback mode we
1785 * don't make guarantees about the order in which data hits disk --- in
1786 * particular we don't guarantee that new dirty data is flushed before
1787 * transaction commit --- so it is always safe just to discard data
1788 * immediately in that mode. --sct
1792 * The journal_unmap_buffer helper function returns zero if the buffer
1793 * concerned remains pinned as an anonymous buffer belonging to an older
1794 * transaction.
1796 * We're outside-transaction here. Either or both of j_running_transaction
1797 * and j_committing_transaction may be NULL.
1799 static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh)
1801 transaction_t *transaction;
1802 struct journal_head *jh;
1803 int may_free = 1;
1804 int ret;
1806 BUFFER_TRACE(bh, "entry");
1809 * It is safe to proceed here without the j_list_lock because the
1810 * buffers cannot be stolen by try_to_free_buffers as long as we are
1811 * holding the page lock. --sct
1814 if (!buffer_jbd(bh))
1815 goto zap_buffer_unlocked;
1817 spin_lock(&journal->j_state_lock);
1818 jbd_lock_bh_state(bh);
1819 spin_lock(&journal->j_list_lock);
1821 jh = journal_grab_journal_head(bh);
1822 if (!jh)
1823 goto zap_buffer_no_jh;
1825 transaction = jh->b_transaction;
1826 if (transaction == NULL) {
1827 /* First case: not on any transaction. If it
1828 * has no checkpoint link, then we can zap it:
1829 * it's a writeback-mode buffer so we don't care
1830 * if it hits disk safely. */
1831 if (!jh->b_cp_transaction) {
1832 JBUFFER_TRACE(jh, "not on any transaction: zap");
1833 goto zap_buffer;
1836 if (!buffer_dirty(bh)) {
1837 /* bdflush has written it. We can drop it now */
1838 goto zap_buffer;
1841 /* OK, it must be in the journal but still not
1842 * written fully to disk: it's metadata or
1843 * journaled data... */
1845 if (journal->j_running_transaction) {
1846 /* ... and once the current transaction has
1847 * committed, the buffer won't be needed any
1848 * longer. */
1849 JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
1850 ret = __dispose_buffer(jh,
1851 journal->j_running_transaction);
1852 journal_put_journal_head(jh);
1853 spin_unlock(&journal->j_list_lock);
1854 jbd_unlock_bh_state(bh);
1855 spin_unlock(&journal->j_state_lock);
1856 return ret;
1857 } else {
1858 /* There is no currently-running transaction. So the
1859 * orphan record which we wrote for this file must have
1860 * passed into commit. We must attach this buffer to
1861 * the committing transaction, if it exists. */
1862 if (journal->j_committing_transaction) {
1863 JBUFFER_TRACE(jh, "give to committing trans");
1864 ret = __dispose_buffer(jh,
1865 journal->j_committing_transaction);
1866 journal_put_journal_head(jh);
1867 spin_unlock(&journal->j_list_lock);
1868 jbd_unlock_bh_state(bh);
1869 spin_unlock(&journal->j_state_lock);
1870 return ret;
1871 } else {
1872 /* The orphan record's transaction has
1873 * committed. We can cleanse this buffer */
1874 clear_buffer_jbddirty(bh);
1875 goto zap_buffer;
1878 } else if (transaction == journal->j_committing_transaction) {
1879 JBUFFER_TRACE(jh, "on committing transaction");
1880 if (jh->b_jlist == BJ_Locked) {
1882 * The buffer is on the committing transaction's locked
1883 * list. We have the buffer locked, so I/O has
1884 * completed. So we can nail the buffer now.
1886 may_free = __dispose_buffer(jh, transaction);
1887 goto zap_buffer;
1890 * If it is committing, we simply cannot touch it. We
1891 * can remove it's next_transaction pointer from the
1892 * running transaction if that is set, but nothing
1893 * else. */
1894 set_buffer_freed(bh);
1895 if (jh->b_next_transaction) {
1896 J_ASSERT(jh->b_next_transaction ==
1897 journal->j_running_transaction);
1898 jh->b_next_transaction = NULL;
1900 journal_put_journal_head(jh);
1901 spin_unlock(&journal->j_list_lock);
1902 jbd_unlock_bh_state(bh);
1903 spin_unlock(&journal->j_state_lock);
1904 return 0;
1905 } else {
1906 /* Good, the buffer belongs to the running transaction.
1907 * We are writing our own transaction's data, not any
1908 * previous one's, so it is safe to throw it away
1909 * (remember that we expect the filesystem to have set
1910 * i_size already for this truncate so recovery will not
1911 * expose the disk blocks we are discarding here.) */
1912 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
1913 JBUFFER_TRACE(jh, "on running transaction");
1914 may_free = __dispose_buffer(jh, transaction);
1917 zap_buffer:
1918 journal_put_journal_head(jh);
1919 zap_buffer_no_jh:
1920 spin_unlock(&journal->j_list_lock);
1921 jbd_unlock_bh_state(bh);
1922 spin_unlock(&journal->j_state_lock);
1923 zap_buffer_unlocked:
1924 clear_buffer_dirty(bh);
1925 J_ASSERT_BH(bh, !buffer_jbddirty(bh));
1926 clear_buffer_mapped(bh);
1927 clear_buffer_req(bh);
1928 clear_buffer_new(bh);
1929 bh->b_bdev = NULL;
1930 return may_free;
1934 * void journal_invalidatepage()
1935 * @journal: journal to use for flush...
1936 * @page: page to flush
1937 * @offset: length of page to invalidate.
1939 * Reap page buffers containing data after offset in page.
1942 void journal_invalidatepage(journal_t *journal,
1943 struct page *page,
1944 unsigned long offset)
1946 struct buffer_head *head, *bh, *next;
1947 unsigned int curr_off = 0;
1948 int may_free = 1;
1950 if (!PageLocked(page))
1951 BUG();
1952 if (!page_has_buffers(page))
1953 return;
1955 /* We will potentially be playing with lists other than just the
1956 * data lists (especially for journaled data mode), so be
1957 * cautious in our locking. */
1959 head = bh = page_buffers(page);
1960 do {
1961 unsigned int next_off = curr_off + bh->b_size;
1962 next = bh->b_this_page;
1964 if (offset <= curr_off) {
1965 /* This block is wholly outside the truncation point */
1966 lock_buffer(bh);
1967 may_free &= journal_unmap_buffer(journal, bh);
1968 unlock_buffer(bh);
1970 curr_off = next_off;
1971 bh = next;
1973 } while (bh != head);
1975 if (!offset) {
1976 if (may_free && try_to_free_buffers(page))
1977 J_ASSERT(!page_has_buffers(page));
1982 * File a buffer on the given transaction list.
1984 void __journal_file_buffer(struct journal_head *jh,
1985 transaction_t *transaction, int jlist)
1987 struct journal_head **list = NULL;
1988 int was_dirty = 0;
1989 struct buffer_head *bh = jh2bh(jh);
1991 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1992 assert_spin_locked(&transaction->t_journal->j_list_lock);
1994 J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1995 J_ASSERT_JH(jh, jh->b_transaction == transaction ||
1996 jh->b_transaction == 0);
1998 if (jh->b_transaction && jh->b_jlist == jlist)
1999 return;
2001 /* The following list of buffer states needs to be consistent
2002 * with __jbd_unexpected_dirty_buffer()'s handling of dirty
2003 * state. */
2005 if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
2006 jlist == BJ_Shadow || jlist == BJ_Forget) {
2007 if (test_clear_buffer_dirty(bh) ||
2008 test_clear_buffer_jbddirty(bh))
2009 was_dirty = 1;
2012 if (jh->b_transaction)
2013 __journal_temp_unlink_buffer(jh);
2014 jh->b_transaction = transaction;
2016 switch (jlist) {
2017 case BJ_None:
2018 J_ASSERT_JH(jh, !jh->b_committed_data);
2019 J_ASSERT_JH(jh, !jh->b_frozen_data);
2020 return;
2021 case BJ_SyncData:
2022 list = &transaction->t_sync_datalist;
2023 break;
2024 case BJ_Metadata:
2025 transaction->t_nr_buffers++;
2026 list = &transaction->t_buffers;
2027 break;
2028 case BJ_Forget:
2029 list = &transaction->t_forget;
2030 break;
2031 case BJ_IO:
2032 list = &transaction->t_iobuf_list;
2033 break;
2034 case BJ_Shadow:
2035 list = &transaction->t_shadow_list;
2036 break;
2037 case BJ_LogCtl:
2038 list = &transaction->t_log_list;
2039 break;
2040 case BJ_Reserved:
2041 list = &transaction->t_reserved_list;
2042 break;
2043 case BJ_Locked:
2044 list = &transaction->t_locked_list;
2045 break;
2048 __blist_add_buffer(list, jh);
2049 jh->b_jlist = jlist;
2051 if (was_dirty)
2052 set_buffer_jbddirty(bh);
2055 void journal_file_buffer(struct journal_head *jh,
2056 transaction_t *transaction, int jlist)
2058 jbd_lock_bh_state(jh2bh(jh));
2059 spin_lock(&transaction->t_journal->j_list_lock);
2060 __journal_file_buffer(jh, transaction, jlist);
2061 spin_unlock(&transaction->t_journal->j_list_lock);
2062 jbd_unlock_bh_state(jh2bh(jh));
2066 * Remove a buffer from its current buffer list in preparation for
2067 * dropping it from its current transaction entirely. If the buffer has
2068 * already started to be used by a subsequent transaction, refile the
2069 * buffer on that transaction's metadata list.
2071 * Called under journal->j_list_lock
2073 * Called under jbd_lock_bh_state(jh2bh(jh))
2075 void __journal_refile_buffer(struct journal_head *jh)
2077 int was_dirty;
2078 struct buffer_head *bh = jh2bh(jh);
2080 J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2081 if (jh->b_transaction)
2082 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2084 /* If the buffer is now unused, just drop it. */
2085 if (jh->b_next_transaction == NULL) {
2086 __journal_unfile_buffer(jh);
2087 return;
2091 * It has been modified by a later transaction: add it to the new
2092 * transaction's metadata list.
2095 was_dirty = test_clear_buffer_jbddirty(bh);
2096 __journal_temp_unlink_buffer(jh);
2097 jh->b_transaction = jh->b_next_transaction;
2098 jh->b_next_transaction = NULL;
2099 __journal_file_buffer(jh, jh->b_transaction,
2100 jh->b_modified ? BJ_Metadata : BJ_Reserved);
2101 J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2103 if (was_dirty)
2104 set_buffer_jbddirty(bh);
2108 * For the unlocked version of this call, also make sure that any
2109 * hanging journal_head is cleaned up if necessary.
2111 * __journal_refile_buffer is usually called as part of a single locked
2112 * operation on a buffer_head, in which the caller is probably going to
2113 * be hooking the journal_head onto other lists. In that case it is up
2114 * to the caller to remove the journal_head if necessary. For the
2115 * unlocked journal_refile_buffer call, the caller isn't going to be
2116 * doing anything else to the buffer so we need to do the cleanup
2117 * ourselves to avoid a jh leak.
2119 * *** The journal_head may be freed by this call! ***
2121 void journal_refile_buffer(journal_t *journal, struct journal_head *jh)
2123 struct buffer_head *bh = jh2bh(jh);
2125 jbd_lock_bh_state(bh);
2126 spin_lock(&journal->j_list_lock);
2128 __journal_refile_buffer(jh);
2129 jbd_unlock_bh_state(bh);
2130 journal_remove_journal_head(bh);
2132 spin_unlock(&journal->j_list_lock);
2133 __brelse(bh);