blob: 6494c81e3b0a9cb3d07d2eec52d585e6e3a46117 [file] [log] [blame]
Dave Kleikamp470decc2006-10-11 01:20:57 -07001/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -07002 * linux/fs/jbd2/commit.c
Dave Kleikamp470decc2006-10-11 01:20:57 -07003 *
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 * Journal commit routines for the generic filesystem journaling code;
13 * part of the ext2fs journaling system.
14 */
15
16#include <linux/time.h>
17#include <linux/fs.h>
Mingming Caof7f4bcc2006-10-11 01:20:59 -070018#include <linux/jbd2.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070019#include <linux/errno.h>
20#include <linux/slab.h>
21#include <linux/mm.h>
22#include <linux/pagemap.h>
Johann Lombardi8e85fb32008-01-28 23:58:27 -050023#include <linux/jiffies.h>
Girish Shilamkar818d2762008-01-28 23:58:27 -050024#include <linux/crc32.h>
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -040025#include <linux/writeback.h>
26#include <linux/backing-dev.h>
Theodore Ts'ofd984962009-01-05 21:34:13 -050027#include <linux/bio.h>
Theodore Ts'o0e3d2a62009-09-11 09:30:12 -040028#include <linux/blkdev.h>
Brian King39e3ac22010-10-27 21:25:12 -040029#include <linux/bitops.h>
Theodore Ts'o879c5e62009-06-17 11:47:48 -040030#include <trace/events/jbd2.h>
Brian King39e3ac22010-10-27 21:25:12 -040031#include <asm/system.h>
Dave Kleikamp470decc2006-10-11 01:20:57 -070032
33/*
34 * Default IO end handler for temporary BJ_IO buffer_heads.
35 */
36static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
37{
38 BUFFER_TRACE(bh, "");
39 if (uptodate)
40 set_buffer_uptodate(bh);
41 else
42 clear_buffer_uptodate(bh);
43 unlock_buffer(bh);
44}
45
46/*
Jan Kara87c89c22008-07-11 19:27:31 -040047 * When an ext4 file is truncated, it is possible that some pages are not
48 * successfully freed, because they are attached to a committing transaction.
Dave Kleikamp470decc2006-10-11 01:20:57 -070049 * After the transaction commits, these pages are left on the LRU, with no
50 * ->mapping, and with attached buffers. These pages are trivially reclaimable
51 * by the VM, but their apparent absence upsets the VM accounting, and it makes
52 * the numbers in /proc/meminfo look odd.
53 *
54 * So here, we have a buffer which has just come off the forget list. Look to
55 * see if we can strip all buffers from the backing page.
56 *
57 * Called under lock_journal(), and possibly under journal_datalist_lock. The
58 * caller provided us with a ref against the buffer, and we drop that here.
59 */
60static void release_buffer_page(struct buffer_head *bh)
61{
62 struct page *page;
63
64 if (buffer_dirty(bh))
65 goto nope;
66 if (atomic_read(&bh->b_count) != 1)
67 goto nope;
68 page = bh->b_page;
69 if (!page)
70 goto nope;
71 if (page->mapping)
72 goto nope;
73
74 /* OK, it's a truncated page */
Nick Piggin529ae9a2008-08-02 12:01:03 +020075 if (!trylock_page(page))
Dave Kleikamp470decc2006-10-11 01:20:57 -070076 goto nope;
77
78 page_cache_get(page);
79 __brelse(bh);
80 try_to_free_buffers(page);
81 unlock_page(page);
82 page_cache_release(page);
83 return;
84
85nope:
86 __brelse(bh);
87}
88
89/*
Girish Shilamkar818d2762008-01-28 23:58:27 -050090 * Done it all: now submit the commit record. We should have
Dave Kleikamp470decc2006-10-11 01:20:57 -070091 * cleaned up our previous buffers by now, so if we are in abort
92 * mode we can now just skip the rest of the journal write
93 * entirely.
94 *
95 * Returns 1 if the journal needs to be aborted or 0 on success
96 */
Girish Shilamkar818d2762008-01-28 23:58:27 -050097static int journal_submit_commit_record(journal_t *journal,
98 transaction_t *commit_transaction,
99 struct buffer_head **cbh,
100 __u32 crc32_sum)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700101{
102 struct journal_head *descriptor;
Girish Shilamkar818d2762008-01-28 23:58:27 -0500103 struct commit_header *tmp;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700104 struct buffer_head *bh;
Girish Shilamkar818d2762008-01-28 23:58:27 -0500105 int ret;
Theodore Ts'o736603a2008-07-11 19:27:31 -0400106 struct timespec now = current_kernel_time();
Dave Kleikamp470decc2006-10-11 01:20:57 -0700107
108 if (is_journal_aborted(journal))
109 return 0;
110
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700111 descriptor = jbd2_journal_get_descriptor_buffer(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700112 if (!descriptor)
113 return 1;
114
115 bh = jh2bh(descriptor);
116
Girish Shilamkar818d2762008-01-28 23:58:27 -0500117 tmp = (struct commit_header *)bh->b_data;
118 tmp->h_magic = cpu_to_be32(JBD2_MAGIC_NUMBER);
119 tmp->h_blocktype = cpu_to_be32(JBD2_COMMIT_BLOCK);
120 tmp->h_sequence = cpu_to_be32(commit_transaction->t_tid);
Theodore Ts'o736603a2008-07-11 19:27:31 -0400121 tmp->h_commit_sec = cpu_to_be64(now.tv_sec);
122 tmp->h_commit_nsec = cpu_to_be32(now.tv_nsec);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500123
124 if (JBD2_HAS_COMPAT_FEATURE(journal,
125 JBD2_FEATURE_COMPAT_CHECKSUM)) {
126 tmp->h_chksum_type = JBD2_CRC32_CHKSUM;
127 tmp->h_chksum_size = JBD2_CRC32_CHKSUM_SIZE;
128 tmp->h_chksum[0] = cpu_to_be32(crc32_sum);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700129 }
130
Girish Shilamkar818d2762008-01-28 23:58:27 -0500131 JBUFFER_TRACE(descriptor, "submit commit block");
132 lock_buffer(bh);
Theodore Ts'o45a90bf2008-10-06 12:04:02 -0400133 clear_buffer_dirty(bh);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500134 set_buffer_uptodate(bh);
135 bh->b_end_io = journal_end_buffer_io_sync;
136
137 if (journal->j_flags & JBD2_BARRIER &&
Theodore Ts'o0e3d2a62009-09-11 09:30:12 -0400138 !JBD2_HAS_INCOMPAT_FEATURE(journal,
139 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
Christoph Hellwig87e99512010-08-11 17:05:45 +0200140 ret = submit_bh(WRITE_SYNC_PLUG | WRITE_BARRIER, bh);
141 if (ret == -EOPNOTSUPP) {
142 printk(KERN_WARNING
143 "JBD2: Disabling barriers on %s, "
144 "not supported by device\n", journal->j_devname);
145 write_lock(&journal->j_state_lock);
146 journal->j_flags &= ~JBD2_BARRIER;
147 write_unlock(&journal->j_state_lock);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500148
Christoph Hellwig87e99512010-08-11 17:05:45 +0200149 /* And try again, without the barrier */
150 lock_buffer(bh);
151 set_buffer_uptodate(bh);
152 clear_buffer_dirty(bh);
153 ret = submit_bh(WRITE_SYNC_PLUG, bh);
154 }
155 } else {
Jens Axboe4194b1e2009-04-06 14:48:05 +0200156 ret = submit_bh(WRITE_SYNC_PLUG, bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700157 }
Girish Shilamkar818d2762008-01-28 23:58:27 -0500158 *cbh = bh;
159 return ret;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700160}
161
Girish Shilamkar818d2762008-01-28 23:58:27 -0500162/*
163 * This function along with journal_submit_commit_record
164 * allows to write the commit record asynchronously.
165 */
Theodore Ts'ofd984962009-01-05 21:34:13 -0500166static int journal_wait_on_commit_record(journal_t *journal,
167 struct buffer_head *bh)
Girish Shilamkar818d2762008-01-28 23:58:27 -0500168{
169 int ret = 0;
170
Theodore Ts'ofd984962009-01-05 21:34:13 -0500171retry:
Girish Shilamkar818d2762008-01-28 23:58:27 -0500172 clear_buffer_dirty(bh);
173 wait_on_buffer(bh);
Theodore Ts'ofd984962009-01-05 21:34:13 -0500174 if (buffer_eopnotsupp(bh) && (journal->j_flags & JBD2_BARRIER)) {
175 printk(KERN_WARNING
Eric Sandeencc937db2010-07-27 11:56:08 -0400176 "JBD2: %s: disabling barries on %s - not supported "
177 "by device\n", __func__, journal->j_devname);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400178 write_lock(&journal->j_state_lock);
Theodore Ts'ofd984962009-01-05 21:34:13 -0500179 journal->j_flags &= ~JBD2_BARRIER;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400180 write_unlock(&journal->j_state_lock);
Theodore Ts'ofd984962009-01-05 21:34:13 -0500181
182 lock_buffer(bh);
183 clear_buffer_dirty(bh);
184 set_buffer_uptodate(bh);
185 bh->b_end_io = journal_end_buffer_io_sync;
186
Jens Axboe4194b1e2009-04-06 14:48:05 +0200187 ret = submit_bh(WRITE_SYNC_PLUG, bh);
Theodore Ts'ofd984962009-01-05 21:34:13 -0500188 if (ret) {
189 unlock_buffer(bh);
190 return ret;
191 }
192 goto retry;
193 }
Girish Shilamkar818d2762008-01-28 23:58:27 -0500194
195 if (unlikely(!buffer_uptodate(bh)))
196 ret = -EIO;
197 put_bh(bh); /* One for getblk() */
198 jbd2_journal_put_journal_head(bh2jh(bh));
199
200 return ret;
201}
202
203/*
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400204 * write the filemap data using writepage() address_space_operations.
205 * We don't do block allocation here even for delalloc. We don't
206 * use writepages() because with dealyed allocation we may be doing
207 * block allocation in writepages().
208 */
209static int journal_submit_inode_data_buffers(struct address_space *mapping)
210{
211 int ret;
212 struct writeback_control wbc = {
213 .sync_mode = WB_SYNC_ALL,
214 .nr_to_write = mapping->nrpages * 2,
215 .range_start = 0,
216 .range_end = i_size_read(mapping->host),
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400217 };
218
219 ret = generic_writepages(mapping, &wbc);
220 return ret;
221}
222
223/*
Jan Karac851ed52008-07-11 19:27:31 -0400224 * Submit all the data buffers of inode associated with the transaction to
225 * disk.
226 *
227 * We are in a committing transaction. Therefore no new inode can be added to
228 * our inode list. We use JI_COMMIT_RUNNING flag to protect inode we currently
229 * operate on from being released while we write out pages.
230 */
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400231static int journal_submit_data_buffers(journal_t *journal,
Jan Karac851ed52008-07-11 19:27:31 -0400232 transaction_t *commit_transaction)
233{
234 struct jbd2_inode *jinode;
235 int err, ret = 0;
236 struct address_space *mapping;
237
238 spin_lock(&journal->j_list_lock);
239 list_for_each_entry(jinode, &commit_transaction->t_inode_list, i_list) {
240 mapping = jinode->i_vfs_inode->i_mapping;
Brian King39e3ac22010-10-27 21:25:12 -0400241 set_bit(__JI_COMMIT_RUNNING, &jinode->i_flags);
Jan Karac851ed52008-07-11 19:27:31 -0400242 spin_unlock(&journal->j_list_lock);
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400243 /*
244 * submit the inode data buffers. We use writepage
245 * instead of writepages. Because writepages can do
246 * block allocation with delalloc. We need to write
247 * only allocated blocks here.
248 */
Theodore Ts'o879c5e62009-06-17 11:47:48 -0400249 trace_jbd2_submit_inode_data(jinode->i_vfs_inode);
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400250 err = journal_submit_inode_data_buffers(mapping);
Jan Karac851ed52008-07-11 19:27:31 -0400251 if (!ret)
252 ret = err;
253 spin_lock(&journal->j_list_lock);
254 J_ASSERT(jinode->i_transaction == commit_transaction);
Theodore Ts'occ3e1be2009-12-23 06:52:08 -0500255 commit_transaction->t_flushed_data_blocks = 1;
Brian King39e3ac22010-10-27 21:25:12 -0400256 clear_bit(__JI_COMMIT_RUNNING, &jinode->i_flags);
257 smp_mb__after_clear_bit();
Jan Karac851ed52008-07-11 19:27:31 -0400258 wake_up_bit(&jinode->i_flags, __JI_COMMIT_RUNNING);
259 }
260 spin_unlock(&journal->j_list_lock);
261 return ret;
262}
263
264/*
265 * Wait for data submitted for writeout, refile inodes to proper
266 * transaction if needed.
267 *
268 */
269static int journal_finish_inode_data_buffers(journal_t *journal,
270 transaction_t *commit_transaction)
271{
272 struct jbd2_inode *jinode, *next_i;
273 int err, ret = 0;
274
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400275 /* For locking, see the comment in journal_submit_data_buffers() */
Jan Karac851ed52008-07-11 19:27:31 -0400276 spin_lock(&journal->j_list_lock);
277 list_for_each_entry(jinode, &commit_transaction->t_inode_list, i_list) {
Brian King39e3ac22010-10-27 21:25:12 -0400278 set_bit(__JI_COMMIT_RUNNING, &jinode->i_flags);
Jan Karac851ed52008-07-11 19:27:31 -0400279 spin_unlock(&journal->j_list_lock);
280 err = filemap_fdatawait(jinode->i_vfs_inode->i_mapping);
Hidehiro Kawaie9e34f42008-07-31 22:26:04 -0400281 if (err) {
282 /*
283 * Because AS_EIO is cleared by
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200284 * filemap_fdatawait_range(), set it again so
Hidehiro Kawaie9e34f42008-07-31 22:26:04 -0400285 * that user process can get -EIO from fsync().
286 */
287 set_bit(AS_EIO,
288 &jinode->i_vfs_inode->i_mapping->flags);
289
290 if (!ret)
291 ret = err;
292 }
Jan Karac851ed52008-07-11 19:27:31 -0400293 spin_lock(&journal->j_list_lock);
Brian King39e3ac22010-10-27 21:25:12 -0400294 clear_bit(__JI_COMMIT_RUNNING, &jinode->i_flags);
295 smp_mb__after_clear_bit();
Jan Karac851ed52008-07-11 19:27:31 -0400296 wake_up_bit(&jinode->i_flags, __JI_COMMIT_RUNNING);
297 }
298
299 /* Now refile inode to proper lists */
300 list_for_each_entry_safe(jinode, next_i,
301 &commit_transaction->t_inode_list, i_list) {
302 list_del(&jinode->i_list);
303 if (jinode->i_next_transaction) {
304 jinode->i_transaction = jinode->i_next_transaction;
305 jinode->i_next_transaction = NULL;
306 list_add(&jinode->i_list,
307 &jinode->i_transaction->t_inode_list);
308 } else {
309 jinode->i_transaction = NULL;
310 }
311 }
312 spin_unlock(&journal->j_list_lock);
313
314 return ret;
315}
316
Girish Shilamkar818d2762008-01-28 23:58:27 -0500317static __u32 jbd2_checksum_data(__u32 crc32_sum, struct buffer_head *bh)
318{
319 struct page *page = bh->b_page;
320 char *addr;
321 __u32 checksum;
322
323 addr = kmap_atomic(page, KM_USER0);
324 checksum = crc32_be(crc32_sum,
325 (void *)(addr + offset_in_page(bh->b_data)), bh->b_size);
326 kunmap_atomic(addr, KM_USER0);
327
328 return checksum;
329}
330
331static void write_tag_block(int tag_bytes, journal_block_tag_t *tag,
Mingming Cao18eba7a2006-10-11 01:21:13 -0700332 unsigned long long block)
Zach Brownb517bea2006-10-11 01:21:08 -0700333{
334 tag->t_blocknr = cpu_to_be32(block & (u32)~0);
Mingming Caocd02ff02007-10-16 18:38:25 -0400335 if (tag_bytes > JBD2_TAG_SIZE32)
Zach Brownb517bea2006-10-11 01:21:08 -0700336 tag->t_blocknr_high = cpu_to_be32((block >> 31) >> 1);
337}
338
Dave Kleikamp470decc2006-10-11 01:20:57 -0700339/*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700340 * jbd2_journal_commit_transaction
Dave Kleikamp470decc2006-10-11 01:20:57 -0700341 *
342 * The primary function for committing a transaction to the log. This
343 * function is called by the journal thread to begin a complete commit.
344 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700345void jbd2_journal_commit_transaction(journal_t *journal)
Dave Kleikamp470decc2006-10-11 01:20:57 -0700346{
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500347 struct transaction_stats_s stats;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700348 transaction_t *commit_transaction;
349 struct journal_head *jh, *new_jh, *descriptor;
350 struct buffer_head **wbuf = journal->j_wbuf;
351 int bufs;
352 int flags;
353 int err;
Mingming Cao18eba7a2006-10-11 01:21:13 -0700354 unsigned long long blocknr;
Josef Bacike07f7182008-11-26 01:14:26 -0500355 ktime_t start_time;
356 u64 commit_time;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700357 char *tagp = NULL;
358 journal_header_t *header;
359 journal_block_tag_t *tag = NULL;
360 int space_left = 0;
361 int first_tag = 0;
362 int tag_flag;
Aneesh Kumar K.Vfb684072008-11-06 17:50:21 -0500363 int i, to_free = 0;
Zach Brownb517bea2006-10-11 01:21:08 -0700364 int tag_bytes = journal_tag_bytes(journal);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500365 struct buffer_head *cbh = NULL; /* For transactional checksums */
366 __u32 crc32_sum = ~0;
Theodore Ts'o70585482009-03-25 23:35:46 -0400367 int write_op = WRITE;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700368
369 /*
370 * First job: lock down the current transaction and wait for
371 * all outstanding updates to complete.
372 */
373
374#ifdef COMMIT_STATS
375 spin_lock(&journal->j_list_lock);
376 summarise_journal_usage(journal);
377 spin_unlock(&journal->j_list_lock);
378#endif
379
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700380 /* Do we need to erase the effects of a prior jbd2_journal_flush? */
381 if (journal->j_flags & JBD2_FLUSHED) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700382 jbd_debug(3, "super block updated\n");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700383 jbd2_journal_update_superblock(journal, 1);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700384 } else {
385 jbd_debug(3, "superblock not updated\n");
386 }
387
388 J_ASSERT(journal->j_running_transaction != NULL);
389 J_ASSERT(journal->j_committing_transaction == NULL);
390
391 commit_transaction = journal->j_running_transaction;
392 J_ASSERT(commit_transaction->t_state == T_RUNNING);
393
Theodore Ts'o879c5e62009-06-17 11:47:48 -0400394 trace_jbd2_start_commit(journal, commit_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700395 jbd_debug(1, "JBD: starting commit of transaction %d\n",
396 commit_transaction->t_tid);
397
Theodore Ts'oa931da62010-08-03 21:35:12 -0400398 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700399 commit_transaction->t_state = T_LOCKED;
400
Jens Axboe4194b1e2009-04-06 14:48:05 +0200401 /*
402 * Use plugged writes here, since we want to submit several before
403 * we unplug the device. We don't do explicit unplugging in here,
404 * instead we rely on sync_buffer() doing the unplug for us.
405 */
Theodore Ts'o70585482009-03-25 23:35:46 -0400406 if (commit_transaction->t_synchronous_commit)
Jens Axboe4194b1e2009-04-06 14:48:05 +0200407 write_op = WRITE_SYNC_PLUG;
Theodore Ts'o879c5e62009-06-17 11:47:48 -0400408 trace_jbd2_commit_locking(journal, commit_transaction);
Theodore Ts'obf699322009-09-30 00:32:06 -0400409 stats.run.rs_wait = commit_transaction->t_max_wait;
410 stats.run.rs_locked = jiffies;
411 stats.run.rs_running = jbd2_time_diff(commit_transaction->t_start,
412 stats.run.rs_locked);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500413
Dave Kleikamp470decc2006-10-11 01:20:57 -0700414 spin_lock(&commit_transaction->t_handle_lock);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400415 while (atomic_read(&commit_transaction->t_updates)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700416 DEFINE_WAIT(wait);
417
418 prepare_to_wait(&journal->j_wait_updates, &wait,
419 TASK_UNINTERRUPTIBLE);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400420 if (atomic_read(&commit_transaction->t_updates)) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700421 spin_unlock(&commit_transaction->t_handle_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400422 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700423 schedule();
Theodore Ts'oa931da62010-08-03 21:35:12 -0400424 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700425 spin_lock(&commit_transaction->t_handle_lock);
426 }
427 finish_wait(&journal->j_wait_updates, &wait);
428 }
429 spin_unlock(&commit_transaction->t_handle_lock);
430
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400431 J_ASSERT (atomic_read(&commit_transaction->t_outstanding_credits) <=
Dave Kleikamp470decc2006-10-11 01:20:57 -0700432 journal->j_max_transaction_buffers);
433
434 /*
435 * First thing we are allowed to do is to discard any remaining
436 * BJ_Reserved buffers. Note, it is _not_ permissible to assume
437 * that there are no such buffers: if a large filesystem
438 * operation like a truncate needs to split itself over multiple
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700439 * transactions, then it may try to do a jbd2_journal_restart() while
Dave Kleikamp470decc2006-10-11 01:20:57 -0700440 * there are still BJ_Reserved buffers outstanding. These must
441 * be released cleanly from the current transaction.
442 *
443 * In this case, the filesystem must still reserve write access
444 * again before modifying the buffer in the new transaction, but
445 * we do not require it to remember exactly which old buffers it
446 * has reserved. This is consistent with the existing behaviour
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700447 * that multiple jbd2_journal_get_write_access() calls to the same
Dave Kleikamp470decc2006-10-11 01:20:57 -0700448 * buffer are perfectly permissable.
449 */
450 while (commit_transaction->t_reserved_list) {
451 jh = commit_transaction->t_reserved_list;
452 JBUFFER_TRACE(jh, "reserved, unused: refile");
453 /*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700454 * A jbd2_journal_get_undo_access()+jbd2_journal_release_buffer() may
Dave Kleikamp470decc2006-10-11 01:20:57 -0700455 * leave undo-committed data.
456 */
457 if (jh->b_committed_data) {
458 struct buffer_head *bh = jh2bh(jh);
459
460 jbd_lock_bh_state(bh);
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400461 jbd2_free(jh->b_committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700462 jh->b_committed_data = NULL;
463 jbd_unlock_bh_state(bh);
464 }
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700465 jbd2_journal_refile_buffer(journal, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700466 }
467
468 /*
469 * Now try to drop any written-back buffers from the journal's
470 * checkpoint lists. We do this *before* commit because it potentially
471 * frees some memory
472 */
473 spin_lock(&journal->j_list_lock);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700474 __jbd2_journal_clean_checkpoint_list(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700475 spin_unlock(&journal->j_list_lock);
476
477 jbd_debug (3, "JBD: commit phase 1\n");
478
479 /*
480 * Switch to a new revoke table.
481 */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700482 jbd2_journal_switch_revoke_table(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700483
Theodore Ts'o879c5e62009-06-17 11:47:48 -0400484 trace_jbd2_commit_flushing(journal, commit_transaction);
Theodore Ts'obf699322009-09-30 00:32:06 -0400485 stats.run.rs_flushing = jiffies;
486 stats.run.rs_locked = jbd2_time_diff(stats.run.rs_locked,
487 stats.run.rs_flushing);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500488
Dave Kleikamp470decc2006-10-11 01:20:57 -0700489 commit_transaction->t_state = T_FLUSH;
490 journal->j_committing_transaction = commit_transaction;
491 journal->j_running_transaction = NULL;
Josef Bacike07f7182008-11-26 01:14:26 -0500492 start_time = ktime_get();
Dave Kleikamp470decc2006-10-11 01:20:57 -0700493 commit_transaction->t_log_start = journal->j_head;
494 wake_up(&journal->j_wait_transaction_locked);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400495 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700496
497 jbd_debug (3, "JBD: commit phase 2\n");
498
499 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700500 * Now start flushing things to disk, in the order they appear
501 * on the transaction lists. Data blocks go first.
502 */
Aneesh Kumar K.Vcd1aac32008-07-11 19:27:31 -0400503 err = journal_submit_data_buffers(journal, commit_transaction);
Jan Karac851ed52008-07-11 19:27:31 -0400504 if (err)
505 jbd2_journal_abort(journal, err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700506
Theodore Ts'o67c457a2009-04-14 07:50:56 -0400507 jbd2_journal_write_revoke_records(journal, commit_transaction,
508 write_op);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700509
510 jbd_debug(3, "JBD: commit phase 2\n");
511
512 /*
Dave Kleikamp470decc2006-10-11 01:20:57 -0700513 * Way to go: we have now written out all of the data for a
514 * transaction! Now comes the tricky part: we need to write out
515 * metadata. Loop over the transaction's entire buffer list:
516 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400517 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700518 commit_transaction->t_state = T_COMMIT;
Theodore Ts'oa931da62010-08-03 21:35:12 -0400519 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700520
Theodore Ts'o879c5e62009-06-17 11:47:48 -0400521 trace_jbd2_commit_logging(journal, commit_transaction);
Theodore Ts'obf699322009-09-30 00:32:06 -0400522 stats.run.rs_logging = jiffies;
523 stats.run.rs_flushing = jbd2_time_diff(stats.run.rs_flushing,
524 stats.run.rs_logging);
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400525 stats.run.rs_blocks =
526 atomic_read(&commit_transaction->t_outstanding_credits);
Theodore Ts'obf699322009-09-30 00:32:06 -0400527 stats.run.rs_blocks_logged = 0;
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500528
Josef Bacik1dfc3222008-04-17 10:38:59 -0400529 J_ASSERT(commit_transaction->t_nr_buffers <=
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400530 atomic_read(&commit_transaction->t_outstanding_credits));
Josef Bacik1dfc3222008-04-17 10:38:59 -0400531
Jan Kara87c89c22008-07-11 19:27:31 -0400532 err = 0;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700533 descriptor = NULL;
534 bufs = 0;
535 while (commit_transaction->t_buffers) {
536
537 /* Find the next buffer to be journaled... */
538
539 jh = commit_transaction->t_buffers;
540
541 /* If we're in abort mode, we just un-journal the buffer and
Hidehiro Kawai7ad74452008-10-10 20:29:31 -0400542 release it. */
Dave Kleikamp470decc2006-10-11 01:20:57 -0700543
544 if (is_journal_aborted(journal)) {
Hidehiro Kawai7ad74452008-10-10 20:29:31 -0400545 clear_buffer_jbddirty(jh2bh(jh));
Dave Kleikamp470decc2006-10-11 01:20:57 -0700546 JBUFFER_TRACE(jh, "journal is aborting: refile");
Joel Beckere06c8222008-09-11 15:35:47 -0700547 jbd2_buffer_abort_trigger(jh,
548 jh->b_frozen_data ?
549 jh->b_frozen_triggers :
550 jh->b_triggers);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700551 jbd2_journal_refile_buffer(journal, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700552 /* If that was the last one, we need to clean up
553 * any descriptor buffers which may have been
554 * already allocated, even if we are now
555 * aborting. */
556 if (!commit_transaction->t_buffers)
557 goto start_journal_io;
558 continue;
559 }
560
561 /* Make sure we have a descriptor block in which to
562 record the metadata buffer. */
563
564 if (!descriptor) {
565 struct buffer_head *bh;
566
567 J_ASSERT (bufs == 0);
568
569 jbd_debug(4, "JBD: get descriptor\n");
570
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700571 descriptor = jbd2_journal_get_descriptor_buffer(journal);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700572 if (!descriptor) {
Jan Karaa7fa2ba2007-10-16 18:38:25 -0400573 jbd2_journal_abort(journal, -EIO);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700574 continue;
575 }
576
577 bh = jh2bh(descriptor);
578 jbd_debug(4, "JBD: got buffer %llu (%p)\n",
579 (unsigned long long)bh->b_blocknr, bh->b_data);
580 header = (journal_header_t *)&bh->b_data[0];
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700581 header->h_magic = cpu_to_be32(JBD2_MAGIC_NUMBER);
582 header->h_blocktype = cpu_to_be32(JBD2_DESCRIPTOR_BLOCK);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700583 header->h_sequence = cpu_to_be32(commit_transaction->t_tid);
584
585 tagp = &bh->b_data[sizeof(journal_header_t)];
586 space_left = bh->b_size - sizeof(journal_header_t);
587 first_tag = 1;
588 set_buffer_jwrite(bh);
589 set_buffer_dirty(bh);
590 wbuf[bufs++] = bh;
591
592 /* Record it so that we can wait for IO
593 completion later */
594 BUFFER_TRACE(bh, "ph3: file as descriptor");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700595 jbd2_journal_file_buffer(descriptor, commit_transaction,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700596 BJ_LogCtl);
597 }
598
599 /* Where is the buffer to be written? */
600
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700601 err = jbd2_journal_next_log_block(journal, &blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700602 /* If the block mapping failed, just abandon the buffer
603 and repeat this loop: we'll fall into the
604 refile-on-abort condition above. */
605 if (err) {
Jan Karaa7fa2ba2007-10-16 18:38:25 -0400606 jbd2_journal_abort(journal, err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700607 continue;
608 }
609
610 /*
611 * start_this_handle() uses t_outstanding_credits to determine
612 * the free space in the log, but this counter is changed
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700613 * by jbd2_journal_next_log_block() also.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700614 */
Theodore Ts'oa51dca92010-08-02 08:43:25 -0400615 atomic_dec(&commit_transaction->t_outstanding_credits);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700616
617 /* Bump b_count to prevent truncate from stumbling over
618 the shadowed buffer! @@@ This can go if we ever get
619 rid of the BJ_IO/BJ_Shadow pairing of buffers. */
620 atomic_inc(&jh2bh(jh)->b_count);
621
622 /* Make a temporary IO buffer with which to write it out
623 (this will requeue both the metadata buffer and the
624 temporary IO buffer). new_bh goes on BJ_IO*/
625
626 set_bit(BH_JWrite, &jh2bh(jh)->b_state);
627 /*
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700628 * akpm: jbd2_journal_write_metadata_buffer() sets
Dave Kleikamp470decc2006-10-11 01:20:57 -0700629 * new_bh->b_transaction to commit_transaction.
630 * We need to clean this up before we release new_bh
631 * (which is of type BJ_IO)
632 */
633 JBUFFER_TRACE(jh, "ph3: write metadata");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700634 flags = jbd2_journal_write_metadata_buffer(commit_transaction,
Dave Kleikamp470decc2006-10-11 01:20:57 -0700635 jh, &new_jh, blocknr);
Theodore Ts'oe6ec1162009-12-01 09:04:42 -0500636 if (flags < 0) {
637 jbd2_journal_abort(journal, flags);
638 continue;
639 }
Dave Kleikamp470decc2006-10-11 01:20:57 -0700640 set_bit(BH_JWrite, &jh2bh(new_jh)->b_state);
641 wbuf[bufs++] = jh2bh(new_jh);
642
643 /* Record the new block's tag in the current descriptor
644 buffer */
645
646 tag_flag = 0;
647 if (flags & 1)
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700648 tag_flag |= JBD2_FLAG_ESCAPE;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700649 if (!first_tag)
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700650 tag_flag |= JBD2_FLAG_SAME_UUID;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700651
652 tag = (journal_block_tag_t *) tagp;
Zach Brownb517bea2006-10-11 01:21:08 -0700653 write_tag_block(tag_bytes, tag, jh2bh(jh)->b_blocknr);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700654 tag->t_flags = cpu_to_be32(tag_flag);
Zach Brownb517bea2006-10-11 01:21:08 -0700655 tagp += tag_bytes;
656 space_left -= tag_bytes;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700657
658 if (first_tag) {
659 memcpy (tagp, journal->j_uuid, 16);
660 tagp += 16;
661 space_left -= 16;
662 first_tag = 0;
663 }
664
665 /* If there's no more to do, or if the descriptor is full,
666 let the IO rip! */
667
668 if (bufs == journal->j_wbufsize ||
669 commit_transaction->t_buffers == NULL ||
Zach Brownb517bea2006-10-11 01:21:08 -0700670 space_left < tag_bytes + 16) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700671
672 jbd_debug(4, "JBD: Submit %d IOs\n", bufs);
673
674 /* Write an end-of-descriptor marker before
675 submitting the IOs. "tag" still points to
676 the last tag we set up. */
677
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700678 tag->t_flags |= cpu_to_be32(JBD2_FLAG_LAST_TAG);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700679
680start_journal_io:
681 for (i = 0; i < bufs; i++) {
682 struct buffer_head *bh = wbuf[i];
Girish Shilamkar818d2762008-01-28 23:58:27 -0500683 /*
684 * Compute checksum.
685 */
686 if (JBD2_HAS_COMPAT_FEATURE(journal,
687 JBD2_FEATURE_COMPAT_CHECKSUM)) {
688 crc32_sum =
689 jbd2_checksum_data(crc32_sum, bh);
690 }
691
Dave Kleikamp470decc2006-10-11 01:20:57 -0700692 lock_buffer(bh);
693 clear_buffer_dirty(bh);
694 set_buffer_uptodate(bh);
695 bh->b_end_io = journal_end_buffer_io_sync;
Theodore Ts'o70585482009-03-25 23:35:46 -0400696 submit_bh(write_op, bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700697 }
698 cond_resched();
Theodore Ts'obf699322009-09-30 00:32:06 -0400699 stats.run.rs_blocks_logged += bufs;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700700
701 /* Force a new descriptor to be generated next
702 time round the loop. */
703 descriptor = NULL;
704 bufs = 0;
705 }
706 }
707
Theodore Ts'occ3e1be2009-12-23 06:52:08 -0500708 /*
709 * If the journal is not located on the file system device,
710 * then we must flush the file system device before we issue
711 * the commit record
712 */
713 if (commit_transaction->t_flushed_data_blocks &&
714 (journal->j_fs_dev != journal->j_dev) &&
715 (journal->j_flags & JBD2_BARRIER))
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400716 blkdev_issue_flush(journal->j_fs_dev, GFP_KERNEL, NULL,
717 BLKDEV_IFL_WAIT);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500718
Theodore Ts'occ3e1be2009-12-23 06:52:08 -0500719 /* Done it all: now write the commit record asynchronously. */
Girish Shilamkar818d2762008-01-28 23:58:27 -0500720 if (JBD2_HAS_INCOMPAT_FEATURE(journal,
Theodore Ts'o0e3d2a62009-09-11 09:30:12 -0400721 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
Girish Shilamkar818d2762008-01-28 23:58:27 -0500722 err = journal_submit_commit_record(journal, commit_transaction,
723 &cbh, crc32_sum);
724 if (err)
725 __jbd2_journal_abort_hard(journal);
Theodore Ts'o0e3d2a62009-09-11 09:30:12 -0400726 if (journal->j_flags & JBD2_BARRIER)
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400727 blkdev_issue_flush(journal->j_dev, GFP_KERNEL, NULL,
728 BLKDEV_IFL_WAIT);
Girish Shilamkar818d2762008-01-28 23:58:27 -0500729 }
730
Jan Karac851ed52008-07-11 19:27:31 -0400731 err = journal_finish_inode_data_buffers(journal, commit_transaction);
Hidehiro Kawaie9e34f42008-07-31 22:26:04 -0400732 if (err) {
Hidehiro Kawaie9e34f42008-07-31 22:26:04 -0400733 printk(KERN_WARNING
734 "JBD2: Detected IO errors while flushing file data "
Theodore Ts'o05496762008-09-16 14:36:17 -0400735 "on %s\n", journal->j_devname);
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400736 if (journal->j_flags & JBD2_ABORT_ON_SYNCDATA_ERR)
737 jbd2_journal_abort(journal, err);
Hidehiro Kawaie9e34f42008-07-31 22:26:04 -0400738 err = 0;
739 }
Jan Karac851ed52008-07-11 19:27:31 -0400740
Dave Kleikamp470decc2006-10-11 01:20:57 -0700741 /* Lo and behold: we have just managed to send a transaction to
742 the log. Before we can commit it, wait for the IO so far to
743 complete. Control buffers being written are on the
744 transaction's t_log_list queue, and metadata buffers are on
745 the t_iobuf_list queue.
746
747 Wait for the buffers in reverse order. That way we are
748 less likely to be woken up until all IOs have completed, and
749 so we incur less scheduling load.
750 */
751
Jan Kara87c89c22008-07-11 19:27:31 -0400752 jbd_debug(3, "JBD: commit phase 3\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700753
754 /*
755 * akpm: these are BJ_IO, and j_list_lock is not needed.
756 * See __journal_try_to_free_buffer.
757 */
758wait_for_iobuf:
759 while (commit_transaction->t_iobuf_list != NULL) {
760 struct buffer_head *bh;
761
762 jh = commit_transaction->t_iobuf_list->b_tprev;
763 bh = jh2bh(jh);
764 if (buffer_locked(bh)) {
765 wait_on_buffer(bh);
766 goto wait_for_iobuf;
767 }
768 if (cond_resched())
769 goto wait_for_iobuf;
770
771 if (unlikely(!buffer_uptodate(bh)))
772 err = -EIO;
773
774 clear_buffer_jwrite(bh);
775
776 JBUFFER_TRACE(jh, "ph4: unfile after journal write");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700777 jbd2_journal_unfile_buffer(journal, jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700778
779 /*
780 * ->t_iobuf_list should contain only dummy buffer_heads
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700781 * which were created by jbd2_journal_write_metadata_buffer().
Dave Kleikamp470decc2006-10-11 01:20:57 -0700782 */
783 BUFFER_TRACE(bh, "dumping temporary bh");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700784 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700785 __brelse(bh);
786 J_ASSERT_BH(bh, atomic_read(&bh->b_count) == 0);
787 free_buffer_head(bh);
788
789 /* We also have to unlock and free the corresponding
790 shadowed buffer */
791 jh = commit_transaction->t_shadow_list->b_tprev;
792 bh = jh2bh(jh);
793 clear_bit(BH_JWrite, &bh->b_state);
794 J_ASSERT_BH(bh, buffer_jbddirty(bh));
795
796 /* The metadata is now released for reuse, but we need
797 to remember it against this transaction so that when
798 we finally commit, we can do any checkpointing
799 required. */
800 JBUFFER_TRACE(jh, "file as BJ_Forget");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700801 jbd2_journal_file_buffer(jh, commit_transaction, BJ_Forget);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700802 /* Wake up any transactions which were waiting for this
803 IO to complete */
804 wake_up_bit(&bh->b_state, BH_Unshadow);
805 JBUFFER_TRACE(jh, "brelse shadowed buffer");
806 __brelse(bh);
807 }
808
809 J_ASSERT (commit_transaction->t_shadow_list == NULL);
810
Jan Kara87c89c22008-07-11 19:27:31 -0400811 jbd_debug(3, "JBD: commit phase 4\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700812
813 /* Here we wait for the revoke record and descriptor record buffers */
814 wait_for_ctlbuf:
815 while (commit_transaction->t_log_list != NULL) {
816 struct buffer_head *bh;
817
818 jh = commit_transaction->t_log_list->b_tprev;
819 bh = jh2bh(jh);
820 if (buffer_locked(bh)) {
821 wait_on_buffer(bh);
822 goto wait_for_ctlbuf;
823 }
824 if (cond_resched())
825 goto wait_for_ctlbuf;
826
827 if (unlikely(!buffer_uptodate(bh)))
828 err = -EIO;
829
830 BUFFER_TRACE(bh, "ph5: control buffer writeout done: unfile");
831 clear_buffer_jwrite(bh);
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700832 jbd2_journal_unfile_buffer(journal, jh);
833 jbd2_journal_put_journal_head(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700834 __brelse(bh); /* One for getblk */
835 /* AKPM: bforget here */
836 }
837
Hidehiro Kawai77e841d2008-10-12 16:39:16 -0400838 if (err)
839 jbd2_journal_abort(journal, err);
840
Jan Kara87c89c22008-07-11 19:27:31 -0400841 jbd_debug(3, "JBD: commit phase 5\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700842
Girish Shilamkar818d2762008-01-28 23:58:27 -0500843 if (!JBD2_HAS_INCOMPAT_FEATURE(journal,
Theodore Ts'o0e3d2a62009-09-11 09:30:12 -0400844 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT)) {
Girish Shilamkar818d2762008-01-28 23:58:27 -0500845 err = journal_submit_commit_record(journal, commit_transaction,
846 &cbh, crc32_sum);
847 if (err)
848 __jbd2_journal_abort_hard(journal);
849 }
Mingming Caob048d842008-02-05 08:52:45 -0500850 if (!err && !is_journal_aborted(journal))
Theodore Ts'ofd984962009-01-05 21:34:13 -0500851 err = journal_wait_on_commit_record(journal, cbh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700852
853 if (err)
Jan Karaa7fa2ba2007-10-16 18:38:25 -0400854 jbd2_journal_abort(journal, err);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700855
856 /* End of a transaction! Finally, we can do checkpoint
857 processing: any buffers committed as a result of this
858 transaction can be removed from any checkpoint list it was on
859 before. */
860
Jan Kara87c89c22008-07-11 19:27:31 -0400861 jbd_debug(3, "JBD: commit phase 6\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700862
Jan Karac851ed52008-07-11 19:27:31 -0400863 J_ASSERT(list_empty(&commit_transaction->t_inode_list));
Dave Kleikamp470decc2006-10-11 01:20:57 -0700864 J_ASSERT(commit_transaction->t_buffers == NULL);
865 J_ASSERT(commit_transaction->t_checkpoint_list == NULL);
866 J_ASSERT(commit_transaction->t_iobuf_list == NULL);
867 J_ASSERT(commit_transaction->t_shadow_list == NULL);
868 J_ASSERT(commit_transaction->t_log_list == NULL);
869
870restart_loop:
871 /*
872 * As there are other places (journal_unmap_buffer()) adding buffers
873 * to this list we have to be careful and hold the j_list_lock.
874 */
875 spin_lock(&journal->j_list_lock);
876 while (commit_transaction->t_forget) {
877 transaction_t *cp_transaction;
878 struct buffer_head *bh;
879
880 jh = commit_transaction->t_forget;
881 spin_unlock(&journal->j_list_lock);
882 bh = jh2bh(jh);
883 jbd_lock_bh_state(bh);
dingdinghua23e2af32010-02-24 12:11:20 -0500884 J_ASSERT_JH(jh, jh->b_transaction == commit_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700885
886 /*
887 * If there is undo-protected committed data against
888 * this buffer, then we can remove it now. If it is a
889 * buffer needing such protection, the old frozen_data
890 * field now points to a committed version of the
891 * buffer, so rotate that field to the new committed
892 * data.
893 *
894 * Otherwise, we can just throw away the frozen data now.
Joel Beckere06c8222008-09-11 15:35:47 -0700895 *
896 * We also know that the frozen data has already fired
897 * its triggers if they exist, so we can clear that too.
Dave Kleikamp470decc2006-10-11 01:20:57 -0700898 */
899 if (jh->b_committed_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400900 jbd2_free(jh->b_committed_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700901 jh->b_committed_data = NULL;
902 if (jh->b_frozen_data) {
903 jh->b_committed_data = jh->b_frozen_data;
904 jh->b_frozen_data = NULL;
Joel Beckere06c8222008-09-11 15:35:47 -0700905 jh->b_frozen_triggers = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700906 }
907 } else if (jh->b_frozen_data) {
Mingming Caoaf1e76d2007-10-16 18:38:25 -0400908 jbd2_free(jh->b_frozen_data, bh->b_size);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700909 jh->b_frozen_data = NULL;
Joel Beckere06c8222008-09-11 15:35:47 -0700910 jh->b_frozen_triggers = NULL;
Dave Kleikamp470decc2006-10-11 01:20:57 -0700911 }
912
913 spin_lock(&journal->j_list_lock);
914 cp_transaction = jh->b_cp_transaction;
915 if (cp_transaction) {
916 JBUFFER_TRACE(jh, "remove from old cp transaction");
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500917 cp_transaction->t_chp_stats.cs_dropped++;
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700918 __jbd2_journal_remove_checkpoint(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700919 }
920
921 /* Only re-checkpoint the buffer_head if it is marked
922 * dirty. If the buffer was added to the BJ_Forget list
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700923 * by jbd2_journal_forget, it may no longer be dirty and
Dave Kleikamp470decc2006-10-11 01:20:57 -0700924 * there's no point in keeping a checkpoint record for
925 * it. */
926
927 /* A buffer which has been freed while still being
928 * journaled by a previous transaction may end up still
929 * being dirty here, but we want to avoid writing back
dingdinghuaba869022010-02-15 16:35:42 -0500930 * that buffer in the future after the "add to orphan"
931 * operation been committed, That's not only a performance
932 * gain, it also stops aliasing problems if the buffer is
933 * left behind for writeback and gets reallocated for another
Dave Kleikamp470decc2006-10-11 01:20:57 -0700934 * use in a different page. */
dingdinghuaba869022010-02-15 16:35:42 -0500935 if (buffer_freed(bh) && !jh->b_next_transaction) {
Dave Kleikamp470decc2006-10-11 01:20:57 -0700936 clear_buffer_freed(bh);
937 clear_buffer_jbddirty(bh);
938 }
939
940 if (buffer_jbddirty(bh)) {
941 JBUFFER_TRACE(jh, "add to new checkpointing trans");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700942 __jbd2_journal_insert_checkpoint(jh, commit_transaction);
Hidehiro Kawai7ad74452008-10-10 20:29:31 -0400943 if (is_journal_aborted(journal))
944 clear_buffer_jbddirty(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700945 JBUFFER_TRACE(jh, "refile for checkpoint writeback");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700946 __jbd2_journal_refile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700947 jbd_unlock_bh_state(bh);
948 } else {
949 J_ASSERT_BH(bh, !buffer_dirty(bh));
950 /* The buffer on BJ_Forget list and not jbddirty means
951 * it has been freed by this transaction and hence it
952 * could not have been reallocated until this
953 * transaction has committed. *BUT* it could be
954 * reallocated once we have written all the data to
955 * disk and before we process the buffer on BJ_Forget
956 * list. */
957 JBUFFER_TRACE(jh, "refile or unfile freed buffer");
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700958 __jbd2_journal_refile_buffer(jh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700959 if (!jh->b_transaction) {
960 jbd_unlock_bh_state(bh);
961 /* needs a brelse */
Mingming Caof7f4bcc2006-10-11 01:20:59 -0700962 jbd2_journal_remove_journal_head(bh);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700963 release_buffer_page(bh);
964 } else
965 jbd_unlock_bh_state(bh);
966 }
967 cond_resched_lock(&journal->j_list_lock);
968 }
969 spin_unlock(&journal->j_list_lock);
970 /*
Jan Karaf5a7a6b2008-01-28 23:58:27 -0500971 * This is a bit sleazy. We use j_list_lock to protect transition
972 * of a transaction into T_FINISHED state and calling
973 * __jbd2_journal_drop_transaction(). Otherwise we could race with
974 * other checkpointing code processing the transaction...
Dave Kleikamp470decc2006-10-11 01:20:57 -0700975 */
Theodore Ts'oa931da62010-08-03 21:35:12 -0400976 write_lock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700977 spin_lock(&journal->j_list_lock);
978 /*
979 * Now recheck if some buffers did not get attached to the transaction
980 * while the lock was dropped...
981 */
982 if (commit_transaction->t_forget) {
983 spin_unlock(&journal->j_list_lock);
Theodore Ts'oa931da62010-08-03 21:35:12 -0400984 write_unlock(&journal->j_state_lock);
Dave Kleikamp470decc2006-10-11 01:20:57 -0700985 goto restart_loop;
986 }
987
988 /* Done with this transaction! */
989
Jan Kara87c89c22008-07-11 19:27:31 -0400990 jbd_debug(3, "JBD: commit phase 7\n");
Dave Kleikamp470decc2006-10-11 01:20:57 -0700991
992 J_ASSERT(commit_transaction->t_state == T_COMMIT);
993
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500994 commit_transaction->t_start = jiffies;
Theodore Ts'obf699322009-09-30 00:32:06 -0400995 stats.run.rs_logging = jbd2_time_diff(stats.run.rs_logging,
996 commit_transaction->t_start);
Johann Lombardi8e85fb32008-01-28 23:58:27 -0500997
998 /*
Theodore Ts'obf699322009-09-30 00:32:06 -0400999 * File the transaction statistics
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001000 */
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001001 stats.ts_tid = commit_transaction->t_tid;
Theodore Ts'o8dd42042010-08-03 21:38:29 -04001002 stats.run.rs_handle_count =
1003 atomic_read(&commit_transaction->t_handle_count);
Theodore Ts'obf699322009-09-30 00:32:06 -04001004 trace_jbd2_run_stats(journal->j_fs_dev->bd_dev,
1005 commit_transaction->t_tid, &stats.run);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001006
1007 /*
1008 * Calculate overall stats
1009 */
Theodore Ts'obf699322009-09-30 00:32:06 -04001010 spin_lock(&journal->j_history_lock);
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001011 journal->j_stats.ts_tid++;
Theodore Ts'obf699322009-09-30 00:32:06 -04001012 journal->j_stats.run.rs_wait += stats.run.rs_wait;
1013 journal->j_stats.run.rs_running += stats.run.rs_running;
1014 journal->j_stats.run.rs_locked += stats.run.rs_locked;
1015 journal->j_stats.run.rs_flushing += stats.run.rs_flushing;
1016 journal->j_stats.run.rs_logging += stats.run.rs_logging;
1017 journal->j_stats.run.rs_handle_count += stats.run.rs_handle_count;
1018 journal->j_stats.run.rs_blocks += stats.run.rs_blocks;
1019 journal->j_stats.run.rs_blocks_logged += stats.run.rs_blocks_logged;
Johann Lombardi8e85fb32008-01-28 23:58:27 -05001020 spin_unlock(&journal->j_history_lock);
1021
Dave Kleikamp470decc2006-10-11 01:20:57 -07001022 commit_transaction->t_state = T_FINISHED;
1023 J_ASSERT(commit_transaction == journal->j_committing_transaction);
1024 journal->j_commit_sequence = commit_transaction->t_tid;
1025 journal->j_committing_transaction = NULL;
Josef Bacike07f7182008-11-26 01:14:26 -05001026 commit_time = ktime_to_ns(ktime_sub(ktime_get(), start_time));
Dave Kleikamp470decc2006-10-11 01:20:57 -07001027
Josef Bacike07f7182008-11-26 01:14:26 -05001028 /*
1029 * weight the commit time higher than the average time so we don't
1030 * react too strongly to vast changes in the commit time
1031 */
1032 if (likely(journal->j_average_commit_time))
1033 journal->j_average_commit_time = (commit_time +
1034 journal->j_average_commit_time*3) / 4;
1035 else
1036 journal->j_average_commit_time = commit_time;
Theodore Ts'oa931da62010-08-03 21:35:12 -04001037 write_unlock(&journal->j_state_lock);
Theodore Ts'o6c20ec82008-10-28 21:08:20 -04001038
Jan Karaf89b7792007-07-15 23:37:20 -07001039 if (commit_transaction->t_checkpoint_list == NULL &&
1040 commit_transaction->t_checkpoint_io_list == NULL) {
Mingming Caof7f4bcc2006-10-11 01:20:59 -07001041 __jbd2_journal_drop_transaction(journal, commit_transaction);
Aneesh Kumar K.Vfb684072008-11-06 17:50:21 -05001042 to_free = 1;
Dave Kleikamp470decc2006-10-11 01:20:57 -07001043 } else {
1044 if (journal->j_checkpoint_transactions == NULL) {
1045 journal->j_checkpoint_transactions = commit_transaction;
1046 commit_transaction->t_cpnext = commit_transaction;
1047 commit_transaction->t_cpprev = commit_transaction;
1048 } else {
1049 commit_transaction->t_cpnext =
1050 journal->j_checkpoint_transactions;
1051 commit_transaction->t_cpprev =
1052 commit_transaction->t_cpnext->t_cpprev;
1053 commit_transaction->t_cpnext->t_cpprev =
1054 commit_transaction;
1055 commit_transaction->t_cpprev->t_cpnext =
1056 commit_transaction;
1057 }
1058 }
1059 spin_unlock(&journal->j_list_lock);
1060
Aneesh Kumar K.Vfb684072008-11-06 17:50:21 -05001061 if (journal->j_commit_callback)
1062 journal->j_commit_callback(journal, commit_transaction);
1063
Theodore Ts'o879c5e62009-06-17 11:47:48 -04001064 trace_jbd2_end_commit(journal, commit_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001065 jbd_debug(1, "JBD: commit %d complete, head %d\n",
1066 journal->j_commit_sequence, journal->j_tail_sequence);
Aneesh Kumar K.Vfb684072008-11-06 17:50:21 -05001067 if (to_free)
1068 kfree(commit_transaction);
Dave Kleikamp470decc2006-10-11 01:20:57 -07001069
1070 wake_up(&journal->j_wait_done_commit);
1071}