]> err.no Git - linux-2.6/blob - fs/jbd2/transaction.c
f30802aeefae3739b717592d4c82331f2fffc79d
[linux-2.6] / fs / jbd2 / transaction.c
1 /*
2  * linux/fs/jbd2/transaction.c
3  *
4  * Written by Stephen C. Tweedie <sct@redhat.com>, 1998
5  *
6  * Copyright 1998 Red Hat corp --- All Rights Reserved
7  *
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.
11  *
12  * Generic filesystem transaction handling code; part of the ext2fs
13  * journaling system.
14  *
15  * This file manages transactions (compound commits managed by the
16  * journaling code) and handles (individual atomic operations by the
17  * filesystem).
18  */
19
20 #include <linux/time.h>
21 #include <linux/fs.h>
22 #include <linux/jbd2.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>
28
29 static void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh);
30
31 /*
32  * jbd2_get_transaction: obtain a new transaction_t object.
33  *
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).
38  *
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.
43  *
44  * Called under j_state_lock
45  */
46
47 static transaction_t *
48 jbd2_get_transaction(journal_t *journal, transaction_t *transaction)
49 {
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);
55
56         /* Set up the commit timer for the new transaction. */
57         journal->j_commit_timer.expires = transaction->t_expires;
58         add_timer(&journal->j_commit_timer);
59
60         J_ASSERT(journal->j_running_transaction == NULL);
61         journal->j_running_transaction = transaction;
62         transaction->t_max_wait = 0;
63         transaction->t_start = jiffies;
64
65         return transaction;
66 }
67
68 /*
69  * Handle management.
70  *
71  * A handle_t is an object which represents a single atomic update to a
72  * filesystem, and which tracks all of the modifications which form part
73  * of that one update.
74  */
75
76 /*
77  * start_this_handle: Given a handle, deal with any locking or stalling
78  * needed to make sure that there is enough journal space for the handle
79  * to begin.  Attach the handle to a transaction and set up the
80  * transaction's buffer credits.
81  */
82
83 static int start_this_handle(journal_t *journal, handle_t *handle)
84 {
85         transaction_t *transaction;
86         int needed;
87         int nblocks = handle->h_buffer_credits;
88         transaction_t *new_transaction = NULL;
89         int ret = 0;
90         unsigned long ts = jiffies;
91
92         if (nblocks > journal->j_max_transaction_buffers) {
93                 printk(KERN_ERR "JBD: %s wants too many credits (%d > %d)\n",
94                        current->comm, nblocks,
95                        journal->j_max_transaction_buffers);
96                 ret = -ENOSPC;
97                 goto out;
98         }
99
100 alloc_transaction:
101         if (!journal->j_running_transaction) {
102                 new_transaction = kzalloc(sizeof(*new_transaction),
103                                                 GFP_NOFS|__GFP_NOFAIL);
104                 if (!new_transaction) {
105                         ret = -ENOMEM;
106                         goto out;
107                 }
108         }
109
110         jbd_debug(3, "New handle %p going live.\n", handle);
111
112 repeat:
113
114         /*
115          * We need to hold j_state_lock until t_updates has been incremented,
116          * for proper journal barrier handling
117          */
118         spin_lock(&journal->j_state_lock);
119 repeat_locked:
120         if (is_journal_aborted(journal) ||
121             (journal->j_errno != 0 && !(journal->j_flags & JBD2_ACK_ERR))) {
122                 spin_unlock(&journal->j_state_lock);
123                 ret = -EROFS;
124                 goto out;
125         }
126
127         /* Wait on the journal's transaction barrier if necessary */
128         if (journal->j_barrier_count) {
129                 spin_unlock(&journal->j_state_lock);
130                 wait_event(journal->j_wait_transaction_locked,
131                                 journal->j_barrier_count == 0);
132                 goto repeat;
133         }
134
135         if (!journal->j_running_transaction) {
136                 if (!new_transaction) {
137                         spin_unlock(&journal->j_state_lock);
138                         goto alloc_transaction;
139                 }
140                 jbd2_get_transaction(journal, new_transaction);
141                 new_transaction = NULL;
142         }
143
144         transaction = journal->j_running_transaction;
145
146         /*
147          * If the current transaction is locked down for commit, wait for the
148          * lock to be released.
149          */
150         if (transaction->t_state == T_LOCKED) {
151                 DEFINE_WAIT(wait);
152
153                 prepare_to_wait(&journal->j_wait_transaction_locked,
154                                         &wait, TASK_UNINTERRUPTIBLE);
155                 spin_unlock(&journal->j_state_lock);
156                 schedule();
157                 finish_wait(&journal->j_wait_transaction_locked, &wait);
158                 goto repeat;
159         }
160
161         /*
162          * If there is not enough space left in the log to write all potential
163          * buffers requested by this operation, we need to stall pending a log
164          * checkpoint to free some more log space.
165          */
166         spin_lock(&transaction->t_handle_lock);
167         needed = transaction->t_outstanding_credits + nblocks;
168
169         if (needed > journal->j_max_transaction_buffers) {
170                 /*
171                  * If the current transaction is already too large, then start
172                  * to commit it: we can then go back and attach this handle to
173                  * a new transaction.
174                  */
175                 DEFINE_WAIT(wait);
176
177                 jbd_debug(2, "Handle %p starting new commit...\n", handle);
178                 spin_unlock(&transaction->t_handle_lock);
179                 prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
180                                 TASK_UNINTERRUPTIBLE);
181                 __jbd2_log_start_commit(journal, transaction->t_tid);
182                 spin_unlock(&journal->j_state_lock);
183                 schedule();
184                 finish_wait(&journal->j_wait_transaction_locked, &wait);
185                 goto repeat;
186         }
187
188         /*
189          * The commit code assumes that it can get enough log space
190          * without forcing a checkpoint.  This is *critical* for
191          * correctness: a checkpoint of a buffer which is also
192          * associated with a committing transaction creates a deadlock,
193          * so commit simply cannot force through checkpoints.
194          *
195          * We must therefore ensure the necessary space in the journal
196          * *before* starting to dirty potentially checkpointed buffers
197          * in the new transaction.
198          *
199          * The worst part is, any transaction currently committing can
200          * reduce the free space arbitrarily.  Be careful to account for
201          * those buffers when checkpointing.
202          */
203
204         /*
205          * @@@ AKPM: This seems rather over-defensive.  We're giving commit
206          * a _lot_ of headroom: 1/4 of the journal plus the size of
207          * the committing transaction.  Really, we only need to give it
208          * committing_transaction->t_outstanding_credits plus "enough" for
209          * the log control blocks.
210          * Also, this test is inconsitent with the matching one in
211          * jbd2_journal_extend().
212          */
213         if (__jbd2_log_space_left(journal) < jbd_space_needed(journal)) {
214                 jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle);
215                 spin_unlock(&transaction->t_handle_lock);
216                 __jbd2_log_wait_for_space(journal);
217                 goto repeat_locked;
218         }
219
220         /* OK, account for the buffers that this operation expects to
221          * use and add the handle to the running transaction. */
222
223         if (time_after(transaction->t_start, ts)) {
224                 ts = jbd2_time_diff(ts, transaction->t_start);
225                 if (ts > transaction->t_max_wait)
226                         transaction->t_max_wait = ts;
227         }
228
229         handle->h_transaction = transaction;
230         transaction->t_outstanding_credits += nblocks;
231         transaction->t_updates++;
232         transaction->t_handle_count++;
233         jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
234                   handle, nblocks, transaction->t_outstanding_credits,
235                   __jbd2_log_space_left(journal));
236         spin_unlock(&transaction->t_handle_lock);
237         spin_unlock(&journal->j_state_lock);
238 out:
239         if (unlikely(new_transaction))          /* It's usually NULL */
240                 kfree(new_transaction);
241         return ret;
242 }
243
244 /* Allocate a new handle.  This should probably be in a slab... */
245 static handle_t *new_handle(int nblocks)
246 {
247         handle_t *handle = jbd2_alloc_handle(GFP_NOFS);
248         if (!handle)
249                 return NULL;
250         memset(handle, 0, sizeof(*handle));
251         handle->h_buffer_credits = nblocks;
252         handle->h_ref = 1;
253
254         return handle;
255 }
256
257 /**
258  * handle_t *jbd2_journal_start() - Obtain a new handle.
259  * @journal: Journal to start transaction on.
260  * @nblocks: number of block buffer we might modify
261  *
262  * We make sure that the transaction can guarantee at least nblocks of
263  * modified buffers in the log.  We block until the log can guarantee
264  * that much space.
265  *
266  * This function is visible to journal users (like ext3fs), so is not
267  * called with the journal already locked.
268  *
269  * Return a pointer to a newly allocated handle, or NULL on failure
270  */
271 handle_t *jbd2_journal_start(journal_t *journal, int nblocks)
272 {
273         handle_t *handle = journal_current_handle();
274         int err;
275
276         if (!journal)
277                 return ERR_PTR(-EROFS);
278
279         if (handle) {
280                 J_ASSERT(handle->h_transaction->t_journal == journal);
281                 handle->h_ref++;
282                 return handle;
283         }
284
285         handle = new_handle(nblocks);
286         if (!handle)
287                 return ERR_PTR(-ENOMEM);
288
289         current->journal_info = handle;
290
291         err = start_this_handle(journal, handle);
292         if (err < 0) {
293                 jbd2_free_handle(handle);
294                 current->journal_info = NULL;
295                 handle = ERR_PTR(err);
296         }
297         return handle;
298 }
299
300 /**
301  * int jbd2_journal_extend() - extend buffer credits.
302  * @handle:  handle to 'extend'
303  * @nblocks: nr blocks to try to extend by.
304  *
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.
309  *
310  * jbd2_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
313  * extend here.
314  *
315  * Return 0 on success, non-zero on failure.
316  *
317  * return code < 0 implies an error
318  * return code > 0 implies normal transaction-full status.
319  */
320 int jbd2_journal_extend(handle_t *handle, int nblocks)
321 {
322         transaction_t *transaction = handle->h_transaction;
323         journal_t *journal = transaction->t_journal;
324         int result;
325         int wanted;
326
327         result = -EIO;
328         if (is_handle_aborted(handle))
329                 goto out;
330
331         result = 1;
332
333         spin_lock(&journal->j_state_lock);
334
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);
339                 goto error_out;
340         }
341
342         spin_lock(&transaction->t_handle_lock);
343         wanted = transaction->t_outstanding_credits + nblocks;
344
345         if (wanted > journal->j_max_transaction_buffers) {
346                 jbd_debug(3, "denied handle %p %d blocks: "
347                           "transaction too large\n", handle, nblocks);
348                 goto unlock;
349         }
350
351         if (wanted > __jbd2_log_space_left(journal)) {
352                 jbd_debug(3, "denied handle %p %d blocks: "
353                           "insufficient log space\n", handle, nblocks);
354                 goto unlock;
355         }
356
357         handle->h_buffer_credits += nblocks;
358         transaction->t_outstanding_credits += nblocks;
359         result = 0;
360
361         jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
362 unlock:
363         spin_unlock(&transaction->t_handle_lock);
364 error_out:
365         spin_unlock(&journal->j_state_lock);
366 out:
367         return result;
368 }
369
370
371 /**
372  * int jbd2_journal_restart() - restart a handle .
373  * @handle:  handle to restart
374  * @nblocks: nr credits requested
375  *
376  * Restart a handle for a multi-transaction filesystem
377  * operation.
378  *
379  * If the jbd2_journal_extend() call above fails to grant new buffer credits
380  * to a running handle, a call to jbd2_journal_restart will commit the
381  * handle's transaction so far and reattach the handle to a new
382  * transaction capabable of guaranteeing the requested number of
383  * credits.
384  */
385
386 int jbd2_journal_restart(handle_t *handle, int nblocks)
387 {
388         transaction_t *transaction = handle->h_transaction;
389         journal_t *journal = transaction->t_journal;
390         int ret;
391
392         /* If we've had an abort of any type, don't even think about
393          * actually doing the restart! */
394         if (is_handle_aborted(handle))
395                 return 0;
396
397         /*
398          * First unlink the handle from its current transaction, and start the
399          * commit on that.
400          */
401         J_ASSERT(transaction->t_updates > 0);
402         J_ASSERT(journal_current_handle() == handle);
403
404         spin_lock(&journal->j_state_lock);
405         spin_lock(&transaction->t_handle_lock);
406         transaction->t_outstanding_credits -= handle->h_buffer_credits;
407         transaction->t_updates--;
408
409         if (!transaction->t_updates)
410                 wake_up(&journal->j_wait_updates);
411         spin_unlock(&transaction->t_handle_lock);
412
413         jbd_debug(2, "restarting handle %p\n", handle);
414         __jbd2_log_start_commit(journal, transaction->t_tid);
415         spin_unlock(&journal->j_state_lock);
416
417         handle->h_buffer_credits = nblocks;
418         ret = start_this_handle(journal, handle);
419         return ret;
420 }
421
422
423 /**
424  * void jbd2_journal_lock_updates () - establish a transaction barrier.
425  * @journal:  Journal to establish a barrier on.
426  *
427  * This locks out any further updates from being started, and blocks
428  * until all existing updates have completed, returning only once the
429  * journal is in a quiescent state with no updates running.
430  *
431  * The journal lock should not be held on entry.
432  */
433 void jbd2_journal_lock_updates(journal_t *journal)
434 {
435         DEFINE_WAIT(wait);
436
437         spin_lock(&journal->j_state_lock);
438         ++journal->j_barrier_count;
439
440         /* Wait until there are no running updates */
441         while (1) {
442                 transaction_t *transaction = journal->j_running_transaction;
443
444                 if (!transaction)
445                         break;
446
447                 spin_lock(&transaction->t_handle_lock);
448                 if (!transaction->t_updates) {
449                         spin_unlock(&transaction->t_handle_lock);
450                         break;
451                 }
452                 prepare_to_wait(&journal->j_wait_updates, &wait,
453                                 TASK_UNINTERRUPTIBLE);
454                 spin_unlock(&transaction->t_handle_lock);
455                 spin_unlock(&journal->j_state_lock);
456                 schedule();
457                 finish_wait(&journal->j_wait_updates, &wait);
458                 spin_lock(&journal->j_state_lock);
459         }
460         spin_unlock(&journal->j_state_lock);
461
462         /*
463          * We have now established a barrier against other normal updates, but
464          * we also need to barrier against other jbd2_journal_lock_updates() calls
465          * to make sure that we serialise special journal-locked operations
466          * too.
467          */
468         mutex_lock(&journal->j_barrier);
469 }
470
471 /**
472  * void jbd2_journal_unlock_updates (journal_t* journal) - release barrier
473  * @journal:  Journal to release the barrier on.
474  *
475  * Release a transaction barrier obtained with jbd2_journal_lock_updates().
476  *
477  * Should be called without the journal lock held.
478  */
479 void jbd2_journal_unlock_updates (journal_t *journal)
480 {
481         J_ASSERT(journal->j_barrier_count != 0);
482
483         mutex_unlock(&journal->j_barrier);
484         spin_lock(&journal->j_state_lock);
485         --journal->j_barrier_count;
486         spin_unlock(&journal->j_state_lock);
487         wake_up(&journal->j_wait_transaction_locked);
488 }
489
490 /*
491  * Report any unexpected dirty buffers which turn up.  Normally those
492  * indicate an error, but they can occur if the user is running (say)
493  * tune2fs to modify the live filesystem, so we need the option of
494  * continuing as gracefully as possible.  #
495  *
496  * The caller should already hold the journal lock and
497  * j_list_lock spinlock: most callers will need those anyway
498  * in order to probe the buffer's journaling state safely.
499  */
500 static void jbd_unexpected_dirty_buffer(struct journal_head *jh)
501 {
502         int jlist;
503
504         /* If this buffer is one which might reasonably be dirty
505          * --- ie. data, or not part of this journal --- then
506          * we're OK to leave it alone, but otherwise we need to
507          * move the dirty bit to the journal's own internal
508          * JBDDirty bit. */
509         jlist = jh->b_jlist;
510
511         if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
512             jlist == BJ_Shadow || jlist == BJ_Forget) {
513                 struct buffer_head *bh = jh2bh(jh);
514
515                 if (test_clear_buffer_dirty(bh))
516                         set_buffer_jbddirty(bh);
517         }
518 }
519
520 /*
521  * If the buffer is already part of the current transaction, then there
522  * is nothing we need to do.  If it is already part of a prior
523  * transaction which we are still committing to disk, then we need to
524  * make sure that we do not overwrite the old copy: we do copy-out to
525  * preserve the copy going to disk.  We also account the buffer against
526  * the handle's metadata buffer credits (unless the buffer is already
527  * part of the transaction, that is).
528  *
529  */
530 static int
531 do_get_write_access(handle_t *handle, struct journal_head *jh,
532                         int force_copy)
533 {
534         struct buffer_head *bh;
535         transaction_t *transaction;
536         journal_t *journal;
537         int error;
538         char *frozen_buffer = NULL;
539         int need_copy = 0;
540
541         if (is_handle_aborted(handle))
542                 return -EROFS;
543
544         transaction = handle->h_transaction;
545         journal = transaction->t_journal;
546
547         jbd_debug(5, "buffer_head %p, force_copy %d\n", jh, force_copy);
548
549         JBUFFER_TRACE(jh, "entry");
550 repeat:
551         bh = jh2bh(jh);
552
553         /* @@@ Need to check for errors here at some point. */
554
555         lock_buffer(bh);
556         jbd_lock_bh_state(bh);
557
558         /* We now hold the buffer lock so it is safe to query the buffer
559          * state.  Is the buffer dirty?
560          *
561          * If so, there are two possibilities.  The buffer may be
562          * non-journaled, and undergoing a quite legitimate writeback.
563          * Otherwise, it is journaled, and we don't expect dirty buffers
564          * in that state (the buffers should be marked JBD_Dirty
565          * instead.)  So either the IO is being done under our own
566          * control and this is a bug, or it's a third party IO such as
567          * dump(8) (which may leave the buffer scheduled for read ---
568          * ie. locked but not dirty) or tune2fs (which may actually have
569          * the buffer dirtied, ugh.)  */
570
571         if (buffer_dirty(bh)) {
572                 /*
573                  * First question: is this buffer already part of the current
574                  * transaction or the existing committing transaction?
575                  */
576                 if (jh->b_transaction) {
577                         J_ASSERT_JH(jh,
578                                 jh->b_transaction == transaction ||
579                                 jh->b_transaction ==
580                                         journal->j_committing_transaction);
581                         if (jh->b_next_transaction)
582                                 J_ASSERT_JH(jh, jh->b_next_transaction ==
583                                                         transaction);
584                 }
585                 /*
586                  * In any case we need to clean the dirty flag and we must
587                  * do it under the buffer lock to be sure we don't race
588                  * with running write-out.
589                  */
590                 JBUFFER_TRACE(jh, "Unexpected dirty buffer");
591                 jbd_unexpected_dirty_buffer(jh);
592         }
593
594         unlock_buffer(bh);
595
596         error = -EROFS;
597         if (is_handle_aborted(handle)) {
598                 jbd_unlock_bh_state(bh);
599                 goto out;
600         }
601         error = 0;
602
603         /*
604          * The buffer is already part of this transaction if b_transaction or
605          * b_next_transaction points to it
606          */
607         if (jh->b_transaction == transaction ||
608             jh->b_next_transaction == transaction)
609                 goto done;
610
611         /*
612          * If there is already a copy-out version of this buffer, then we don't
613          * need to make another one
614          */
615         if (jh->b_frozen_data) {
616                 JBUFFER_TRACE(jh, "has frozen data");
617                 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
618                 jh->b_next_transaction = transaction;
619                 goto done;
620         }
621
622         /* Is there data here we need to preserve? */
623
624         if (jh->b_transaction && jh->b_transaction != transaction) {
625                 JBUFFER_TRACE(jh, "owned by older transaction");
626                 J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
627                 J_ASSERT_JH(jh, jh->b_transaction ==
628                                         journal->j_committing_transaction);
629
630                 /* There is one case we have to be very careful about.
631                  * If the committing transaction is currently writing
632                  * this buffer out to disk and has NOT made a copy-out,
633                  * then we cannot modify the buffer contents at all
634                  * right now.  The essence of copy-out is that it is the
635                  * extra copy, not the primary copy, which gets
636                  * journaled.  If the primary copy is already going to
637                  * disk then we cannot do copy-out here. */
638
639                 if (jh->b_jlist == BJ_Shadow) {
640                         DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
641                         wait_queue_head_t *wqh;
642
643                         wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
644
645                         JBUFFER_TRACE(jh, "on shadow: sleep");
646                         jbd_unlock_bh_state(bh);
647                         /* commit wakes up all shadow buffers after IO */
648                         for ( ; ; ) {
649                                 prepare_to_wait(wqh, &wait.wait,
650                                                 TASK_UNINTERRUPTIBLE);
651                                 if (jh->b_jlist != BJ_Shadow)
652                                         break;
653                                 schedule();
654                         }
655                         finish_wait(wqh, &wait.wait);
656                         goto repeat;
657                 }
658
659                 /* Only do the copy if the currently-owning transaction
660                  * still needs it.  If it is on the Forget list, the
661                  * committing transaction is past that stage.  The
662                  * buffer had better remain locked during the kmalloc,
663                  * but that should be true --- we hold the journal lock
664                  * still and the buffer is already on the BUF_JOURNAL
665                  * list so won't be flushed.
666                  *
667                  * Subtle point, though: if this is a get_undo_access,
668                  * then we will be relying on the frozen_data to contain
669                  * the new value of the committed_data record after the
670                  * transaction, so we HAVE to force the frozen_data copy
671                  * in that case. */
672
673                 if (jh->b_jlist != BJ_Forget || force_copy) {
674                         JBUFFER_TRACE(jh, "generate frozen data");
675                         if (!frozen_buffer) {
676                                 JBUFFER_TRACE(jh, "allocate memory for buffer");
677                                 jbd_unlock_bh_state(bh);
678                                 frozen_buffer =
679                                         jbd2_alloc(jh2bh(jh)->b_size,
680                                                          GFP_NOFS);
681                                 if (!frozen_buffer) {
682                                         printk(KERN_EMERG
683                                                "%s: OOM for frozen_buffer\n",
684                                                __FUNCTION__);
685                                         JBUFFER_TRACE(jh, "oom!");
686                                         error = -ENOMEM;
687                                         jbd_lock_bh_state(bh);
688                                         goto done;
689                                 }
690                                 goto repeat;
691                         }
692                         jh->b_frozen_data = frozen_buffer;
693                         frozen_buffer = NULL;
694                         need_copy = 1;
695                 }
696                 jh->b_next_transaction = transaction;
697         }
698
699
700         /*
701          * Finally, if the buffer is not journaled right now, we need to make
702          * sure it doesn't get written to disk before the caller actually
703          * commits the new data
704          */
705         if (!jh->b_transaction) {
706                 JBUFFER_TRACE(jh, "no transaction");
707                 J_ASSERT_JH(jh, !jh->b_next_transaction);
708                 jh->b_transaction = transaction;
709                 JBUFFER_TRACE(jh, "file as BJ_Reserved");
710                 spin_lock(&journal->j_list_lock);
711                 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
712                 spin_unlock(&journal->j_list_lock);
713         }
714
715 done:
716         if (need_copy) {
717                 struct page *page;
718                 int offset;
719                 char *source;
720
721                 J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
722                             "Possible IO failure.\n");
723                 page = jh2bh(jh)->b_page;
724                 offset = ((unsigned long) jh2bh(jh)->b_data) & ~PAGE_MASK;
725                 source = kmap_atomic(page, KM_USER0);
726                 memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
727                 kunmap_atomic(source, KM_USER0);
728         }
729         jbd_unlock_bh_state(bh);
730
731         /*
732          * If we are about to journal a buffer, then any revoke pending on it is
733          * no longer valid
734          */
735         jbd2_journal_cancel_revoke(handle, jh);
736
737 out:
738         if (unlikely(frozen_buffer))    /* It's usually NULL */
739                 jbd2_free(frozen_buffer, bh->b_size);
740
741         JBUFFER_TRACE(jh, "exit");
742         return error;
743 }
744
745 /**
746  * int jbd2_journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
747  * @handle: transaction to add buffer modifications to
748  * @bh:     bh to be used for metadata writes
749  * @credits: variable that will receive credits for the buffer
750  *
751  * Returns an error code or 0 on success.
752  *
753  * In full data journalling mode the buffer may be of type BJ_AsyncData,
754  * because we're write()ing a buffer which is also part of a shared mapping.
755  */
756
757 int jbd2_journal_get_write_access(handle_t *handle, struct buffer_head *bh)
758 {
759         struct journal_head *jh = jbd2_journal_add_journal_head(bh);
760         int rc;
761
762         /* We do not want to get caught playing with fields which the
763          * log thread also manipulates.  Make sure that the buffer
764          * completes any outstanding IO before proceeding. */
765         rc = do_get_write_access(handle, jh, 0);
766         jbd2_journal_put_journal_head(jh);
767         return rc;
768 }
769
770
771 /*
772  * When the user wants to journal a newly created buffer_head
773  * (ie. getblk() returned a new buffer and we are going to populate it
774  * manually rather than reading off disk), then we need to keep the
775  * buffer_head locked until it has been completely filled with new
776  * data.  In this case, we should be able to make the assertion that
777  * the bh is not already part of an existing transaction.
778  *
779  * The buffer should already be locked by the caller by this point.
780  * There is no lock ranking violation: it was a newly created,
781  * unlocked buffer beforehand. */
782
783 /**
784  * int jbd2_journal_get_create_access () - notify intent to use newly created bh
785  * @handle: transaction to new buffer to
786  * @bh: new buffer.
787  *
788  * Call this if you create a new bh.
789  */
790 int jbd2_journal_get_create_access(handle_t *handle, struct buffer_head *bh)
791 {
792         transaction_t *transaction = handle->h_transaction;
793         journal_t *journal = transaction->t_journal;
794         struct journal_head *jh = jbd2_journal_add_journal_head(bh);
795         int err;
796
797         jbd_debug(5, "journal_head %p\n", jh);
798         err = -EROFS;
799         if (is_handle_aborted(handle))
800                 goto out;
801         err = 0;
802
803         JBUFFER_TRACE(jh, "entry");
804         /*
805          * The buffer may already belong to this transaction due to pre-zeroing
806          * in the filesystem's new_block code.  It may also be on the previous,
807          * committing transaction's lists, but it HAS to be in Forget state in
808          * that case: the transaction must have deleted the buffer for it to be
809          * reused here.
810          */
811         jbd_lock_bh_state(bh);
812         spin_lock(&journal->j_list_lock);
813         J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
814                 jh->b_transaction == NULL ||
815                 (jh->b_transaction == journal->j_committing_transaction &&
816                           jh->b_jlist == BJ_Forget)));
817
818         J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
819         J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
820
821         if (jh->b_transaction == NULL) {
822                 jh->b_transaction = transaction;
823                 JBUFFER_TRACE(jh, "file as BJ_Reserved");
824                 __jbd2_journal_file_buffer(jh, transaction, BJ_Reserved);
825         } else if (jh->b_transaction == journal->j_committing_transaction) {
826                 JBUFFER_TRACE(jh, "set next transaction");
827                 jh->b_next_transaction = transaction;
828         }
829         spin_unlock(&journal->j_list_lock);
830         jbd_unlock_bh_state(bh);
831
832         /*
833          * akpm: I added this.  ext3_alloc_branch can pick up new indirect
834          * blocks which contain freed but then revoked metadata.  We need
835          * to cancel the revoke in case we end up freeing it yet again
836          * and the reallocating as data - this would cause a second revoke,
837          * which hits an assertion error.
838          */
839         JBUFFER_TRACE(jh, "cancelling revoke");
840         jbd2_journal_cancel_revoke(handle, jh);
841         jbd2_journal_put_journal_head(jh);
842 out:
843         return err;
844 }
845
846 /**
847  * int jbd2_journal_get_undo_access() -  Notify intent to modify metadata with
848  *     non-rewindable consequences
849  * @handle: transaction
850  * @bh: buffer to undo
851  * @credits: store the number of taken credits here (if not NULL)
852  *
853  * Sometimes there is a need to distinguish between metadata which has
854  * been committed to disk and that which has not.  The ext3fs code uses
855  * this for freeing and allocating space, we have to make sure that we
856  * do not reuse freed space until the deallocation has been committed,
857  * since if we overwrote that space we would make the delete
858  * un-rewindable in case of a crash.
859  *
860  * To deal with that, jbd2_journal_get_undo_access requests write access to a
861  * buffer for parts of non-rewindable operations such as delete
862  * operations on the bitmaps.  The journaling code must keep a copy of
863  * the buffer's contents prior to the undo_access call until such time
864  * as we know that the buffer has definitely been committed to disk.
865  *
866  * We never need to know which transaction the committed data is part
867  * of, buffers touched here are guaranteed to be dirtied later and so
868  * will be committed to a new transaction in due course, at which point
869  * we can discard the old committed data pointer.
870  *
871  * Returns error number or 0 on success.
872  */
873 int jbd2_journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
874 {
875         int err;
876         struct journal_head *jh = jbd2_journal_add_journal_head(bh);
877         char *committed_data = NULL;
878
879         JBUFFER_TRACE(jh, "entry");
880
881         /*
882          * Do this first --- it can drop the journal lock, so we want to
883          * make sure that obtaining the committed_data is done
884          * atomically wrt. completion of any outstanding commits.
885          */
886         err = do_get_write_access(handle, jh, 1);
887         if (err)
888                 goto out;
889
890 repeat:
891         if (!jh->b_committed_data) {
892                 committed_data = jbd2_alloc(jh2bh(jh)->b_size, GFP_NOFS);
893                 if (!committed_data) {
894                         printk(KERN_EMERG "%s: No memory for committed data\n",
895                                 __FUNCTION__);
896                         err = -ENOMEM;
897                         goto out;
898                 }
899         }
900
901         jbd_lock_bh_state(bh);
902         if (!jh->b_committed_data) {
903                 /* Copy out the current buffer contents into the
904                  * preserved, committed copy. */
905                 JBUFFER_TRACE(jh, "generate b_committed data");
906                 if (!committed_data) {
907                         jbd_unlock_bh_state(bh);
908                         goto repeat;
909                 }
910
911                 jh->b_committed_data = committed_data;
912                 committed_data = NULL;
913                 memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
914         }
915         jbd_unlock_bh_state(bh);
916 out:
917         jbd2_journal_put_journal_head(jh);
918         if (unlikely(committed_data))
919                 jbd2_free(committed_data, bh->b_size);
920         return err;
921 }
922
923 /**
924  * int jbd2_journal_dirty_data() -  mark a buffer as containing dirty data which
925  *                             needs to be flushed before we can commit the
926  *                             current transaction.
927  * @handle: transaction
928  * @bh: bufferhead to mark
929  *
930  * The buffer is placed on the transaction's data list and is marked as
931  * belonging to the transaction.
932  *
933  * Returns error number or 0 on success.
934  *
935  * jbd2_journal_dirty_data() can be called via page_launder->ext3_writepage
936  * by kswapd.
937  */
938 int jbd2_journal_dirty_data(handle_t *handle, struct buffer_head *bh)
939 {
940         journal_t *journal = handle->h_transaction->t_journal;
941         int need_brelse = 0;
942         struct journal_head *jh;
943
944         if (is_handle_aborted(handle))
945                 return 0;
946
947         jh = jbd2_journal_add_journal_head(bh);
948         JBUFFER_TRACE(jh, "entry");
949
950         /*
951          * The buffer could *already* be dirty.  Writeout can start
952          * at any time.
953          */
954         jbd_debug(4, "jh: %p, tid:%d\n", jh, handle->h_transaction->t_tid);
955
956         /*
957          * What if the buffer is already part of a running transaction?
958          *
959          * There are two cases:
960          * 1) It is part of the current running transaction.  Refile it,
961          *    just in case we have allocated it as metadata, deallocated
962          *    it, then reallocated it as data.
963          * 2) It is part of the previous, still-committing transaction.
964          *    If all we want to do is to guarantee that the buffer will be
965          *    written to disk before this new transaction commits, then
966          *    being sure that the *previous* transaction has this same
967          *    property is sufficient for us!  Just leave it on its old
968          *    transaction.
969          *
970          * In case (2), the buffer must not already exist as metadata
971          * --- that would violate write ordering (a transaction is free
972          * to write its data at any point, even before the previous
973          * committing transaction has committed).  The caller must
974          * never, ever allow this to happen: there's nothing we can do
975          * about it in this layer.
976          */
977         jbd_lock_bh_state(bh);
978         spin_lock(&journal->j_list_lock);
979
980         /* Now that we have bh_state locked, are we really still mapped? */
981         if (!buffer_mapped(bh)) {
982                 JBUFFER_TRACE(jh, "unmapped buffer, bailing out");
983                 goto no_journal;
984         }
985
986         if (jh->b_transaction) {
987                 JBUFFER_TRACE(jh, "has transaction");
988                 if (jh->b_transaction != handle->h_transaction) {
989                         JBUFFER_TRACE(jh, "belongs to older transaction");
990                         J_ASSERT_JH(jh, jh->b_transaction ==
991                                         journal->j_committing_transaction);
992
993                         /* @@@ IS THIS TRUE  ? */
994                         /*
995                          * Not any more.  Scenario: someone does a write()
996                          * in data=journal mode.  The buffer's transaction has
997                          * moved into commit.  Then someone does another
998                          * write() to the file.  We do the frozen data copyout
999                          * and set b_next_transaction to point to j_running_t.
1000                          * And while we're in that state, someone does a
1001                          * writepage() in an attempt to pageout the same area
1002                          * of the file via a shared mapping.  At present that
1003                          * calls jbd2_journal_dirty_data(), and we get right here.
1004                          * It may be too late to journal the data.  Simply
1005                          * falling through to the next test will suffice: the
1006                          * data will be dirty and wil be checkpointed.  The
1007                          * ordering comments in the next comment block still
1008                          * apply.
1009                          */
1010                         //J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
1011
1012                         /*
1013                          * If we're journalling data, and this buffer was
1014                          * subject to a write(), it could be metadata, forget
1015                          * or shadow against the committing transaction.  Now,
1016                          * someone has dirtied the same darn page via a mapping
1017                          * and it is being writepage()'d.
1018                          * We *could* just steal the page from commit, with some
1019                          * fancy locking there.  Instead, we just skip it -
1020                          * don't tie the page's buffers to the new transaction
1021                          * at all.
1022                          * Implication: if we crash before the writepage() data
1023                          * is written into the filesystem, recovery will replay
1024                          * the write() data.
1025                          */
1026                         if (jh->b_jlist != BJ_None &&
1027                                         jh->b_jlist != BJ_SyncData &&
1028                                         jh->b_jlist != BJ_Locked) {
1029                                 JBUFFER_TRACE(jh, "Not stealing");
1030                                 goto no_journal;
1031                         }
1032
1033                         /*
1034                          * This buffer may be undergoing writeout in commit.  We
1035                          * can't return from here and let the caller dirty it
1036                          * again because that can cause the write-out loop in
1037                          * commit to never terminate.
1038                          */
1039                         if (buffer_dirty(bh)) {
1040                                 get_bh(bh);
1041                                 spin_unlock(&journal->j_list_lock);
1042                                 jbd_unlock_bh_state(bh);
1043                                 need_brelse = 1;
1044                                 sync_dirty_buffer(bh);
1045                                 jbd_lock_bh_state(bh);
1046                                 spin_lock(&journal->j_list_lock);
1047                                 /* Since we dropped the lock... */
1048                                 if (!buffer_mapped(bh)) {
1049                                         JBUFFER_TRACE(jh, "buffer got unmapped");
1050                                         goto no_journal;
1051                                 }
1052                                 /* The buffer may become locked again at any
1053                                    time if it is redirtied */
1054                         }
1055
1056                         /* journal_clean_data_list() may have got there first */
1057                         if (jh->b_transaction != NULL) {
1058                                 JBUFFER_TRACE(jh, "unfile from commit");
1059                                 __jbd2_journal_temp_unlink_buffer(jh);
1060                                 /* It still points to the committing
1061                                  * transaction; move it to this one so
1062                                  * that the refile assert checks are
1063                                  * happy. */
1064                                 jh->b_transaction = handle->h_transaction;
1065                         }
1066                         /* The buffer will be refiled below */
1067
1068                 }
1069                 /*
1070                  * Special case --- the buffer might actually have been
1071                  * allocated and then immediately deallocated in the previous,
1072                  * committing transaction, so might still be left on that
1073                  * transaction's metadata lists.
1074                  */
1075                 if (jh->b_jlist != BJ_SyncData && jh->b_jlist != BJ_Locked) {
1076                         JBUFFER_TRACE(jh, "not on correct data list: unfile");
1077                         J_ASSERT_JH(jh, jh->b_jlist != BJ_Shadow);
1078                         __jbd2_journal_temp_unlink_buffer(jh);
1079                         jh->b_transaction = handle->h_transaction;
1080                         JBUFFER_TRACE(jh, "file as data");
1081                         __jbd2_journal_file_buffer(jh, handle->h_transaction,
1082                                                 BJ_SyncData);
1083                 }
1084         } else {
1085                 JBUFFER_TRACE(jh, "not on a transaction");
1086                 __jbd2_journal_file_buffer(jh, handle->h_transaction, BJ_SyncData);
1087         }
1088 no_journal:
1089         spin_unlock(&journal->j_list_lock);
1090         jbd_unlock_bh_state(bh);
1091         if (need_brelse) {
1092                 BUFFER_TRACE(bh, "brelse");
1093                 __brelse(bh);
1094         }
1095         JBUFFER_TRACE(jh, "exit");
1096         jbd2_journal_put_journal_head(jh);
1097         return 0;
1098 }
1099
1100 /**
1101  * int jbd2_journal_dirty_metadata() -  mark a buffer as containing dirty metadata
1102  * @handle: transaction to add buffer to.
1103  * @bh: buffer to mark
1104  *
1105  * mark dirty metadata which needs to be journaled as part of the current
1106  * transaction.
1107  *
1108  * The buffer is placed on the transaction's metadata list and is marked
1109  * as belonging to the transaction.
1110  *
1111  * Returns error number or 0 on success.
1112  *
1113  * Special care needs to be taken if the buffer already belongs to the
1114  * current committing transaction (in which case we should have frozen
1115  * data present for that commit).  In that case, we don't relink the
1116  * buffer: that only gets done when the old transaction finally
1117  * completes its commit.
1118  */
1119 int jbd2_journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
1120 {
1121         transaction_t *transaction = handle->h_transaction;
1122         journal_t *journal = transaction->t_journal;
1123         struct journal_head *jh = bh2jh(bh);
1124
1125         jbd_debug(5, "journal_head %p\n", jh);
1126         JBUFFER_TRACE(jh, "entry");
1127         if (is_handle_aborted(handle))
1128                 goto out;
1129
1130         jbd_lock_bh_state(bh);
1131
1132         if (jh->b_modified == 0) {
1133                 /*
1134                  * This buffer's got modified and becoming part
1135                  * of the transaction. This needs to be done
1136                  * once a transaction -bzzz
1137                  */
1138                 jh->b_modified = 1;
1139                 J_ASSERT_JH(jh, handle->h_buffer_credits > 0);
1140                 handle->h_buffer_credits--;
1141         }
1142
1143         /*
1144          * fastpath, to avoid expensive locking.  If this buffer is already
1145          * on the running transaction's metadata list there is nothing to do.
1146          * Nobody can take it off again because there is a handle open.
1147          * I _think_ we're OK here with SMP barriers - a mistaken decision will
1148          * result in this test being false, so we go in and take the locks.
1149          */
1150         if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
1151                 JBUFFER_TRACE(jh, "fastpath");
1152                 J_ASSERT_JH(jh, jh->b_transaction ==
1153                                         journal->j_running_transaction);
1154                 goto out_unlock_bh;
1155         }
1156
1157         set_buffer_jbddirty(bh);
1158
1159         /*
1160          * Metadata already on the current transaction list doesn't
1161          * need to be filed.  Metadata on another transaction's list must
1162          * be committing, and will be refiled once the commit completes:
1163          * leave it alone for now.
1164          */
1165         if (jh->b_transaction != transaction) {
1166                 JBUFFER_TRACE(jh, "already on other transaction");
1167                 J_ASSERT_JH(jh, jh->b_transaction ==
1168                                         journal->j_committing_transaction);
1169                 J_ASSERT_JH(jh, jh->b_next_transaction == transaction);
1170                 /* And this case is illegal: we can't reuse another
1171                  * transaction's data buffer, ever. */
1172                 goto out_unlock_bh;
1173         }
1174
1175         /* That test should have eliminated the following case: */
1176         J_ASSERT_JH(jh, jh->b_frozen_data == 0);
1177
1178         JBUFFER_TRACE(jh, "file as BJ_Metadata");
1179         spin_lock(&journal->j_list_lock);
1180         __jbd2_journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
1181         spin_unlock(&journal->j_list_lock);
1182 out_unlock_bh:
1183         jbd_unlock_bh_state(bh);
1184 out:
1185         JBUFFER_TRACE(jh, "exit");
1186         return 0;
1187 }
1188
1189 /*
1190  * jbd2_journal_release_buffer: undo a get_write_access without any buffer
1191  * updates, if the update decided in the end that it didn't need access.
1192  *
1193  */
1194 void
1195 jbd2_journal_release_buffer(handle_t *handle, struct buffer_head *bh)
1196 {
1197         BUFFER_TRACE(bh, "entry");
1198 }
1199
1200 /**
1201  * void jbd2_journal_forget() - bforget() for potentially-journaled buffers.
1202  * @handle: transaction handle
1203  * @bh:     bh to 'forget'
1204  *
1205  * We can only do the bforget if there are no commits pending against the
1206  * buffer.  If the buffer is dirty in the current running transaction we
1207  * can safely unlink it.
1208  *
1209  * bh may not be a journalled buffer at all - it may be a non-JBD
1210  * buffer which came off the hashtable.  Check for this.
1211  *
1212  * Decrements bh->b_count by one.
1213  *
1214  * Allow this call even if the handle has aborted --- it may be part of
1215  * the caller's cleanup after an abort.
1216  */
1217 int jbd2_journal_forget (handle_t *handle, struct buffer_head *bh)
1218 {
1219         transaction_t *transaction = handle->h_transaction;
1220         journal_t *journal = transaction->t_journal;
1221         struct journal_head *jh;
1222         int drop_reserve = 0;
1223         int err = 0;
1224
1225         BUFFER_TRACE(bh, "entry");
1226
1227         jbd_lock_bh_state(bh);
1228         spin_lock(&journal->j_list_lock);
1229
1230         if (!buffer_jbd(bh))
1231                 goto not_jbd;
1232         jh = bh2jh(bh);
1233
1234         /* Critical error: attempting to delete a bitmap buffer, maybe?
1235          * Don't do any jbd operations, and return an error. */
1236         if (!J_EXPECT_JH(jh, !jh->b_committed_data,
1237                          "inconsistent data on disk")) {
1238                 err = -EIO;
1239                 goto not_jbd;
1240         }
1241
1242         /*
1243          * The buffer's going from the transaction, we must drop
1244          * all references -bzzz
1245          */
1246         jh->b_modified = 0;
1247
1248         if (jh->b_transaction == handle->h_transaction) {
1249                 J_ASSERT_JH(jh, !jh->b_frozen_data);
1250
1251                 /* If we are forgetting a buffer which is already part
1252                  * of this transaction, then we can just drop it from
1253                  * the transaction immediately. */
1254                 clear_buffer_dirty(bh);
1255                 clear_buffer_jbddirty(bh);
1256
1257                 JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
1258
1259                 drop_reserve = 1;
1260
1261                 /*
1262                  * We are no longer going to journal this buffer.
1263                  * However, the commit of this transaction is still
1264                  * important to the buffer: the delete that we are now
1265                  * processing might obsolete an old log entry, so by
1266                  * committing, we can satisfy the buffer's checkpoint.
1267                  *
1268                  * So, if we have a checkpoint on the buffer, we should
1269                  * now refile the buffer on our BJ_Forget list so that
1270                  * we know to remove the checkpoint after we commit.
1271                  */
1272
1273                 if (jh->b_cp_transaction) {
1274                         __jbd2_journal_temp_unlink_buffer(jh);
1275                         __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
1276                 } else {
1277                         __jbd2_journal_unfile_buffer(jh);
1278                         jbd2_journal_remove_journal_head(bh);
1279                         __brelse(bh);
1280                         if (!buffer_jbd(bh)) {
1281                                 spin_unlock(&journal->j_list_lock);
1282                                 jbd_unlock_bh_state(bh);
1283                                 __bforget(bh);
1284                                 goto drop;
1285                         }
1286                 }
1287         } else if (jh->b_transaction) {
1288                 J_ASSERT_JH(jh, (jh->b_transaction ==
1289                                  journal->j_committing_transaction));
1290                 /* However, if the buffer is still owned by a prior
1291                  * (committing) transaction, we can't drop it yet... */
1292                 JBUFFER_TRACE(jh, "belongs to older transaction");
1293                 /* ... but we CAN drop it from the new transaction if we
1294                  * have also modified it since the original commit. */
1295
1296                 if (jh->b_next_transaction) {
1297                         J_ASSERT(jh->b_next_transaction == transaction);
1298                         jh->b_next_transaction = NULL;
1299                         drop_reserve = 1;
1300                 }
1301         }
1302
1303 not_jbd:
1304         spin_unlock(&journal->j_list_lock);
1305         jbd_unlock_bh_state(bh);
1306         __brelse(bh);
1307 drop:
1308         if (drop_reserve) {
1309                 /* no need to reserve log space for this block -bzzz */
1310                 handle->h_buffer_credits++;
1311         }
1312         return err;
1313 }
1314
1315 /**
1316  * int jbd2_journal_stop() - complete a transaction
1317  * @handle: tranaction to complete.
1318  *
1319  * All done for a particular handle.
1320  *
1321  * There is not much action needed here.  We just return any remaining
1322  * buffer credits to the transaction and remove the handle.  The only
1323  * complication is that we need to start a commit operation if the
1324  * filesystem is marked for synchronous update.
1325  *
1326  * jbd2_journal_stop itself will not usually return an error, but it may
1327  * do so in unusual circumstances.  In particular, expect it to
1328  * return -EIO if a jbd2_journal_abort has been executed since the
1329  * transaction began.
1330  */
1331 int jbd2_journal_stop(handle_t *handle)
1332 {
1333         transaction_t *transaction = handle->h_transaction;
1334         journal_t *journal = transaction->t_journal;
1335         int old_handle_count, err;
1336         pid_t pid;
1337
1338         J_ASSERT(journal_current_handle() == handle);
1339
1340         if (is_handle_aborted(handle))
1341                 err = -EIO;
1342         else {
1343                 J_ASSERT(transaction->t_updates > 0);
1344                 err = 0;
1345         }
1346
1347         if (--handle->h_ref > 0) {
1348                 jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
1349                           handle->h_ref);
1350                 return err;
1351         }
1352
1353         jbd_debug(4, "Handle %p going down\n", handle);
1354
1355         /*
1356          * Implement synchronous transaction batching.  If the handle
1357          * was synchronous, don't force a commit immediately.  Let's
1358          * yield and let another thread piggyback onto this transaction.
1359          * Keep doing that while new threads continue to arrive.
1360          * It doesn't cost much - we're about to run a commit and sleep
1361          * on IO anyway.  Speeds up many-threaded, many-dir operations
1362          * by 30x or more...
1363          *
1364          * But don't do this if this process was the most recent one to
1365          * perform a synchronous write.  We do this to detect the case where a
1366          * single process is doing a stream of sync writes.  No point in waiting
1367          * for joiners in that case.
1368          */
1369         pid = current->pid;
1370         if (handle->h_sync && journal->j_last_sync_writer != pid) {
1371                 journal->j_last_sync_writer = pid;
1372                 do {
1373                         old_handle_count = transaction->t_handle_count;
1374                         schedule_timeout_uninterruptible(1);
1375                 } while (old_handle_count != transaction->t_handle_count);
1376         }
1377
1378         current->journal_info = NULL;
1379         spin_lock(&journal->j_state_lock);
1380         spin_lock(&transaction->t_handle_lock);
1381         transaction->t_outstanding_credits -= handle->h_buffer_credits;
1382         transaction->t_updates--;
1383         if (!transaction->t_updates) {
1384                 wake_up(&journal->j_wait_updates);
1385                 if (journal->j_barrier_count)
1386                         wake_up(&journal->j_wait_transaction_locked);
1387         }
1388
1389         /*
1390          * If the handle is marked SYNC, we need to set another commit
1391          * going!  We also want to force a commit if the current
1392          * transaction is occupying too much of the log, or if the
1393          * transaction is too old now.
1394          */
1395         if (handle->h_sync ||
1396                         transaction->t_outstanding_credits >
1397                                 journal->j_max_transaction_buffers ||
1398                         time_after_eq(jiffies, transaction->t_expires)) {
1399                 /* Do this even for aborted journals: an abort still
1400                  * completes the commit thread, it just doesn't write
1401                  * anything to disk. */
1402                 tid_t tid = transaction->t_tid;
1403
1404                 spin_unlock(&transaction->t_handle_lock);
1405                 jbd_debug(2, "transaction too old, requesting commit for "
1406                                         "handle %p\n", handle);
1407                 /* This is non-blocking */
1408                 __jbd2_log_start_commit(journal, transaction->t_tid);
1409                 spin_unlock(&journal->j_state_lock);
1410
1411                 /*
1412                  * Special case: JBD2_SYNC synchronous updates require us
1413                  * to wait for the commit to complete.
1414                  */
1415                 if (handle->h_sync && !(current->flags & PF_MEMALLOC))
1416                         err = jbd2_log_wait_commit(journal, tid);
1417         } else {
1418                 spin_unlock(&transaction->t_handle_lock);
1419                 spin_unlock(&journal->j_state_lock);
1420         }
1421
1422         jbd2_free_handle(handle);
1423         return err;
1424 }
1425
1426 /**int jbd2_journal_force_commit() - force any uncommitted transactions
1427  * @journal: journal to force
1428  *
1429  * For synchronous operations: force any uncommitted transactions
1430  * to disk.  May seem kludgy, but it reuses all the handle batching
1431  * code in a very simple manner.
1432  */
1433 int jbd2_journal_force_commit(journal_t *journal)
1434 {
1435         handle_t *handle;
1436         int ret;
1437
1438         handle = jbd2_journal_start(journal, 1);
1439         if (IS_ERR(handle)) {
1440                 ret = PTR_ERR(handle);
1441         } else {
1442                 handle->h_sync = 1;
1443                 ret = jbd2_journal_stop(handle);
1444         }
1445         return ret;
1446 }
1447
1448 /*
1449  *
1450  * List management code snippets: various functions for manipulating the
1451  * transaction buffer lists.
1452  *
1453  */
1454
1455 /*
1456  * Append a buffer to a transaction list, given the transaction's list head
1457  * pointer.
1458  *
1459  * j_list_lock is held.
1460  *
1461  * jbd_lock_bh_state(jh2bh(jh)) is held.
1462  */
1463
1464 static inline void
1465 __blist_add_buffer(struct journal_head **list, struct journal_head *jh)
1466 {
1467         if (!*list) {
1468                 jh->b_tnext = jh->b_tprev = jh;
1469                 *list = jh;
1470         } else {
1471                 /* Insert at the tail of the list to preserve order */
1472                 struct journal_head *first = *list, *last = first->b_tprev;
1473                 jh->b_tprev = last;
1474                 jh->b_tnext = first;
1475                 last->b_tnext = first->b_tprev = jh;
1476         }
1477 }
1478
1479 /*
1480  * Remove a buffer from a transaction list, given the transaction's list
1481  * head pointer.
1482  *
1483  * Called with j_list_lock held, and the journal may not be locked.
1484  *
1485  * jbd_lock_bh_state(jh2bh(jh)) is held.
1486  */
1487
1488 static inline void
1489 __blist_del_buffer(struct journal_head **list, struct journal_head *jh)
1490 {
1491         if (*list == jh) {
1492                 *list = jh->b_tnext;
1493                 if (*list == jh)
1494                         *list = NULL;
1495         }
1496         jh->b_tprev->b_tnext = jh->b_tnext;
1497         jh->b_tnext->b_tprev = jh->b_tprev;
1498 }
1499
1500 /*
1501  * Remove a buffer from the appropriate transaction list.
1502  *
1503  * Note that this function can *change* the value of
1504  * bh->b_transaction->t_sync_datalist, t_buffers, t_forget,
1505  * t_iobuf_list, t_shadow_list, t_log_list or t_reserved_list.  If the caller
1506  * is holding onto a copy of one of thee pointers, it could go bad.
1507  * Generally the caller needs to re-read the pointer from the transaction_t.
1508  *
1509  * Called under j_list_lock.  The journal may not be locked.
1510  */
1511 void __jbd2_journal_temp_unlink_buffer(struct journal_head *jh)
1512 {
1513         struct journal_head **list = NULL;
1514         transaction_t *transaction;
1515         struct buffer_head *bh = jh2bh(jh);
1516
1517         J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1518         transaction = jh->b_transaction;
1519         if (transaction)
1520                 assert_spin_locked(&transaction->t_journal->j_list_lock);
1521
1522         J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1523         if (jh->b_jlist != BJ_None)
1524                 J_ASSERT_JH(jh, transaction != 0);
1525
1526         switch (jh->b_jlist) {
1527         case BJ_None:
1528                 return;
1529         case BJ_SyncData:
1530                 list = &transaction->t_sync_datalist;
1531                 break;
1532         case BJ_Metadata:
1533                 transaction->t_nr_buffers--;
1534                 J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
1535                 list = &transaction->t_buffers;
1536                 break;
1537         case BJ_Forget:
1538                 list = &transaction->t_forget;
1539                 break;
1540         case BJ_IO:
1541                 list = &transaction->t_iobuf_list;
1542                 break;
1543         case BJ_Shadow:
1544                 list = &transaction->t_shadow_list;
1545                 break;
1546         case BJ_LogCtl:
1547                 list = &transaction->t_log_list;
1548                 break;
1549         case BJ_Reserved:
1550                 list = &transaction->t_reserved_list;
1551                 break;
1552         case BJ_Locked:
1553                 list = &transaction->t_locked_list;
1554                 break;
1555         }
1556
1557         __blist_del_buffer(list, jh);
1558         jh->b_jlist = BJ_None;
1559         if (test_clear_buffer_jbddirty(bh))
1560                 mark_buffer_dirty(bh);  /* Expose it to the VM */
1561 }
1562
1563 void __jbd2_journal_unfile_buffer(struct journal_head *jh)
1564 {
1565         __jbd2_journal_temp_unlink_buffer(jh);
1566         jh->b_transaction = NULL;
1567 }
1568
1569 void jbd2_journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
1570 {
1571         jbd_lock_bh_state(jh2bh(jh));
1572         spin_lock(&journal->j_list_lock);
1573         __jbd2_journal_unfile_buffer(jh);
1574         spin_unlock(&journal->j_list_lock);
1575         jbd_unlock_bh_state(jh2bh(jh));
1576 }
1577
1578 /*
1579  * Called from jbd2_journal_try_to_free_buffers().
1580  *
1581  * Called under jbd_lock_bh_state(bh)
1582  */
1583 static void
1584 __journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
1585 {
1586         struct journal_head *jh;
1587
1588         jh = bh2jh(bh);
1589
1590         if (buffer_locked(bh) || buffer_dirty(bh))
1591                 goto out;
1592
1593         if (jh->b_next_transaction != 0)
1594                 goto out;
1595
1596         spin_lock(&journal->j_list_lock);
1597         if (jh->b_transaction != 0 && jh->b_cp_transaction == 0) {
1598                 if (jh->b_jlist == BJ_SyncData || jh->b_jlist == BJ_Locked) {
1599                         /* A written-back ordered data buffer */
1600                         JBUFFER_TRACE(jh, "release data");
1601                         __jbd2_journal_unfile_buffer(jh);
1602                         jbd2_journal_remove_journal_head(bh);
1603                         __brelse(bh);
1604                 }
1605         } else if (jh->b_cp_transaction != 0 && jh->b_transaction == 0) {
1606                 /* written-back checkpointed metadata buffer */
1607                 if (jh->b_jlist == BJ_None) {
1608                         JBUFFER_TRACE(jh, "remove from checkpoint list");
1609                         __jbd2_journal_remove_checkpoint(jh);
1610                         jbd2_journal_remove_journal_head(bh);
1611                         __brelse(bh);
1612                 }
1613         }
1614         spin_unlock(&journal->j_list_lock);
1615 out:
1616         return;
1617 }
1618
1619
1620 /**
1621  * int jbd2_journal_try_to_free_buffers() - try to free page buffers.
1622  * @journal: journal for operation
1623  * @page: to try and free
1624  * @unused_gfp_mask: unused
1625  *
1626  *
1627  * For all the buffers on this page,
1628  * if they are fully written out ordered data, move them onto BUF_CLEAN
1629  * so try_to_free_buffers() can reap them.
1630  *
1631  * This function returns non-zero if we wish try_to_free_buffers()
1632  * to be called. We do this if the page is releasable by try_to_free_buffers().
1633  * We also do it if the page has locked or dirty buffers and the caller wants
1634  * us to perform sync or async writeout.
1635  *
1636  * This complicates JBD locking somewhat.  We aren't protected by the
1637  * BKL here.  We wish to remove the buffer from its committing or
1638  * running transaction's ->t_datalist via __jbd2_journal_unfile_buffer.
1639  *
1640  * This may *change* the value of transaction_t->t_datalist, so anyone
1641  * who looks at t_datalist needs to lock against this function.
1642  *
1643  * Even worse, someone may be doing a jbd2_journal_dirty_data on this
1644  * buffer.  So we need to lock against that.  jbd2_journal_dirty_data()
1645  * will come out of the lock with the buffer dirty, which makes it
1646  * ineligible for release here.
1647  *
1648  * Who else is affected by this?  hmm...  Really the only contender
1649  * is do_get_write_access() - it could be looking at the buffer while
1650  * journal_try_to_free_buffer() is changing its state.  But that
1651  * cannot happen because we never reallocate freed data as metadata
1652  * while the data is part of a transaction.  Yes?
1653  */
1654 int jbd2_journal_try_to_free_buffers(journal_t *journal,
1655                                 struct page *page, gfp_t unused_gfp_mask)
1656 {
1657         struct buffer_head *head;
1658         struct buffer_head *bh;
1659         int ret = 0;
1660
1661         J_ASSERT(PageLocked(page));
1662
1663         head = page_buffers(page);
1664         bh = head;
1665         do {
1666                 struct journal_head *jh;
1667
1668                 /*
1669                  * We take our own ref against the journal_head here to avoid
1670                  * having to add tons of locking around each instance of
1671                  * jbd2_journal_remove_journal_head() and jbd2_journal_put_journal_head().
1672                  */
1673                 jh = jbd2_journal_grab_journal_head(bh);
1674                 if (!jh)
1675                         continue;
1676
1677                 jbd_lock_bh_state(bh);
1678                 __journal_try_to_free_buffer(journal, bh);
1679                 jbd2_journal_put_journal_head(jh);
1680                 jbd_unlock_bh_state(bh);
1681                 if (buffer_jbd(bh))
1682                         goto busy;
1683         } while ((bh = bh->b_this_page) != head);
1684         ret = try_to_free_buffers(page);
1685 busy:
1686         return ret;
1687 }
1688
1689 /*
1690  * This buffer is no longer needed.  If it is on an older transaction's
1691  * checkpoint list we need to record it on this transaction's forget list
1692  * to pin this buffer (and hence its checkpointing transaction) down until
1693  * this transaction commits.  If the buffer isn't on a checkpoint list, we
1694  * release it.
1695  * Returns non-zero if JBD no longer has an interest in the buffer.
1696  *
1697  * Called under j_list_lock.
1698  *
1699  * Called under jbd_lock_bh_state(bh).
1700  */
1701 static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
1702 {
1703         int may_free = 1;
1704         struct buffer_head *bh = jh2bh(jh);
1705
1706         __jbd2_journal_unfile_buffer(jh);
1707
1708         if (jh->b_cp_transaction) {
1709                 JBUFFER_TRACE(jh, "on running+cp transaction");
1710                 __jbd2_journal_file_buffer(jh, transaction, BJ_Forget);
1711                 clear_buffer_jbddirty(bh);
1712                 may_free = 0;
1713         } else {
1714                 JBUFFER_TRACE(jh, "on running transaction");
1715                 jbd2_journal_remove_journal_head(bh);
1716                 __brelse(bh);
1717         }
1718         return may_free;
1719 }
1720
1721 /*
1722  * jbd2_journal_invalidatepage
1723  *
1724  * This code is tricky.  It has a number of cases to deal with.
1725  *
1726  * There are two invariants which this code relies on:
1727  *
1728  * i_size must be updated on disk before we start calling invalidatepage on the
1729  * data.
1730  *
1731  *  This is done in ext3 by defining an ext3_setattr method which
1732  *  updates i_size before truncate gets going.  By maintaining this
1733  *  invariant, we can be sure that it is safe to throw away any buffers
1734  *  attached to the current transaction: once the transaction commits,
1735  *  we know that the data will not be needed.
1736  *
1737  *  Note however that we can *not* throw away data belonging to the
1738  *  previous, committing transaction!
1739  *
1740  * Any disk blocks which *are* part of the previous, committing
1741  * transaction (and which therefore cannot be discarded immediately) are
1742  * not going to be reused in the new running transaction
1743  *
1744  *  The bitmap committed_data images guarantee this: any block which is
1745  *  allocated in one transaction and removed in the next will be marked
1746  *  as in-use in the committed_data bitmap, so cannot be reused until
1747  *  the next transaction to delete the block commits.  This means that
1748  *  leaving committing buffers dirty is quite safe: the disk blocks
1749  *  cannot be reallocated to a different file and so buffer aliasing is
1750  *  not possible.
1751  *
1752  *
1753  * The above applies mainly to ordered data mode.  In writeback mode we
1754  * don't make guarantees about the order in which data hits disk --- in
1755  * particular we don't guarantee that new dirty data is flushed before
1756  * transaction commit --- so it is always safe just to discard data
1757  * immediately in that mode.  --sct
1758  */
1759
1760 /*
1761  * The journal_unmap_buffer helper function returns zero if the buffer
1762  * concerned remains pinned as an anonymous buffer belonging to an older
1763  * transaction.
1764  *
1765  * We're outside-transaction here.  Either or both of j_running_transaction
1766  * and j_committing_transaction may be NULL.
1767  */
1768 static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh)
1769 {
1770         transaction_t *transaction;
1771         struct journal_head *jh;
1772         int may_free = 1;
1773         int ret;
1774
1775         BUFFER_TRACE(bh, "entry");
1776
1777         /*
1778          * It is safe to proceed here without the j_list_lock because the
1779          * buffers cannot be stolen by try_to_free_buffers as long as we are
1780          * holding the page lock. --sct
1781          */
1782
1783         if (!buffer_jbd(bh))
1784                 goto zap_buffer_unlocked;
1785
1786         spin_lock(&journal->j_state_lock);
1787         jbd_lock_bh_state(bh);
1788         spin_lock(&journal->j_list_lock);
1789
1790         jh = jbd2_journal_grab_journal_head(bh);
1791         if (!jh)
1792                 goto zap_buffer_no_jh;
1793
1794         transaction = jh->b_transaction;
1795         if (transaction == NULL) {
1796                 /* First case: not on any transaction.  If it
1797                  * has no checkpoint link, then we can zap it:
1798                  * it's a writeback-mode buffer so we don't care
1799                  * if it hits disk safely. */
1800                 if (!jh->b_cp_transaction) {
1801                         JBUFFER_TRACE(jh, "not on any transaction: zap");
1802                         goto zap_buffer;
1803                 }
1804
1805                 if (!buffer_dirty(bh)) {
1806                         /* bdflush has written it.  We can drop it now */
1807                         goto zap_buffer;
1808                 }
1809
1810                 /* OK, it must be in the journal but still not
1811                  * written fully to disk: it's metadata or
1812                  * journaled data... */
1813
1814                 if (journal->j_running_transaction) {
1815                         /* ... and once the current transaction has
1816                          * committed, the buffer won't be needed any
1817                          * longer. */
1818                         JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
1819                         ret = __dispose_buffer(jh,
1820                                         journal->j_running_transaction);
1821                         jbd2_journal_put_journal_head(jh);
1822                         spin_unlock(&journal->j_list_lock);
1823                         jbd_unlock_bh_state(bh);
1824                         spin_unlock(&journal->j_state_lock);
1825                         return ret;
1826                 } else {
1827                         /* There is no currently-running transaction. So the
1828                          * orphan record which we wrote for this file must have
1829                          * passed into commit.  We must attach this buffer to
1830                          * the committing transaction, if it exists. */
1831                         if (journal->j_committing_transaction) {
1832                                 JBUFFER_TRACE(jh, "give to committing trans");
1833                                 ret = __dispose_buffer(jh,
1834                                         journal->j_committing_transaction);
1835                                 jbd2_journal_put_journal_head(jh);
1836                                 spin_unlock(&journal->j_list_lock);
1837                                 jbd_unlock_bh_state(bh);
1838                                 spin_unlock(&journal->j_state_lock);
1839                                 return ret;
1840                         } else {
1841                                 /* The orphan record's transaction has
1842                                  * committed.  We can cleanse this buffer */
1843                                 clear_buffer_jbddirty(bh);
1844                                 goto zap_buffer;
1845                         }
1846                 }
1847         } else if (transaction == journal->j_committing_transaction) {
1848                 JBUFFER_TRACE(jh, "on committing transaction");
1849                 if (jh->b_jlist == BJ_Locked) {
1850                         /*
1851                          * The buffer is on the committing transaction's locked
1852                          * list.  We have the buffer locked, so I/O has
1853                          * completed.  So we can nail the buffer now.
1854                          */
1855                         may_free = __dispose_buffer(jh, transaction);
1856                         goto zap_buffer;
1857                 }
1858                 /*
1859                  * If it is committing, we simply cannot touch it.  We
1860                  * can remove it's next_transaction pointer from the
1861                  * running transaction if that is set, but nothing
1862                  * else. */
1863                 set_buffer_freed(bh);
1864                 if (jh->b_next_transaction) {
1865                         J_ASSERT(jh->b_next_transaction ==
1866                                         journal->j_running_transaction);
1867                         jh->b_next_transaction = NULL;
1868                 }
1869                 jbd2_journal_put_journal_head(jh);
1870                 spin_unlock(&journal->j_list_lock);
1871                 jbd_unlock_bh_state(bh);
1872                 spin_unlock(&journal->j_state_lock);
1873                 return 0;
1874         } else {
1875                 /* Good, the buffer belongs to the running transaction.
1876                  * We are writing our own transaction's data, not any
1877                  * previous one's, so it is safe to throw it away
1878                  * (remember that we expect the filesystem to have set
1879                  * i_size already for this truncate so recovery will not
1880                  * expose the disk blocks we are discarding here.) */
1881                 J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
1882                 JBUFFER_TRACE(jh, "on running transaction");
1883                 may_free = __dispose_buffer(jh, transaction);
1884         }
1885
1886 zap_buffer:
1887         jbd2_journal_put_journal_head(jh);
1888 zap_buffer_no_jh:
1889         spin_unlock(&journal->j_list_lock);
1890         jbd_unlock_bh_state(bh);
1891         spin_unlock(&journal->j_state_lock);
1892 zap_buffer_unlocked:
1893         clear_buffer_dirty(bh);
1894         J_ASSERT_BH(bh, !buffer_jbddirty(bh));
1895         clear_buffer_mapped(bh);
1896         clear_buffer_req(bh);
1897         clear_buffer_new(bh);
1898         bh->b_bdev = NULL;
1899         return may_free;
1900 }
1901
1902 /**
1903  * void jbd2_journal_invalidatepage()
1904  * @journal: journal to use for flush...
1905  * @page:    page to flush
1906  * @offset:  length of page to invalidate.
1907  *
1908  * Reap page buffers containing data after offset in page.
1909  *
1910  */
1911 void jbd2_journal_invalidatepage(journal_t *journal,
1912                       struct page *page,
1913                       unsigned long offset)
1914 {
1915         struct buffer_head *head, *bh, *next;
1916         unsigned int curr_off = 0;
1917         int may_free = 1;
1918
1919         if (!PageLocked(page))
1920                 BUG();
1921         if (!page_has_buffers(page))
1922                 return;
1923
1924         /* We will potentially be playing with lists other than just the
1925          * data lists (especially for journaled data mode), so be
1926          * cautious in our locking. */
1927
1928         head = bh = page_buffers(page);
1929         do {
1930                 unsigned int next_off = curr_off + bh->b_size;
1931                 next = bh->b_this_page;
1932
1933                 if (offset <= curr_off) {
1934                         /* This block is wholly outside the truncation point */
1935                         lock_buffer(bh);
1936                         may_free &= journal_unmap_buffer(journal, bh);
1937                         unlock_buffer(bh);
1938                 }
1939                 curr_off = next_off;
1940                 bh = next;
1941
1942         } while (bh != head);
1943
1944         if (!offset) {
1945                 if (may_free && try_to_free_buffers(page))
1946                         J_ASSERT(!page_has_buffers(page));
1947         }
1948 }
1949
1950 /*
1951  * File a buffer on the given transaction list.
1952  */
1953 void __jbd2_journal_file_buffer(struct journal_head *jh,
1954                         transaction_t *transaction, int jlist)
1955 {
1956         struct journal_head **list = NULL;
1957         int was_dirty = 0;
1958         struct buffer_head *bh = jh2bh(jh);
1959
1960         J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
1961         assert_spin_locked(&transaction->t_journal->j_list_lock);
1962
1963         J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
1964         J_ASSERT_JH(jh, jh->b_transaction == transaction ||
1965                                 jh->b_transaction == 0);
1966
1967         if (jh->b_transaction && jh->b_jlist == jlist)
1968                 return;
1969
1970         /* The following list of buffer states needs to be consistent
1971          * with __jbd_unexpected_dirty_buffer()'s handling of dirty
1972          * state. */
1973
1974         if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
1975             jlist == BJ_Shadow || jlist == BJ_Forget) {
1976                 if (test_clear_buffer_dirty(bh) ||
1977                     test_clear_buffer_jbddirty(bh))
1978                         was_dirty = 1;
1979         }
1980
1981         if (jh->b_transaction)
1982                 __jbd2_journal_temp_unlink_buffer(jh);
1983         jh->b_transaction = transaction;
1984
1985         switch (jlist) {
1986         case BJ_None:
1987                 J_ASSERT_JH(jh, !jh->b_committed_data);
1988                 J_ASSERT_JH(jh, !jh->b_frozen_data);
1989                 return;
1990         case BJ_SyncData:
1991                 list = &transaction->t_sync_datalist;
1992                 break;
1993         case BJ_Metadata:
1994                 transaction->t_nr_buffers++;
1995                 list = &transaction->t_buffers;
1996                 break;
1997         case BJ_Forget:
1998                 list = &transaction->t_forget;
1999                 break;
2000         case BJ_IO:
2001                 list = &transaction->t_iobuf_list;
2002                 break;
2003         case BJ_Shadow:
2004                 list = &transaction->t_shadow_list;
2005                 break;
2006         case BJ_LogCtl:
2007                 list = &transaction->t_log_list;
2008                 break;
2009         case BJ_Reserved:
2010                 list = &transaction->t_reserved_list;
2011                 break;
2012         case BJ_Locked:
2013                 list =  &transaction->t_locked_list;
2014                 break;
2015         }
2016
2017         __blist_add_buffer(list, jh);
2018         jh->b_jlist = jlist;
2019
2020         if (was_dirty)
2021                 set_buffer_jbddirty(bh);
2022 }
2023
2024 void jbd2_journal_file_buffer(struct journal_head *jh,
2025                                 transaction_t *transaction, int jlist)
2026 {
2027         jbd_lock_bh_state(jh2bh(jh));
2028         spin_lock(&transaction->t_journal->j_list_lock);
2029         __jbd2_journal_file_buffer(jh, transaction, jlist);
2030         spin_unlock(&transaction->t_journal->j_list_lock);
2031         jbd_unlock_bh_state(jh2bh(jh));
2032 }
2033
2034 /*
2035  * Remove a buffer from its current buffer list in preparation for
2036  * dropping it from its current transaction entirely.  If the buffer has
2037  * already started to be used by a subsequent transaction, refile the
2038  * buffer on that transaction's metadata list.
2039  *
2040  * Called under journal->j_list_lock
2041  *
2042  * Called under jbd_lock_bh_state(jh2bh(jh))
2043  */
2044 void __jbd2_journal_refile_buffer(struct journal_head *jh)
2045 {
2046         int was_dirty;
2047         struct buffer_head *bh = jh2bh(jh);
2048
2049         J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
2050         if (jh->b_transaction)
2051                 assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
2052
2053         /* If the buffer is now unused, just drop it. */
2054         if (jh->b_next_transaction == NULL) {
2055                 __jbd2_journal_unfile_buffer(jh);
2056                 return;
2057         }
2058
2059         /*
2060          * It has been modified by a later transaction: add it to the new
2061          * transaction's metadata list.
2062          */
2063
2064         was_dirty = test_clear_buffer_jbddirty(bh);
2065         __jbd2_journal_temp_unlink_buffer(jh);
2066         jh->b_transaction = jh->b_next_transaction;
2067         jh->b_next_transaction = NULL;
2068         __jbd2_journal_file_buffer(jh, jh->b_transaction,
2069                                 was_dirty ? BJ_Metadata : BJ_Reserved);
2070         J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
2071
2072         if (was_dirty)
2073                 set_buffer_jbddirty(bh);
2074 }
2075
2076 /*
2077  * For the unlocked version of this call, also make sure that any
2078  * hanging journal_head is cleaned up if necessary.
2079  *
2080  * __jbd2_journal_refile_buffer is usually called as part of a single locked
2081  * operation on a buffer_head, in which the caller is probably going to
2082  * be hooking the journal_head onto other lists.  In that case it is up
2083  * to the caller to remove the journal_head if necessary.  For the
2084  * unlocked jbd2_journal_refile_buffer call, the caller isn't going to be
2085  * doing anything else to the buffer so we need to do the cleanup
2086  * ourselves to avoid a jh leak.
2087  *
2088  * *** The journal_head may be freed by this call! ***
2089  */
2090 void jbd2_journal_refile_buffer(journal_t *journal, struct journal_head *jh)
2091 {
2092         struct buffer_head *bh = jh2bh(jh);
2093
2094         jbd_lock_bh_state(bh);
2095         spin_lock(&journal->j_list_lock);
2096
2097         __jbd2_journal_refile_buffer(jh);
2098         jbd_unlock_bh_state(bh);
2099         jbd2_journal_remove_journal_head(bh);
2100
2101         spin_unlock(&journal->j_list_lock);
2102         __brelse(bh);
2103 }