added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / fs / jbd / commit.c
blob30de111d6049f830c0bf06c01d58b5af4b9576ed
1 /*
2 * linux/fs/jbd/commit.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 * Journal commit routines for the generic filesystem journaling code;
13 * part of the ext2fs journaling system.
16 #include <linux/time.h>
17 #include <linux/fs.h>
18 #include <linux/jbd.h>
19 #include <linux/errno.h>
20 #include <linux/slab.h>
21 #include <linux/mm.h>
22 #include <linux/pagemap.h>
25 * Default IO end handler for temporary BJ_IO buffer_heads.
27 static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
29 BUFFER_TRACE(bh, "");
30 if (uptodate)
31 set_buffer_uptodate(bh);
32 else
33 clear_buffer_uptodate(bh);
34 unlock_buffer(bh);
38 * When an ext3-ordered file is truncated, it is possible that many pages are
39 * not successfully freed, because they are attached to a committing transaction.
40 * After the transaction commits, these pages are left on the LRU, with no
41 * ->mapping, and with attached buffers. These pages are trivially reclaimable
42 * by the VM, but their apparent absence upsets the VM accounting, and it makes
43 * the numbers in /proc/meminfo look odd.
45 * So here, we have a buffer which has just come off the forget list. Look to
46 * see if we can strip all buffers from the backing page.
48 * Called under journal->j_list_lock. The caller provided us with a ref
49 * against the buffer, and we drop that here.
51 static void release_buffer_page(struct buffer_head *bh)
53 struct page *page;
55 if (buffer_dirty(bh))
56 goto nope;
57 if (atomic_read(&bh->b_count) != 1)
58 goto nope;
59 page = bh->b_page;
60 if (!page)
61 goto nope;
62 if (page->mapping)
63 goto nope;
65 /* OK, it's a truncated page */
66 if (!trylock_page(page))
67 goto nope;
69 page_cache_get(page);
70 __brelse(bh);
71 try_to_free_buffers(page);
72 unlock_page(page);
73 page_cache_release(page);
74 return;
76 nope:
77 __brelse(bh);
81 * Decrement reference counter for data buffer. If it has been marked
82 * 'BH_Freed', release it and the page to which it belongs if possible.
84 static void release_data_buffer(struct buffer_head *bh)
86 if (buffer_freed(bh)) {
87 clear_buffer_freed(bh);
88 release_buffer_page(bh);
89 } else
90 put_bh(bh);
94 * Try to acquire jbd_lock_bh_state() against the buffer, when j_list_lock is
95 * held. For ranking reasons we must trylock. If we lose, schedule away and
96 * return 0. j_list_lock is dropped in this case.
98 static int inverted_lock(journal_t *journal, struct buffer_head *bh)
100 if (!jbd_trylock_bh_state(bh)) {
101 spin_unlock(&journal->j_list_lock);
102 schedule();
103 return 0;
105 return 1;
108 /* Done it all: now write the commit record. We should have
109 * cleaned up our previous buffers by now, so if we are in abort
110 * mode we can now just skip the rest of the journal write
111 * entirely.
113 * Returns 1 if the journal needs to be aborted or 0 on success
115 static int journal_write_commit_record(journal_t *journal,
116 transaction_t *commit_transaction)
118 struct journal_head *descriptor;
119 struct buffer_head *bh;
120 journal_header_t *header;
121 int ret;
122 int barrier_done = 0;
124 if (is_journal_aborted(journal))
125 return 0;
127 descriptor = journal_get_descriptor_buffer(journal);
128 if (!descriptor)
129 return 1;
131 bh = jh2bh(descriptor);
133 header = (journal_header_t *)(bh->b_data);
134 header->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER);
135 header->h_blocktype = cpu_to_be32(JFS_COMMIT_BLOCK);
136 header->h_sequence = cpu_to_be32(commit_transaction->t_tid);
138 JBUFFER_TRACE(descriptor, "write commit block");
139 set_buffer_dirty(bh);
140 if (journal->j_flags & JFS_BARRIER) {
141 set_buffer_ordered(bh);
142 barrier_done = 1;
144 ret = sync_dirty_buffer(bh);
145 if (barrier_done)
146 clear_buffer_ordered(bh);
147 /* is it possible for another commit to fail at roughly
148 * the same time as this one? If so, we don't want to
149 * trust the barrier flag in the super, but instead want
150 * to remember if we sent a barrier request
152 if (ret == -EOPNOTSUPP && barrier_done) {
153 char b[BDEVNAME_SIZE];
155 printk(KERN_WARNING
156 "JBD: barrier-based sync failed on %s - "
157 "disabling barriers\n",
158 bdevname(journal->j_dev, b));
159 spin_lock(&journal->j_state_lock);
160 journal->j_flags &= ~JFS_BARRIER;
161 spin_unlock(&journal->j_state_lock);
163 /* And try again, without the barrier */
164 set_buffer_uptodate(bh);
165 set_buffer_dirty(bh);
166 ret = sync_dirty_buffer(bh);
168 put_bh(bh); /* One for getblk() */
169 journal_put_journal_head(descriptor);
171 return (ret == -EIO);
174 static void journal_do_submit_data(struct buffer_head **wbuf, int bufs)
176 int i;
178 for (i = 0; i < bufs; i++) {
179 wbuf[i]->b_end_io = end_buffer_write_sync;
180 /* We use-up our safety reference in submit_bh() */
181 submit_bh(WRITE, wbuf[i]);
186 * Submit all the data buffers to disk
188 static int journal_submit_data_buffers(journal_t *journal,
189 transaction_t *commit_transaction)
191 struct journal_head *jh;
192 struct buffer_head *bh;
193 int locked;
194 int bufs = 0;
195 struct buffer_head **wbuf = journal->j_wbuf;
196 int err = 0;
199 * Whenever we unlock the journal and sleep, things can get added
200 * onto ->t_sync_datalist, so we have to keep looping back to
201 * write_out_data until we *know* that the list is empty.
203 * Cleanup any flushed data buffers from the data list. Even in
204 * abort mode, we want to flush this out as soon as possible.
206 write_out_data:
207 cond_resched();
208 spin_lock(&journal->j_list_lock);
210 while (commit_transaction->t_sync_datalist) {
211 jh = commit_transaction->t_sync_datalist;
212 bh = jh2bh(jh);
213 locked = 0;
215 /* Get reference just to make sure buffer does not disappear
216 * when we are forced to drop various locks */
217 get_bh(bh);
218 /* If the buffer is dirty, we need to submit IO and hence
219 * we need the buffer lock. We try to lock the buffer without
220 * blocking. If we fail, we need to drop j_list_lock and do
221 * blocking lock_buffer().
223 if (buffer_dirty(bh)) {
224 if (!trylock_buffer(bh)) {
225 BUFFER_TRACE(bh, "needs blocking lock");
226 spin_unlock(&journal->j_list_lock);
227 /* Write out all data to prevent deadlocks */
228 journal_do_submit_data(wbuf, bufs);
229 bufs = 0;
230 lock_buffer(bh);
231 spin_lock(&journal->j_list_lock);
233 locked = 1;
235 /* We have to get bh_state lock. Again out of order, sigh. */
236 if (!inverted_lock(journal, bh)) {
237 jbd_lock_bh_state(bh);
238 spin_lock(&journal->j_list_lock);
240 /* Someone already cleaned up the buffer? */
241 if (!buffer_jbd(bh) || bh2jh(bh) != jh
242 || jh->b_transaction != commit_transaction
243 || jh->b_jlist != BJ_SyncData) {
244 jbd_unlock_bh_state(bh);
245 if (locked)
246 unlock_buffer(bh);
247 BUFFER_TRACE(bh, "already cleaned up");
248 release_data_buffer(bh);
249 continue;
251 if (locked && test_clear_buffer_dirty(bh)) {
252 BUFFER_TRACE(bh, "needs writeout, adding to array");
253 wbuf[bufs++] = bh;
254 __journal_file_buffer(jh, commit_transaction,
255 BJ_Locked);
256 jbd_unlock_bh_state(bh);
257 if (bufs == journal->j_wbufsize) {
258 spin_unlock(&journal->j_list_lock);
259 journal_do_submit_data(wbuf, bufs);
260 bufs = 0;
261 goto write_out_data;
263 } else if (!locked && buffer_locked(bh)) {
264 __journal_file_buffer(jh, commit_transaction,
265 BJ_Locked);
266 jbd_unlock_bh_state(bh);
267 put_bh(bh);
268 } else {
269 BUFFER_TRACE(bh, "writeout complete: unfile");
270 if (unlikely(!buffer_uptodate(bh)))
271 err = -EIO;
272 __journal_unfile_buffer(jh);
273 jbd_unlock_bh_state(bh);
274 if (locked)
275 unlock_buffer(bh);
276 journal_remove_journal_head(bh);
277 /* One for our safety reference, other for
278 * journal_remove_journal_head() */
279 put_bh(bh);
280 release_data_buffer(bh);
283 if (need_resched() || spin_needbreak(&journal->j_list_lock)) {
284 spin_unlock(&journal->j_list_lock);
285 goto write_out_data;
288 spin_unlock(&journal->j_list_lock);
289 journal_do_submit_data(wbuf, bufs);
291 return err;
295 * journal_commit_transaction
297 * The primary function for committing a transaction to the log. This
298 * function is called by the journal thread to begin a complete commit.
300 void journal_commit_transaction(journal_t *journal)
302 transaction_t *commit_transaction;
303 struct journal_head *jh, *new_jh, *descriptor;
304 struct buffer_head **wbuf = journal->j_wbuf;
305 int bufs;
306 int flags;
307 int err;
308 unsigned long blocknr;
309 ktime_t start_time;
310 u64 commit_time;
311 char *tagp = NULL;
312 journal_header_t *header;
313 journal_block_tag_t *tag = NULL;
314 int space_left = 0;
315 int first_tag = 0;
316 int tag_flag;
317 int i;
320 * First job: lock down the current transaction and wait for
321 * all outstanding updates to complete.
324 #ifdef COMMIT_STATS
325 spin_lock(&journal->j_list_lock);
326 summarise_journal_usage(journal);
327 spin_unlock(&journal->j_list_lock);
328 #endif
330 /* Do we need to erase the effects of a prior journal_flush? */
331 if (journal->j_flags & JFS_FLUSHED) {
332 jbd_debug(3, "super block updated\n");
333 journal_update_superblock(journal, 1);
334 } else {
335 jbd_debug(3, "superblock not updated\n");
338 J_ASSERT(journal->j_running_transaction != NULL);
339 J_ASSERT(journal->j_committing_transaction == NULL);
341 commit_transaction = journal->j_running_transaction;
342 J_ASSERT(commit_transaction->t_state == T_RUNNING);
344 jbd_debug(1, "JBD: starting commit of transaction %d\n",
345 commit_transaction->t_tid);
347 spin_lock(&journal->j_state_lock);
348 commit_transaction->t_state = T_LOCKED;
350 spin_lock(&commit_transaction->t_handle_lock);
351 while (commit_transaction->t_updates) {
352 DEFINE_WAIT(wait);
354 prepare_to_wait(&journal->j_wait_updates, &wait,
355 TASK_UNINTERRUPTIBLE);
356 if (commit_transaction->t_updates) {
357 spin_unlock(&commit_transaction->t_handle_lock);
358 spin_unlock(&journal->j_state_lock);
359 schedule();
360 spin_lock(&journal->j_state_lock);
361 spin_lock(&commit_transaction->t_handle_lock);
363 finish_wait(&journal->j_wait_updates, &wait);
365 spin_unlock(&commit_transaction->t_handle_lock);
367 J_ASSERT (commit_transaction->t_outstanding_credits <=
368 journal->j_max_transaction_buffers);
371 * First thing we are allowed to do is to discard any remaining
372 * BJ_Reserved buffers. Note, it is _not_ permissible to assume
373 * that there are no such buffers: if a large filesystem
374 * operation like a truncate needs to split itself over multiple
375 * transactions, then it may try to do a journal_restart() while
376 * there are still BJ_Reserved buffers outstanding. These must
377 * be released cleanly from the current transaction.
379 * In this case, the filesystem must still reserve write access
380 * again before modifying the buffer in the new transaction, but
381 * we do not require it to remember exactly which old buffers it
382 * has reserved. This is consistent with the existing behaviour
383 * that multiple journal_get_write_access() calls to the same
384 * buffer are perfectly permissable.
386 while (commit_transaction->t_reserved_list) {
387 jh = commit_transaction->t_reserved_list;
388 JBUFFER_TRACE(jh, "reserved, unused: refile");
390 * A journal_get_undo_access()+journal_release_buffer() may
391 * leave undo-committed data.
393 if (jh->b_committed_data) {
394 struct buffer_head *bh = jh2bh(jh);
396 jbd_lock_bh_state(bh);
397 jbd_free(jh->b_committed_data, bh->b_size);
398 jh->b_committed_data = NULL;
399 jbd_unlock_bh_state(bh);
401 journal_refile_buffer(journal, jh);
405 * Now try to drop any written-back buffers from the journal's
406 * checkpoint lists. We do this *before* commit because it potentially
407 * frees some memory
409 spin_lock(&journal->j_list_lock);
410 __journal_clean_checkpoint_list(journal);
411 spin_unlock(&journal->j_list_lock);
413 jbd_debug (3, "JBD: commit phase 1\n");
416 * Switch to a new revoke table.
418 journal_switch_revoke_table(journal);
420 commit_transaction->t_state = T_FLUSH;
421 journal->j_committing_transaction = commit_transaction;
422 journal->j_running_transaction = NULL;
423 start_time = ktime_get();
424 commit_transaction->t_log_start = journal->j_head;
425 wake_up(&journal->j_wait_transaction_locked);
426 spin_unlock(&journal->j_state_lock);
428 jbd_debug (3, "JBD: commit phase 2\n");
431 * Now start flushing things to disk, in the order they appear
432 * on the transaction lists. Data blocks go first.
434 err = journal_submit_data_buffers(journal, commit_transaction);
437 * Wait for all previously submitted IO to complete.
439 spin_lock(&journal->j_list_lock);
440 while (commit_transaction->t_locked_list) {
441 struct buffer_head *bh;
443 jh = commit_transaction->t_locked_list->b_tprev;
444 bh = jh2bh(jh);
445 get_bh(bh);
446 if (buffer_locked(bh)) {
447 spin_unlock(&journal->j_list_lock);
448 wait_on_buffer(bh);
449 spin_lock(&journal->j_list_lock);
451 if (unlikely(!buffer_uptodate(bh))) {
452 if (!trylock_page(bh->b_page)) {
453 spin_unlock(&journal->j_list_lock);
454 lock_page(bh->b_page);
455 spin_lock(&journal->j_list_lock);
457 if (bh->b_page->mapping)
458 set_bit(AS_EIO, &bh->b_page->mapping->flags);
460 unlock_page(bh->b_page);
461 SetPageError(bh->b_page);
462 err = -EIO;
464 if (!inverted_lock(journal, bh)) {
465 put_bh(bh);
466 spin_lock(&journal->j_list_lock);
467 continue;
469 if (buffer_jbd(bh) && bh2jh(bh) == jh &&
470 jh->b_transaction == commit_transaction &&
471 jh->b_jlist == BJ_Locked) {
472 __journal_unfile_buffer(jh);
473 jbd_unlock_bh_state(bh);
474 journal_remove_journal_head(bh);
475 put_bh(bh);
476 } else {
477 jbd_unlock_bh_state(bh);
479 release_data_buffer(bh);
480 cond_resched_lock(&journal->j_list_lock);
482 spin_unlock(&journal->j_list_lock);
484 if (err) {
485 char b[BDEVNAME_SIZE];
487 printk(KERN_WARNING
488 "JBD: Detected IO errors while flushing file data "
489 "on %s\n", bdevname(journal->j_fs_dev, b));
490 if (journal->j_flags & JFS_ABORT_ON_SYNCDATA_ERR)
491 journal_abort(journal, err);
492 err = 0;
495 journal_write_revoke_records(journal, commit_transaction);
498 * If we found any dirty or locked buffers, then we should have
499 * looped back up to the write_out_data label. If there weren't
500 * any then journal_clean_data_list should have wiped the list
501 * clean by now, so check that it is in fact empty.
503 J_ASSERT (commit_transaction->t_sync_datalist == NULL);
505 jbd_debug (3, "JBD: commit phase 3\n");
508 * Way to go: we have now written out all of the data for a
509 * transaction! Now comes the tricky part: we need to write out
510 * metadata. Loop over the transaction's entire buffer list:
512 spin_lock(&journal->j_state_lock);
513 commit_transaction->t_state = T_COMMIT;
514 spin_unlock(&journal->j_state_lock);
516 J_ASSERT(commit_transaction->t_nr_buffers <=
517 commit_transaction->t_outstanding_credits);
519 descriptor = NULL;
520 bufs = 0;
521 while (commit_transaction->t_buffers) {
523 /* Find the next buffer to be journaled... */
525 jh = commit_transaction->t_buffers;
527 /* If we're in abort mode, we just un-journal the buffer and
528 release it. */
530 if (is_journal_aborted(journal)) {
531 clear_buffer_jbddirty(jh2bh(jh));
532 JBUFFER_TRACE(jh, "journal is aborting: refile");
533 journal_refile_buffer(journal, jh);
534 /* If that was the last one, we need to clean up
535 * any descriptor buffers which may have been
536 * already allocated, even if we are now
537 * aborting. */
538 if (!commit_transaction->t_buffers)
539 goto start_journal_io;
540 continue;
543 /* Make sure we have a descriptor block in which to
544 record the metadata buffer. */
546 if (!descriptor) {
547 struct buffer_head *bh;
549 J_ASSERT (bufs == 0);
551 jbd_debug(4, "JBD: get descriptor\n");
553 descriptor = journal_get_descriptor_buffer(journal);
554 if (!descriptor) {
555 journal_abort(journal, -EIO);
556 continue;
559 bh = jh2bh(descriptor);
560 jbd_debug(4, "JBD: got buffer %llu (%p)\n",
561 (unsigned long long)bh->b_blocknr, bh->b_data);
562 header = (journal_header_t *)&bh->b_data[0];
563 header->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER);
564 header->h_blocktype = cpu_to_be32(JFS_DESCRIPTOR_BLOCK);
565 header->h_sequence = cpu_to_be32(commit_transaction->t_tid);
567 tagp = &bh->b_data[sizeof(journal_header_t)];
568 space_left = bh->b_size - sizeof(journal_header_t);
569 first_tag = 1;
570 set_buffer_jwrite(bh);
571 set_buffer_dirty(bh);
572 wbuf[bufs++] = bh;
574 /* Record it so that we can wait for IO
575 completion later */
576 BUFFER_TRACE(bh, "ph3: file as descriptor");
577 journal_file_buffer(descriptor, commit_transaction,
578 BJ_LogCtl);
581 /* Where is the buffer to be written? */
583 err = journal_next_log_block(journal, &blocknr);
584 /* If the block mapping failed, just abandon the buffer
585 and repeat this loop: we'll fall into the
586 refile-on-abort condition above. */
587 if (err) {
588 journal_abort(journal, err);
589 continue;
593 * start_this_handle() uses t_outstanding_credits to determine
594 * the free space in the log, but this counter is changed
595 * by journal_next_log_block() also.
597 commit_transaction->t_outstanding_credits--;
599 /* Bump b_count to prevent truncate from stumbling over
600 the shadowed buffer! @@@ This can go if we ever get
601 rid of the BJ_IO/BJ_Shadow pairing of buffers. */
602 atomic_inc(&jh2bh(jh)->b_count);
604 /* Make a temporary IO buffer with which to write it out
605 (this will requeue both the metadata buffer and the
606 temporary IO buffer). new_bh goes on BJ_IO*/
608 set_bit(BH_JWrite, &jh2bh(jh)->b_state);
610 * akpm: journal_write_metadata_buffer() sets
611 * new_bh->b_transaction to commit_transaction.
612 * We need to clean this up before we release new_bh
613 * (which is of type BJ_IO)
615 JBUFFER_TRACE(jh, "ph3: write metadata");
616 flags = journal_write_metadata_buffer(commit_transaction,
617 jh, &new_jh, blocknr);
618 set_bit(BH_JWrite, &jh2bh(new_jh)->b_state);
619 wbuf[bufs++] = jh2bh(new_jh);
621 /* Record the new block's tag in the current descriptor
622 buffer */
624 tag_flag = 0;
625 if (flags & 1)
626 tag_flag |= JFS_FLAG_ESCAPE;
627 if (!first_tag)
628 tag_flag |= JFS_FLAG_SAME_UUID;
630 tag = (journal_block_tag_t *) tagp;
631 tag->t_blocknr = cpu_to_be32(jh2bh(jh)->b_blocknr);
632 tag->t_flags = cpu_to_be32(tag_flag);
633 tagp += sizeof(journal_block_tag_t);
634 space_left -= sizeof(journal_block_tag_t);
636 if (first_tag) {
637 memcpy (tagp, journal->j_uuid, 16);
638 tagp += 16;
639 space_left -= 16;
640 first_tag = 0;
643 /* If there's no more to do, or if the descriptor is full,
644 let the IO rip! */
646 if (bufs == journal->j_wbufsize ||
647 commit_transaction->t_buffers == NULL ||
648 space_left < sizeof(journal_block_tag_t) + 16) {
650 jbd_debug(4, "JBD: Submit %d IOs\n", bufs);
652 /* Write an end-of-descriptor marker before
653 submitting the IOs. "tag" still points to
654 the last tag we set up. */
656 tag->t_flags |= cpu_to_be32(JFS_FLAG_LAST_TAG);
658 start_journal_io:
659 for (i = 0; i < bufs; i++) {
660 struct buffer_head *bh = wbuf[i];
661 lock_buffer(bh);
662 clear_buffer_dirty(bh);
663 set_buffer_uptodate(bh);
664 bh->b_end_io = journal_end_buffer_io_sync;
665 submit_bh(WRITE, bh);
667 cond_resched();
669 /* Force a new descriptor to be generated next
670 time round the loop. */
671 descriptor = NULL;
672 bufs = 0;
676 /* Lo and behold: we have just managed to send a transaction to
677 the log. Before we can commit it, wait for the IO so far to
678 complete. Control buffers being written are on the
679 transaction's t_log_list queue, and metadata buffers are on
680 the t_iobuf_list queue.
682 Wait for the buffers in reverse order. That way we are
683 less likely to be woken up until all IOs have completed, and
684 so we incur less scheduling load.
687 jbd_debug(3, "JBD: commit phase 4\n");
690 * akpm: these are BJ_IO, and j_list_lock is not needed.
691 * See __journal_try_to_free_buffer.
693 wait_for_iobuf:
694 while (commit_transaction->t_iobuf_list != NULL) {
695 struct buffer_head *bh;
697 jh = commit_transaction->t_iobuf_list->b_tprev;
698 bh = jh2bh(jh);
699 if (buffer_locked(bh)) {
700 wait_on_buffer(bh);
701 goto wait_for_iobuf;
703 if (cond_resched())
704 goto wait_for_iobuf;
706 if (unlikely(!buffer_uptodate(bh)))
707 err = -EIO;
709 clear_buffer_jwrite(bh);
711 JBUFFER_TRACE(jh, "ph4: unfile after journal write");
712 journal_unfile_buffer(journal, jh);
715 * ->t_iobuf_list should contain only dummy buffer_heads
716 * which were created by journal_write_metadata_buffer().
718 BUFFER_TRACE(bh, "dumping temporary bh");
719 journal_put_journal_head(jh);
720 __brelse(bh);
721 J_ASSERT_BH(bh, atomic_read(&bh->b_count) == 0);
722 free_buffer_head(bh);
724 /* We also have to unlock and free the corresponding
725 shadowed buffer */
726 jh = commit_transaction->t_shadow_list->b_tprev;
727 bh = jh2bh(jh);
728 clear_bit(BH_JWrite, &bh->b_state);
729 J_ASSERT_BH(bh, buffer_jbddirty(bh));
731 /* The metadata is now released for reuse, but we need
732 to remember it against this transaction so that when
733 we finally commit, we can do any checkpointing
734 required. */
735 JBUFFER_TRACE(jh, "file as BJ_Forget");
736 journal_file_buffer(jh, commit_transaction, BJ_Forget);
737 /* Wake up any transactions which were waiting for this
738 IO to complete */
739 wake_up_bit(&bh->b_state, BH_Unshadow);
740 JBUFFER_TRACE(jh, "brelse shadowed buffer");
741 __brelse(bh);
744 J_ASSERT (commit_transaction->t_shadow_list == NULL);
746 jbd_debug(3, "JBD: commit phase 5\n");
748 /* Here we wait for the revoke record and descriptor record buffers */
749 wait_for_ctlbuf:
750 while (commit_transaction->t_log_list != NULL) {
751 struct buffer_head *bh;
753 jh = commit_transaction->t_log_list->b_tprev;
754 bh = jh2bh(jh);
755 if (buffer_locked(bh)) {
756 wait_on_buffer(bh);
757 goto wait_for_ctlbuf;
759 if (cond_resched())
760 goto wait_for_ctlbuf;
762 if (unlikely(!buffer_uptodate(bh)))
763 err = -EIO;
765 BUFFER_TRACE(bh, "ph5: control buffer writeout done: unfile");
766 clear_buffer_jwrite(bh);
767 journal_unfile_buffer(journal, jh);
768 journal_put_journal_head(jh);
769 __brelse(bh); /* One for getblk */
770 /* AKPM: bforget here */
773 if (err)
774 journal_abort(journal, err);
776 jbd_debug(3, "JBD: commit phase 6\n");
778 if (journal_write_commit_record(journal, commit_transaction))
779 err = -EIO;
781 if (err)
782 journal_abort(journal, err);
784 /* End of a transaction! Finally, we can do checkpoint
785 processing: any buffers committed as a result of this
786 transaction can be removed from any checkpoint list it was on
787 before. */
789 jbd_debug(3, "JBD: commit phase 7\n");
791 J_ASSERT(commit_transaction->t_sync_datalist == NULL);
792 J_ASSERT(commit_transaction->t_buffers == NULL);
793 J_ASSERT(commit_transaction->t_checkpoint_list == NULL);
794 J_ASSERT(commit_transaction->t_iobuf_list == NULL);
795 J_ASSERT(commit_transaction->t_shadow_list == NULL);
796 J_ASSERT(commit_transaction->t_log_list == NULL);
798 restart_loop:
800 * As there are other places (journal_unmap_buffer()) adding buffers
801 * to this list we have to be careful and hold the j_list_lock.
803 spin_lock(&journal->j_list_lock);
804 while (commit_transaction->t_forget) {
805 transaction_t *cp_transaction;
806 struct buffer_head *bh;
808 jh = commit_transaction->t_forget;
809 spin_unlock(&journal->j_list_lock);
810 bh = jh2bh(jh);
811 jbd_lock_bh_state(bh);
812 J_ASSERT_JH(jh, jh->b_transaction == commit_transaction ||
813 jh->b_transaction == journal->j_running_transaction);
816 * If there is undo-protected committed data against
817 * this buffer, then we can remove it now. If it is a
818 * buffer needing such protection, the old frozen_data
819 * field now points to a committed version of the
820 * buffer, so rotate that field to the new committed
821 * data.
823 * Otherwise, we can just throw away the frozen data now.
825 if (jh->b_committed_data) {
826 jbd_free(jh->b_committed_data, bh->b_size);
827 jh->b_committed_data = NULL;
828 if (jh->b_frozen_data) {
829 jh->b_committed_data = jh->b_frozen_data;
830 jh->b_frozen_data = NULL;
832 } else if (jh->b_frozen_data) {
833 jbd_free(jh->b_frozen_data, bh->b_size);
834 jh->b_frozen_data = NULL;
837 spin_lock(&journal->j_list_lock);
838 cp_transaction = jh->b_cp_transaction;
839 if (cp_transaction) {
840 JBUFFER_TRACE(jh, "remove from old cp transaction");
841 __journal_remove_checkpoint(jh);
844 /* Only re-checkpoint the buffer_head if it is marked
845 * dirty. If the buffer was added to the BJ_Forget list
846 * by journal_forget, it may no longer be dirty and
847 * there's no point in keeping a checkpoint record for
848 * it. */
850 /* A buffer which has been freed while still being
851 * journaled by a previous transaction may end up still
852 * being dirty here, but we want to avoid writing back
853 * that buffer in the future now that the last use has
854 * been committed. That's not only a performance gain,
855 * it also stops aliasing problems if the buffer is left
856 * behind for writeback and gets reallocated for another
857 * use in a different page. */
858 if (buffer_freed(bh)) {
859 clear_buffer_freed(bh);
860 clear_buffer_jbddirty(bh);
863 if (buffer_jbddirty(bh)) {
864 JBUFFER_TRACE(jh, "add to new checkpointing trans");
865 __journal_insert_checkpoint(jh, commit_transaction);
866 if (is_journal_aborted(journal))
867 clear_buffer_jbddirty(bh);
868 JBUFFER_TRACE(jh, "refile for checkpoint writeback");
869 __journal_refile_buffer(jh);
870 jbd_unlock_bh_state(bh);
871 } else {
872 J_ASSERT_BH(bh, !buffer_dirty(bh));
873 /* The buffer on BJ_Forget list and not jbddirty means
874 * it has been freed by this transaction and hence it
875 * could not have been reallocated until this
876 * transaction has committed. *BUT* it could be
877 * reallocated once we have written all the data to
878 * disk and before we process the buffer on BJ_Forget
879 * list. */
880 JBUFFER_TRACE(jh, "refile or unfile freed buffer");
881 __journal_refile_buffer(jh);
882 if (!jh->b_transaction) {
883 jbd_unlock_bh_state(bh);
884 /* needs a brelse */
885 journal_remove_journal_head(bh);
886 release_buffer_page(bh);
887 } else
888 jbd_unlock_bh_state(bh);
890 cond_resched_lock(&journal->j_list_lock);
892 spin_unlock(&journal->j_list_lock);
894 * This is a bit sleazy. We use j_list_lock to protect transition
895 * of a transaction into T_FINISHED state and calling
896 * __journal_drop_transaction(). Otherwise we could race with
897 * other checkpointing code processing the transaction...
899 spin_lock(&journal->j_state_lock);
900 spin_lock(&journal->j_list_lock);
902 * Now recheck if some buffers did not get attached to the transaction
903 * while the lock was dropped...
905 if (commit_transaction->t_forget) {
906 spin_unlock(&journal->j_list_lock);
907 spin_unlock(&journal->j_state_lock);
908 goto restart_loop;
911 /* Done with this transaction! */
913 jbd_debug(3, "JBD: commit phase 8\n");
915 J_ASSERT(commit_transaction->t_state == T_COMMIT);
917 commit_transaction->t_state = T_FINISHED;
918 J_ASSERT(commit_transaction == journal->j_committing_transaction);
919 journal->j_commit_sequence = commit_transaction->t_tid;
920 journal->j_committing_transaction = NULL;
921 commit_time = ktime_to_ns(ktime_sub(ktime_get(), start_time));
924 * weight the commit time higher than the average time so we don't
925 * react too strongly to vast changes in commit time
927 if (likely(journal->j_average_commit_time))
928 journal->j_average_commit_time = (commit_time*3 +
929 journal->j_average_commit_time) / 4;
930 else
931 journal->j_average_commit_time = commit_time;
933 spin_unlock(&journal->j_state_lock);
935 if (commit_transaction->t_checkpoint_list == NULL &&
936 commit_transaction->t_checkpoint_io_list == NULL) {
937 __journal_drop_transaction(journal, commit_transaction);
938 } else {
939 if (journal->j_checkpoint_transactions == NULL) {
940 journal->j_checkpoint_transactions = commit_transaction;
941 commit_transaction->t_cpnext = commit_transaction;
942 commit_transaction->t_cpprev = commit_transaction;
943 } else {
944 commit_transaction->t_cpnext =
945 journal->j_checkpoint_transactions;
946 commit_transaction->t_cpprev =
947 commit_transaction->t_cpnext->t_cpprev;
948 commit_transaction->t_cpnext->t_cpprev =
949 commit_transaction;
950 commit_transaction->t_cpprev->t_cpnext =
951 commit_transaction;
954 spin_unlock(&journal->j_list_lock);
956 jbd_debug(1, "JBD: commit %d complete, head %d\n",
957 journal->j_commit_sequence, journal->j_tail_sequence);
959 wake_up(&journal->j_wait_done_commit);