Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/fs/jbd/commit.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | * 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> |
| 18 | #include <linux/jbd.h> |
| 19 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/mm.h> |
| 21 | #include <linux/pagemap.h> |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 22 | #include <linux/bio.h> |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 23 | #include <linux/blkdev.h> |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 24 | #include <trace/events/jbd.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | /* |
| 27 | * Default IO end handler for temporary BJ_IO buffer_heads. |
| 28 | */ |
| 29 | static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate) |
| 30 | { |
| 31 | BUFFER_TRACE(bh, ""); |
| 32 | if (uptodate) |
| 33 | set_buffer_uptodate(bh); |
| 34 | else |
| 35 | clear_buffer_uptodate(bh); |
| 36 | unlock_buffer(bh); |
| 37 | } |
| 38 | |
| 39 | /* |
| 40 | * When an ext3-ordered file is truncated, it is possible that many pages are |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 41 | * not successfully freed, because they are attached to a committing transaction. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | * After the transaction commits, these pages are left on the LRU, with no |
| 43 | * ->mapping, and with attached buffers. These pages are trivially reclaimable |
| 44 | * by the VM, but their apparent absence upsets the VM accounting, and it makes |
| 45 | * the numbers in /proc/meminfo look odd. |
| 46 | * |
| 47 | * So here, we have a buffer which has just come off the forget list. Look to |
| 48 | * see if we can strip all buffers from the backing page. |
| 49 | * |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 50 | * Called under journal->j_list_lock. The caller provided us with a ref |
| 51 | * against the buffer, and we drop that here. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | */ |
| 53 | static void release_buffer_page(struct buffer_head *bh) |
| 54 | { |
| 55 | struct page *page; |
| 56 | |
| 57 | if (buffer_dirty(bh)) |
| 58 | goto nope; |
| 59 | if (atomic_read(&bh->b_count) != 1) |
| 60 | goto nope; |
| 61 | page = bh->b_page; |
| 62 | if (!page) |
| 63 | goto nope; |
| 64 | if (page->mapping) |
| 65 | goto nope; |
| 66 | |
| 67 | /* OK, it's a truncated page */ |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 68 | if (!trylock_page(page)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | goto nope; |
| 70 | |
| 71 | page_cache_get(page); |
| 72 | __brelse(bh); |
| 73 | try_to_free_buffers(page); |
| 74 | unlock_page(page); |
| 75 | page_cache_release(page); |
| 76 | return; |
| 77 | |
| 78 | nope: |
| 79 | __brelse(bh); |
| 80 | } |
| 81 | |
| 82 | /* |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 83 | * Decrement reference counter for data buffer. If it has been marked |
| 84 | * 'BH_Freed', release it and the page to which it belongs if possible. |
| 85 | */ |
| 86 | static void release_data_buffer(struct buffer_head *bh) |
| 87 | { |
| 88 | if (buffer_freed(bh)) { |
| 89 | clear_buffer_freed(bh); |
| 90 | release_buffer_page(bh); |
| 91 | } else |
| 92 | put_bh(bh); |
| 93 | } |
| 94 | |
| 95 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | * Try to acquire jbd_lock_bh_state() against the buffer, when j_list_lock is |
| 97 | * held. For ranking reasons we must trylock. If we lose, schedule away and |
| 98 | * return 0. j_list_lock is dropped in this case. |
| 99 | */ |
| 100 | static int inverted_lock(journal_t *journal, struct buffer_head *bh) |
| 101 | { |
| 102 | if (!jbd_trylock_bh_state(bh)) { |
| 103 | spin_unlock(&journal->j_list_lock); |
| 104 | schedule(); |
| 105 | return 0; |
| 106 | } |
| 107 | return 1; |
| 108 | } |
| 109 | |
| 110 | /* Done it all: now write the commit record. We should have |
| 111 | * cleaned up our previous buffers by now, so if we are in abort |
| 112 | * mode we can now just skip the rest of the journal write |
| 113 | * entirely. |
| 114 | * |
| 115 | * Returns 1 if the journal needs to be aborted or 0 on success |
| 116 | */ |
| 117 | static int journal_write_commit_record(journal_t *journal, |
| 118 | transaction_t *commit_transaction) |
| 119 | { |
| 120 | struct journal_head *descriptor; |
| 121 | struct buffer_head *bh; |
Jan Kara | 5315217 | 2008-02-01 08:26:46 -0500 | [diff] [blame] | 122 | journal_header_t *header; |
| 123 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
| 125 | if (is_journal_aborted(journal)) |
| 126 | return 0; |
| 127 | |
| 128 | descriptor = journal_get_descriptor_buffer(journal); |
| 129 | if (!descriptor) |
| 130 | return 1; |
| 131 | |
| 132 | bh = jh2bh(descriptor); |
| 133 | |
Jan Kara | 5315217 | 2008-02-01 08:26:46 -0500 | [diff] [blame] | 134 | header = (journal_header_t *)(bh->b_data); |
| 135 | header->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER); |
| 136 | header->h_blocktype = cpu_to_be32(JFS_COMMIT_BLOCK); |
| 137 | header->h_sequence = cpu_to_be32(commit_transaction->t_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | JBUFFER_TRACE(descriptor, "write commit block"); |
| 140 | set_buffer_dirty(bh); |
Christoph Hellwig | 87e9951 | 2010-08-11 17:05:45 +0200 | [diff] [blame] | 141 | |
Christoph Hellwig | 4524451 | 2010-08-18 05:29:16 -0400 | [diff] [blame] | 142 | if (journal->j_flags & JFS_BARRIER) |
| 143 | ret = __sync_dirty_buffer(bh, WRITE_SYNC | WRITE_FLUSH_FUA); |
| 144 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | ret = sync_dirty_buffer(bh); |
Christoph Hellwig | 87e9951 | 2010-08-11 17:05:45 +0200 | [diff] [blame] | 146 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | put_bh(bh); /* One for getblk() */ |
| 148 | journal_put_journal_head(descriptor); |
| 149 | |
| 150 | return (ret == -EIO); |
| 151 | } |
| 152 | |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 153 | static void journal_do_submit_data(struct buffer_head **wbuf, int bufs, |
| 154 | int write_op) |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 155 | { |
| 156 | int i; |
| 157 | |
| 158 | for (i = 0; i < bufs; i++) { |
| 159 | wbuf[i]->b_end_io = end_buffer_write_sync; |
| 160 | /* We use-up our safety reference in submit_bh() */ |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 161 | submit_bh(write_op, wbuf[i]); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 162 | } |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Submit all the data buffers to disk |
| 167 | */ |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 168 | static int journal_submit_data_buffers(journal_t *journal, |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 169 | transaction_t *commit_transaction, |
| 170 | int write_op) |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 171 | { |
| 172 | struct journal_head *jh; |
| 173 | struct buffer_head *bh; |
| 174 | int locked; |
| 175 | int bufs = 0; |
| 176 | struct buffer_head **wbuf = journal->j_wbuf; |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 177 | int err = 0; |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 178 | |
| 179 | /* |
| 180 | * Whenever we unlock the journal and sleep, things can get added |
| 181 | * onto ->t_sync_datalist, so we have to keep looping back to |
| 182 | * write_out_data until we *know* that the list is empty. |
| 183 | * |
| 184 | * Cleanup any flushed data buffers from the data list. Even in |
| 185 | * abort mode, we want to flush this out as soon as possible. |
| 186 | */ |
| 187 | write_out_data: |
| 188 | cond_resched(); |
| 189 | spin_lock(&journal->j_list_lock); |
| 190 | |
| 191 | while (commit_transaction->t_sync_datalist) { |
| 192 | jh = commit_transaction->t_sync_datalist; |
| 193 | bh = jh2bh(jh); |
| 194 | locked = 0; |
| 195 | |
| 196 | /* Get reference just to make sure buffer does not disappear |
| 197 | * when we are forced to drop various locks */ |
| 198 | get_bh(bh); |
| 199 | /* If the buffer is dirty, we need to submit IO and hence |
| 200 | * we need the buffer lock. We try to lock the buffer without |
| 201 | * blocking. If we fail, we need to drop j_list_lock and do |
| 202 | * blocking lock_buffer(). |
| 203 | */ |
| 204 | if (buffer_dirty(bh)) { |
Nick Piggin | ca5de40 | 2008-08-02 12:02:13 +0200 | [diff] [blame] | 205 | if (!trylock_buffer(bh)) { |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 206 | BUFFER_TRACE(bh, "needs blocking lock"); |
| 207 | spin_unlock(&journal->j_list_lock); |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 208 | trace_jbd_do_submit_data(journal, |
| 209 | commit_transaction); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 210 | /* Write out all data to prevent deadlocks */ |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 211 | journal_do_submit_data(wbuf, bufs, write_op); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 212 | bufs = 0; |
| 213 | lock_buffer(bh); |
| 214 | spin_lock(&journal->j_list_lock); |
| 215 | } |
| 216 | locked = 1; |
| 217 | } |
| 218 | /* We have to get bh_state lock. Again out of order, sigh. */ |
| 219 | if (!inverted_lock(journal, bh)) { |
| 220 | jbd_lock_bh_state(bh); |
| 221 | spin_lock(&journal->j_list_lock); |
| 222 | } |
| 223 | /* Someone already cleaned up the buffer? */ |
Jan Kara | a61d90d | 2009-06-09 16:26:26 -0700 | [diff] [blame] | 224 | if (!buffer_jbd(bh) || bh2jh(bh) != jh |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 225 | || jh->b_transaction != commit_transaction |
| 226 | || jh->b_jlist != BJ_SyncData) { |
| 227 | jbd_unlock_bh_state(bh); |
| 228 | if (locked) |
| 229 | unlock_buffer(bh); |
| 230 | BUFFER_TRACE(bh, "already cleaned up"); |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 231 | release_data_buffer(bh); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 232 | continue; |
| 233 | } |
| 234 | if (locked && test_clear_buffer_dirty(bh)) { |
| 235 | BUFFER_TRACE(bh, "needs writeout, adding to array"); |
| 236 | wbuf[bufs++] = bh; |
| 237 | __journal_file_buffer(jh, commit_transaction, |
| 238 | BJ_Locked); |
| 239 | jbd_unlock_bh_state(bh); |
| 240 | if (bufs == journal->j_wbufsize) { |
| 241 | spin_unlock(&journal->j_list_lock); |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 242 | trace_jbd_do_submit_data(journal, |
| 243 | commit_transaction); |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 244 | journal_do_submit_data(wbuf, bufs, write_op); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 245 | bufs = 0; |
| 246 | goto write_out_data; |
| 247 | } |
Hisashi Hifumi | 6f5a9da | 2006-12-22 01:11:50 -0800 | [diff] [blame] | 248 | } else if (!locked && buffer_locked(bh)) { |
| 249 | __journal_file_buffer(jh, commit_transaction, |
| 250 | BJ_Locked); |
| 251 | jbd_unlock_bh_state(bh); |
| 252 | put_bh(bh); |
| 253 | } else { |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 254 | BUFFER_TRACE(bh, "writeout complete: unfile"); |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 255 | if (unlikely(!buffer_uptodate(bh))) |
| 256 | err = -EIO; |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 257 | __journal_unfile_buffer(jh); |
| 258 | jbd_unlock_bh_state(bh); |
| 259 | if (locked) |
| 260 | unlock_buffer(bh); |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 261 | release_data_buffer(bh); |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 262 | } |
| 263 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 264 | if (need_resched() || spin_needbreak(&journal->j_list_lock)) { |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 265 | spin_unlock(&journal->j_list_lock); |
| 266 | goto write_out_data; |
| 267 | } |
| 268 | } |
| 269 | spin_unlock(&journal->j_list_lock); |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 270 | trace_jbd_do_submit_data(journal, commit_transaction); |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 271 | journal_do_submit_data(wbuf, bufs, write_op); |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 272 | |
| 273 | return err; |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 274 | } |
| 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | /* |
| 277 | * journal_commit_transaction |
| 278 | * |
| 279 | * The primary function for committing a transaction to the log. This |
| 280 | * function is called by the journal thread to begin a complete commit. |
| 281 | */ |
| 282 | void journal_commit_transaction(journal_t *journal) |
| 283 | { |
| 284 | transaction_t *commit_transaction; |
| 285 | struct journal_head *jh, *new_jh, *descriptor; |
| 286 | struct buffer_head **wbuf = journal->j_wbuf; |
| 287 | int bufs; |
| 288 | int flags; |
| 289 | int err; |
Jan Kara | 9c28cbc | 2009-08-03 19:21:00 +0200 | [diff] [blame] | 290 | unsigned int blocknr; |
Josef Bacik | f420d4d | 2009-01-07 18:07:24 -0800 | [diff] [blame] | 291 | ktime_t start_time; |
| 292 | u64 commit_time; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | char *tagp = NULL; |
| 294 | journal_header_t *header; |
| 295 | journal_block_tag_t *tag = NULL; |
| 296 | int space_left = 0; |
| 297 | int first_tag = 0; |
| 298 | int tag_flag; |
| 299 | int i; |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 300 | struct blk_plug plug; |
Jan Kara | 2db938b | 2011-02-21 17:25:37 +0100 | [diff] [blame] | 301 | int write_op = WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | /* |
| 304 | * First job: lock down the current transaction and wait for |
| 305 | * all outstanding updates to complete. |
| 306 | */ |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | /* Do we need to erase the effects of a prior journal_flush? */ |
| 309 | if (journal->j_flags & JFS_FLUSHED) { |
| 310 | jbd_debug(3, "super block updated\n"); |
Jan Kara | 1ce8486 | 2012-04-07 12:50:13 +0200 | [diff] [blame^] | 311 | mutex_lock(&journal->j_checkpoint_mutex); |
Jan Kara | 9754e39 | 2012-04-07 12:33:03 +0200 | [diff] [blame] | 312 | journal_update_sb_log_tail(journal); |
Jan Kara | 1ce8486 | 2012-04-07 12:50:13 +0200 | [diff] [blame^] | 313 | mutex_unlock(&journal->j_checkpoint_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } else { |
| 315 | jbd_debug(3, "superblock not updated\n"); |
| 316 | } |
| 317 | |
| 318 | J_ASSERT(journal->j_running_transaction != NULL); |
| 319 | J_ASSERT(journal->j_committing_transaction == NULL); |
| 320 | |
| 321 | commit_transaction = journal->j_running_transaction; |
| 322 | J_ASSERT(commit_transaction->t_state == T_RUNNING); |
| 323 | |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 324 | trace_jbd_start_commit(journal, commit_transaction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | jbd_debug(1, "JBD: starting commit of transaction %d\n", |
| 326 | commit_transaction->t_tid); |
| 327 | |
| 328 | spin_lock(&journal->j_state_lock); |
| 329 | commit_transaction->t_state = T_LOCKED; |
| 330 | |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 331 | trace_jbd_commit_locking(journal, commit_transaction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | spin_lock(&commit_transaction->t_handle_lock); |
| 333 | while (commit_transaction->t_updates) { |
| 334 | DEFINE_WAIT(wait); |
| 335 | |
| 336 | prepare_to_wait(&journal->j_wait_updates, &wait, |
| 337 | TASK_UNINTERRUPTIBLE); |
| 338 | if (commit_transaction->t_updates) { |
| 339 | spin_unlock(&commit_transaction->t_handle_lock); |
| 340 | spin_unlock(&journal->j_state_lock); |
| 341 | schedule(); |
| 342 | spin_lock(&journal->j_state_lock); |
| 343 | spin_lock(&commit_transaction->t_handle_lock); |
| 344 | } |
| 345 | finish_wait(&journal->j_wait_updates, &wait); |
| 346 | } |
| 347 | spin_unlock(&commit_transaction->t_handle_lock); |
| 348 | |
| 349 | J_ASSERT (commit_transaction->t_outstanding_credits <= |
| 350 | journal->j_max_transaction_buffers); |
| 351 | |
| 352 | /* |
| 353 | * First thing we are allowed to do is to discard any remaining |
| 354 | * BJ_Reserved buffers. Note, it is _not_ permissible to assume |
| 355 | * that there are no such buffers: if a large filesystem |
| 356 | * operation like a truncate needs to split itself over multiple |
| 357 | * transactions, then it may try to do a journal_restart() while |
| 358 | * there are still BJ_Reserved buffers outstanding. These must |
| 359 | * be released cleanly from the current transaction. |
| 360 | * |
| 361 | * In this case, the filesystem must still reserve write access |
| 362 | * again before modifying the buffer in the new transaction, but |
| 363 | * we do not require it to remember exactly which old buffers it |
| 364 | * has reserved. This is consistent with the existing behaviour |
| 365 | * that multiple journal_get_write_access() calls to the same |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 366 | * buffer are perfectly permissible. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | */ |
| 368 | while (commit_transaction->t_reserved_list) { |
| 369 | jh = commit_transaction->t_reserved_list; |
| 370 | JBUFFER_TRACE(jh, "reserved, unused: refile"); |
| 371 | /* |
| 372 | * A journal_get_undo_access()+journal_release_buffer() may |
| 373 | * leave undo-committed data. |
| 374 | */ |
| 375 | if (jh->b_committed_data) { |
| 376 | struct buffer_head *bh = jh2bh(jh); |
| 377 | |
| 378 | jbd_lock_bh_state(bh); |
Mingming Cao | c089d49 | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 379 | jbd_free(jh->b_committed_data, bh->b_size); |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 380 | jh->b_committed_data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | jbd_unlock_bh_state(bh); |
| 382 | } |
| 383 | journal_refile_buffer(journal, jh); |
| 384 | } |
| 385 | |
| 386 | /* |
| 387 | * Now try to drop any written-back buffers from the journal's |
| 388 | * checkpoint lists. We do this *before* commit because it potentially |
| 389 | * frees some memory |
| 390 | */ |
| 391 | spin_lock(&journal->j_list_lock); |
| 392 | __journal_clean_checkpoint_list(journal); |
| 393 | spin_unlock(&journal->j_list_lock); |
| 394 | |
| 395 | jbd_debug (3, "JBD: commit phase 1\n"); |
| 396 | |
| 397 | /* |
Yongqiang Yang | 8c111b3 | 2011-11-19 17:34:29 +0800 | [diff] [blame] | 398 | * Clear revoked flag to reflect there is no revoked buffers |
| 399 | * in the next transaction which is going to be started. |
| 400 | */ |
| 401 | journal_clear_buffer_revoked_flags(journal); |
| 402 | |
| 403 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | * Switch to a new revoke table. |
| 405 | */ |
| 406 | journal_switch_revoke_table(journal); |
| 407 | |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 408 | trace_jbd_commit_flushing(journal, commit_transaction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | commit_transaction->t_state = T_FLUSH; |
| 410 | journal->j_committing_transaction = commit_transaction; |
| 411 | journal->j_running_transaction = NULL; |
Josef Bacik | f420d4d | 2009-01-07 18:07:24 -0800 | [diff] [blame] | 412 | start_time = ktime_get(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | commit_transaction->t_log_start = journal->j_head; |
| 414 | wake_up(&journal->j_wait_transaction_locked); |
| 415 | spin_unlock(&journal->j_state_lock); |
| 416 | |
| 417 | jbd_debug (3, "JBD: commit phase 2\n"); |
| 418 | |
Jan Kara | 2db938b | 2011-02-21 17:25:37 +0100 | [diff] [blame] | 419 | if (tid_geq(journal->j_commit_waited, commit_transaction->t_tid)) |
| 420 | write_op = WRITE_SYNC; |
| 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | * Now start flushing things to disk, in the order they appear |
| 424 | * on the transaction lists. Data blocks go first. |
| 425 | */ |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 426 | blk_start_plug(&plug); |
Theodore Ts'o | 512a004 | 2009-03-27 22:14:27 -0400 | [diff] [blame] | 427 | err = journal_submit_data_buffers(journal, commit_transaction, |
Jan Kara | 2db938b | 2011-02-21 17:25:37 +0100 | [diff] [blame] | 428 | write_op); |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 429 | blk_finish_plug(&plug); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | |
| 431 | /* |
| 432 | * Wait for all previously submitted IO to complete. |
| 433 | */ |
Jan Kara | 3998b93 | 2006-09-25 23:30:53 -0700 | [diff] [blame] | 434 | spin_lock(&journal->j_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | while (commit_transaction->t_locked_list) { |
| 436 | struct buffer_head *bh; |
| 437 | |
| 438 | jh = commit_transaction->t_locked_list->b_tprev; |
| 439 | bh = jh2bh(jh); |
| 440 | get_bh(bh); |
| 441 | if (buffer_locked(bh)) { |
| 442 | spin_unlock(&journal->j_list_lock); |
| 443 | wait_on_buffer(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | spin_lock(&journal->j_list_lock); |
| 445 | } |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 446 | if (unlikely(!buffer_uptodate(bh))) { |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 447 | if (!trylock_page(bh->b_page)) { |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 448 | spin_unlock(&journal->j_list_lock); |
| 449 | lock_page(bh->b_page); |
| 450 | spin_lock(&journal->j_list_lock); |
| 451 | } |
| 452 | if (bh->b_page->mapping) |
| 453 | set_bit(AS_EIO, &bh->b_page->mapping->flags); |
| 454 | |
| 455 | unlock_page(bh->b_page); |
| 456 | SetPageError(bh->b_page); |
| 457 | err = -EIO; |
| 458 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | if (!inverted_lock(journal, bh)) { |
| 460 | put_bh(bh); |
| 461 | spin_lock(&journal->j_list_lock); |
| 462 | continue; |
| 463 | } |
Jan Kara | a61d90d | 2009-06-09 16:26:26 -0700 | [diff] [blame] | 464 | if (buffer_jbd(bh) && bh2jh(bh) == jh && |
| 465 | jh->b_transaction == commit_transaction && |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 466 | jh->b_jlist == BJ_Locked) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | __journal_unfile_buffer(jh); |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 468 | jbd_unlock_bh_state(bh); |
Toshiyuki Okajima | fc80c44 | 2008-07-25 01:46:29 -0700 | [diff] [blame] | 469 | release_data_buffer(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | cond_resched_lock(&journal->j_list_lock); |
| 471 | } |
| 472 | spin_unlock(&journal->j_list_lock); |
| 473 | |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 474 | if (err) { |
| 475 | char b[BDEVNAME_SIZE]; |
| 476 | |
| 477 | printk(KERN_WARNING |
| 478 | "JBD: Detected IO errors while flushing file data " |
| 479 | "on %s\n", bdevname(journal->j_fs_dev, b)); |
Hidehiro Kawai | 0e4fb5e | 2008-10-18 20:27:57 -0700 | [diff] [blame] | 480 | if (journal->j_flags & JFS_ABORT_ON_SYNCDATA_ERR) |
| 481 | journal_abort(journal, err); |
Hidehiro Kawai | cbe5f46 | 2008-07-25 01:46:30 -0700 | [diff] [blame] | 482 | err = 0; |
| 483 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 485 | blk_start_plug(&plug); |
| 486 | |
Jan Kara | 2db938b | 2011-02-21 17:25:37 +0100 | [diff] [blame] | 487 | journal_write_revoke_records(journal, commit_transaction, write_op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | /* |
| 490 | * If we found any dirty or locked buffers, then we should have |
| 491 | * looped back up to the write_out_data label. If there weren't |
| 492 | * any then journal_clean_data_list should have wiped the list |
| 493 | * clean by now, so check that it is in fact empty. |
| 494 | */ |
| 495 | J_ASSERT (commit_transaction->t_sync_datalist == NULL); |
| 496 | |
| 497 | jbd_debug (3, "JBD: commit phase 3\n"); |
| 498 | |
| 499 | /* |
| 500 | * Way to go: we have now written out all of the data for a |
| 501 | * transaction! Now comes the tricky part: we need to write out |
| 502 | * metadata. Loop over the transaction's entire buffer list: |
| 503 | */ |
Mingming Cao | 772279c | 2008-05-14 16:05:41 -0700 | [diff] [blame] | 504 | spin_lock(&journal->j_state_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | commit_transaction->t_state = T_COMMIT; |
Mingming Cao | 772279c | 2008-05-14 16:05:41 -0700 | [diff] [blame] | 506 | spin_unlock(&journal->j_state_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 508 | trace_jbd_commit_logging(journal, commit_transaction); |
Josef Bacik | 5b9a499 | 2008-04-28 02:16:12 -0700 | [diff] [blame] | 509 | J_ASSERT(commit_transaction->t_nr_buffers <= |
| 510 | commit_transaction->t_outstanding_credits); |
| 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | descriptor = NULL; |
| 513 | bufs = 0; |
| 514 | while (commit_transaction->t_buffers) { |
| 515 | |
| 516 | /* Find the next buffer to be journaled... */ |
| 517 | |
| 518 | jh = commit_transaction->t_buffers; |
| 519 | |
| 520 | /* If we're in abort mode, we just un-journal the buffer and |
Hidehiro Kawai | 885e353 | 2008-10-18 20:27:54 -0700 | [diff] [blame] | 521 | release it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | |
| 523 | if (is_journal_aborted(journal)) { |
Hidehiro Kawai | 885e353 | 2008-10-18 20:27:54 -0700 | [diff] [blame] | 524 | clear_buffer_jbddirty(jh2bh(jh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | JBUFFER_TRACE(jh, "journal is aborting: refile"); |
| 526 | journal_refile_buffer(journal, jh); |
| 527 | /* If that was the last one, we need to clean up |
| 528 | * any descriptor buffers which may have been |
| 529 | * already allocated, even if we are now |
| 530 | * aborting. */ |
| 531 | if (!commit_transaction->t_buffers) |
| 532 | goto start_journal_io; |
| 533 | continue; |
| 534 | } |
| 535 | |
| 536 | /* Make sure we have a descriptor block in which to |
| 537 | record the metadata buffer. */ |
| 538 | |
| 539 | if (!descriptor) { |
| 540 | struct buffer_head *bh; |
| 541 | |
| 542 | J_ASSERT (bufs == 0); |
| 543 | |
| 544 | jbd_debug(4, "JBD: get descriptor\n"); |
| 545 | |
| 546 | descriptor = journal_get_descriptor_buffer(journal); |
| 547 | if (!descriptor) { |
Jan Kara | 7a266e7 | 2007-10-18 23:39:22 -0700 | [diff] [blame] | 548 | journal_abort(journal, -EIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | continue; |
| 550 | } |
| 551 | |
| 552 | bh = jh2bh(descriptor); |
| 553 | jbd_debug(4, "JBD: got buffer %llu (%p)\n", |
| 554 | (unsigned long long)bh->b_blocknr, bh->b_data); |
| 555 | header = (journal_header_t *)&bh->b_data[0]; |
| 556 | header->h_magic = cpu_to_be32(JFS_MAGIC_NUMBER); |
| 557 | header->h_blocktype = cpu_to_be32(JFS_DESCRIPTOR_BLOCK); |
| 558 | header->h_sequence = cpu_to_be32(commit_transaction->t_tid); |
| 559 | |
| 560 | tagp = &bh->b_data[sizeof(journal_header_t)]; |
| 561 | space_left = bh->b_size - sizeof(journal_header_t); |
| 562 | first_tag = 1; |
| 563 | set_buffer_jwrite(bh); |
| 564 | set_buffer_dirty(bh); |
| 565 | wbuf[bufs++] = bh; |
| 566 | |
| 567 | /* Record it so that we can wait for IO |
| 568 | completion later */ |
| 569 | BUFFER_TRACE(bh, "ph3: file as descriptor"); |
| 570 | journal_file_buffer(descriptor, commit_transaction, |
| 571 | BJ_LogCtl); |
| 572 | } |
| 573 | |
| 574 | /* Where is the buffer to be written? */ |
| 575 | |
| 576 | err = journal_next_log_block(journal, &blocknr); |
| 577 | /* If the block mapping failed, just abandon the buffer |
| 578 | and repeat this loop: we'll fall into the |
| 579 | refile-on-abort condition above. */ |
| 580 | if (err) { |
Jan Kara | 7a266e7 | 2007-10-18 23:39:22 -0700 | [diff] [blame] | 581 | journal_abort(journal, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | continue; |
| 583 | } |
| 584 | |
| 585 | /* |
| 586 | * start_this_handle() uses t_outstanding_credits to determine |
| 587 | * the free space in the log, but this counter is changed |
| 588 | * by journal_next_log_block() also. |
| 589 | */ |
| 590 | commit_transaction->t_outstanding_credits--; |
| 591 | |
| 592 | /* Bump b_count to prevent truncate from stumbling over |
| 593 | the shadowed buffer! @@@ This can go if we ever get |
| 594 | rid of the BJ_IO/BJ_Shadow pairing of buffers. */ |
Namhyung Kim | e4d5e3a | 2010-10-16 17:11:02 +0900 | [diff] [blame] | 595 | get_bh(jh2bh(jh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | |
| 597 | /* Make a temporary IO buffer with which to write it out |
| 598 | (this will requeue both the metadata buffer and the |
| 599 | temporary IO buffer). new_bh goes on BJ_IO*/ |
| 600 | |
Namhyung Kim | a910eef | 2010-10-08 20:05:06 +0900 | [diff] [blame] | 601 | set_buffer_jwrite(jh2bh(jh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | /* |
| 603 | * akpm: journal_write_metadata_buffer() sets |
| 604 | * new_bh->b_transaction to commit_transaction. |
| 605 | * We need to clean this up before we release new_bh |
| 606 | * (which is of type BJ_IO) |
| 607 | */ |
| 608 | JBUFFER_TRACE(jh, "ph3: write metadata"); |
| 609 | flags = journal_write_metadata_buffer(commit_transaction, |
| 610 | jh, &new_jh, blocknr); |
Namhyung Kim | a910eef | 2010-10-08 20:05:06 +0900 | [diff] [blame] | 611 | set_buffer_jwrite(jh2bh(new_jh)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | wbuf[bufs++] = jh2bh(new_jh); |
| 613 | |
| 614 | /* Record the new block's tag in the current descriptor |
| 615 | buffer */ |
| 616 | |
| 617 | tag_flag = 0; |
| 618 | if (flags & 1) |
| 619 | tag_flag |= JFS_FLAG_ESCAPE; |
| 620 | if (!first_tag) |
| 621 | tag_flag |= JFS_FLAG_SAME_UUID; |
| 622 | |
| 623 | tag = (journal_block_tag_t *) tagp; |
| 624 | tag->t_blocknr = cpu_to_be32(jh2bh(jh)->b_blocknr); |
| 625 | tag->t_flags = cpu_to_be32(tag_flag); |
| 626 | tagp += sizeof(journal_block_tag_t); |
| 627 | space_left -= sizeof(journal_block_tag_t); |
| 628 | |
| 629 | if (first_tag) { |
| 630 | memcpy (tagp, journal->j_uuid, 16); |
| 631 | tagp += 16; |
| 632 | space_left -= 16; |
| 633 | first_tag = 0; |
| 634 | } |
| 635 | |
| 636 | /* If there's no more to do, or if the descriptor is full, |
| 637 | let the IO rip! */ |
| 638 | |
| 639 | if (bufs == journal->j_wbufsize || |
| 640 | commit_transaction->t_buffers == NULL || |
| 641 | space_left < sizeof(journal_block_tag_t) + 16) { |
| 642 | |
| 643 | jbd_debug(4, "JBD: Submit %d IOs\n", bufs); |
| 644 | |
| 645 | /* Write an end-of-descriptor marker before |
| 646 | submitting the IOs. "tag" still points to |
| 647 | the last tag we set up. */ |
| 648 | |
| 649 | tag->t_flags |= cpu_to_be32(JFS_FLAG_LAST_TAG); |
| 650 | |
| 651 | start_journal_io: |
| 652 | for (i = 0; i < bufs; i++) { |
| 653 | struct buffer_head *bh = wbuf[i]; |
| 654 | lock_buffer(bh); |
| 655 | clear_buffer_dirty(bh); |
| 656 | set_buffer_uptodate(bh); |
| 657 | bh->b_end_io = journal_end_buffer_io_sync; |
Jan Kara | 2db938b | 2011-02-21 17:25:37 +0100 | [diff] [blame] | 658 | submit_bh(write_op, bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | } |
| 660 | cond_resched(); |
| 661 | |
| 662 | /* Force a new descriptor to be generated next |
| 663 | time round the loop. */ |
| 664 | descriptor = NULL; |
| 665 | bufs = 0; |
| 666 | } |
| 667 | } |
| 668 | |
Jens Axboe | 65ab802 | 2011-03-17 10:56:45 +0100 | [diff] [blame] | 669 | blk_finish_plug(&plug); |
| 670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | /* Lo and behold: we have just managed to send a transaction to |
| 672 | the log. Before we can commit it, wait for the IO so far to |
| 673 | complete. Control buffers being written are on the |
| 674 | transaction's t_log_list queue, and metadata buffers are on |
| 675 | the t_iobuf_list queue. |
| 676 | |
| 677 | Wait for the buffers in reverse order. That way we are |
| 678 | less likely to be woken up until all IOs have completed, and |
| 679 | so we incur less scheduling load. |
| 680 | */ |
| 681 | |
| 682 | jbd_debug(3, "JBD: commit phase 4\n"); |
| 683 | |
| 684 | /* |
| 685 | * akpm: these are BJ_IO, and j_list_lock is not needed. |
| 686 | * See __journal_try_to_free_buffer. |
| 687 | */ |
| 688 | wait_for_iobuf: |
| 689 | while (commit_transaction->t_iobuf_list != NULL) { |
| 690 | struct buffer_head *bh; |
| 691 | |
| 692 | jh = commit_transaction->t_iobuf_list->b_tprev; |
| 693 | bh = jh2bh(jh); |
| 694 | if (buffer_locked(bh)) { |
| 695 | wait_on_buffer(bh); |
| 696 | goto wait_for_iobuf; |
| 697 | } |
| 698 | if (cond_resched()) |
| 699 | goto wait_for_iobuf; |
| 700 | |
| 701 | if (unlikely(!buffer_uptodate(bh))) |
| 702 | err = -EIO; |
| 703 | |
| 704 | clear_buffer_jwrite(bh); |
| 705 | |
| 706 | JBUFFER_TRACE(jh, "ph4: unfile after journal write"); |
| 707 | journal_unfile_buffer(journal, jh); |
| 708 | |
| 709 | /* |
| 710 | * ->t_iobuf_list should contain only dummy buffer_heads |
| 711 | * which were created by journal_write_metadata_buffer(). |
| 712 | */ |
| 713 | BUFFER_TRACE(bh, "dumping temporary bh"); |
| 714 | journal_put_journal_head(jh); |
| 715 | __brelse(bh); |
| 716 | J_ASSERT_BH(bh, atomic_read(&bh->b_count) == 0); |
| 717 | free_buffer_head(bh); |
| 718 | |
| 719 | /* We also have to unlock and free the corresponding |
| 720 | shadowed buffer */ |
| 721 | jh = commit_transaction->t_shadow_list->b_tprev; |
| 722 | bh = jh2bh(jh); |
Namhyung Kim | a910eef | 2010-10-08 20:05:06 +0900 | [diff] [blame] | 723 | clear_buffer_jwrite(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | J_ASSERT_BH(bh, buffer_jbddirty(bh)); |
| 725 | |
| 726 | /* The metadata is now released for reuse, but we need |
| 727 | to remember it against this transaction so that when |
| 728 | we finally commit, we can do any checkpointing |
| 729 | required. */ |
| 730 | JBUFFER_TRACE(jh, "file as BJ_Forget"); |
| 731 | journal_file_buffer(jh, commit_transaction, BJ_Forget); |
Jan Kara | 2842bb2 | 2011-05-05 13:59:35 +0200 | [diff] [blame] | 732 | /* |
| 733 | * Wake up any transactions which were waiting for this |
| 734 | * IO to complete. The barrier must be here so that changes |
| 735 | * by journal_file_buffer() take effect before wake_up_bit() |
| 736 | * does the waitqueue check. |
| 737 | */ |
| 738 | smp_mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | wake_up_bit(&bh->b_state, BH_Unshadow); |
| 740 | JBUFFER_TRACE(jh, "brelse shadowed buffer"); |
| 741 | __brelse(bh); |
| 742 | } |
| 743 | |
| 744 | J_ASSERT (commit_transaction->t_shadow_list == NULL); |
| 745 | |
| 746 | jbd_debug(3, "JBD: commit phase 5\n"); |
| 747 | |
| 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; |
| 752 | |
| 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; |
| 758 | } |
| 759 | if (cond_resched()) |
| 760 | goto wait_for_ctlbuf; |
| 761 | |
| 762 | if (unlikely(!buffer_uptodate(bh))) |
| 763 | err = -EIO; |
| 764 | |
| 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 */ |
| 771 | } |
| 772 | |
Hidehiro Kawai | d1645e5 | 2008-10-18 20:27:53 -0700 | [diff] [blame] | 773 | if (err) |
| 774 | journal_abort(journal, err); |
| 775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | jbd_debug(3, "JBD: commit phase 6\n"); |
| 777 | |
Jan Kara | 03f4d80 | 2010-04-15 22:16:24 +0200 | [diff] [blame] | 778 | /* All metadata is written, now write commit record and do cleanup */ |
| 779 | spin_lock(&journal->j_state_lock); |
| 780 | J_ASSERT(commit_transaction->t_state == T_COMMIT); |
| 781 | commit_transaction->t_state = T_COMMIT_RECORD; |
| 782 | spin_unlock(&journal->j_state_lock); |
| 783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | if (journal_write_commit_record(journal, commit_transaction)) |
| 785 | err = -EIO; |
| 786 | |
| 787 | if (err) |
Jan Kara | 7a266e7 | 2007-10-18 23:39:22 -0700 | [diff] [blame] | 788 | journal_abort(journal, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
| 790 | /* End of a transaction! Finally, we can do checkpoint |
| 791 | processing: any buffers committed as a result of this |
| 792 | transaction can be removed from any checkpoint list it was on |
| 793 | before. */ |
| 794 | |
| 795 | jbd_debug(3, "JBD: commit phase 7\n"); |
| 796 | |
| 797 | J_ASSERT(commit_transaction->t_sync_datalist == NULL); |
| 798 | J_ASSERT(commit_transaction->t_buffers == NULL); |
| 799 | J_ASSERT(commit_transaction->t_checkpoint_list == NULL); |
| 800 | J_ASSERT(commit_transaction->t_iobuf_list == NULL); |
| 801 | J_ASSERT(commit_transaction->t_shadow_list == NULL); |
| 802 | J_ASSERT(commit_transaction->t_log_list == NULL); |
| 803 | |
| 804 | restart_loop: |
Jan Kara | e6c9f5c | 2005-09-06 15:19:09 -0700 | [diff] [blame] | 805 | /* |
| 806 | * As there are other places (journal_unmap_buffer()) adding buffers |
| 807 | * to this list we have to be careful and hold the j_list_lock. |
| 808 | */ |
| 809 | spin_lock(&journal->j_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | while (commit_transaction->t_forget) { |
| 811 | transaction_t *cp_transaction; |
| 812 | struct buffer_head *bh; |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 813 | int try_to_free = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | |
| 815 | jh = commit_transaction->t_forget; |
Jan Kara | e6c9f5c | 2005-09-06 15:19:09 -0700 | [diff] [blame] | 816 | spin_unlock(&journal->j_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | bh = jh2bh(jh); |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 818 | /* |
| 819 | * Get a reference so that bh cannot be freed before we are |
| 820 | * done with it. |
| 821 | */ |
| 822 | get_bh(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | jbd_lock_bh_state(bh); |
| 824 | J_ASSERT_JH(jh, jh->b_transaction == commit_transaction || |
| 825 | jh->b_transaction == journal->j_running_transaction); |
| 826 | |
| 827 | /* |
| 828 | * If there is undo-protected committed data against |
| 829 | * this buffer, then we can remove it now. If it is a |
| 830 | * buffer needing such protection, the old frozen_data |
| 831 | * field now points to a committed version of the |
| 832 | * buffer, so rotate that field to the new committed |
| 833 | * data. |
| 834 | * |
| 835 | * Otherwise, we can just throw away the frozen data now. |
| 836 | */ |
| 837 | if (jh->b_committed_data) { |
Mingming Cao | c089d49 | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 838 | jbd_free(jh->b_committed_data, bh->b_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | jh->b_committed_data = NULL; |
| 840 | if (jh->b_frozen_data) { |
| 841 | jh->b_committed_data = jh->b_frozen_data; |
| 842 | jh->b_frozen_data = NULL; |
| 843 | } |
| 844 | } else if (jh->b_frozen_data) { |
Mingming Cao | c089d49 | 2007-10-16 18:38:25 -0400 | [diff] [blame] | 845 | jbd_free(jh->b_frozen_data, bh->b_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | jh->b_frozen_data = NULL; |
| 847 | } |
| 848 | |
| 849 | spin_lock(&journal->j_list_lock); |
| 850 | cp_transaction = jh->b_cp_transaction; |
| 851 | if (cp_transaction) { |
| 852 | JBUFFER_TRACE(jh, "remove from old cp transaction"); |
| 853 | __journal_remove_checkpoint(jh); |
| 854 | } |
| 855 | |
| 856 | /* Only re-checkpoint the buffer_head if it is marked |
| 857 | * dirty. If the buffer was added to the BJ_Forget list |
| 858 | * by journal_forget, it may no longer be dirty and |
| 859 | * there's no point in keeping a checkpoint record for |
| 860 | * it. */ |
| 861 | |
| 862 | /* A buffer which has been freed while still being |
| 863 | * journaled by a previous transaction may end up still |
| 864 | * being dirty here, but we want to avoid writing back |
Jan Kara | 8696391 | 2010-02-16 20:37:12 +0100 | [diff] [blame] | 865 | * that buffer in the future after the "add to orphan" |
| 866 | * operation been committed, That's not only a performance |
| 867 | * gain, it also stops aliasing problems if the buffer is |
| 868 | * left behind for writeback and gets reallocated for another |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | * use in a different page. */ |
Jan Kara | 8696391 | 2010-02-16 20:37:12 +0100 | [diff] [blame] | 870 | if (buffer_freed(bh) && !jh->b_next_transaction) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | clear_buffer_freed(bh); |
| 872 | clear_buffer_jbddirty(bh); |
| 873 | } |
| 874 | |
| 875 | if (buffer_jbddirty(bh)) { |
| 876 | JBUFFER_TRACE(jh, "add to new checkpointing trans"); |
| 877 | __journal_insert_checkpoint(jh, commit_transaction); |
Hidehiro Kawai | 885e353 | 2008-10-18 20:27:54 -0700 | [diff] [blame] | 878 | if (is_journal_aborted(journal)) |
| 879 | clear_buffer_jbddirty(bh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } else { |
| 881 | J_ASSERT_BH(bh, !buffer_dirty(bh)); |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 882 | /* |
| 883 | * The buffer on BJ_Forget list and not jbddirty means |
Jan Kara | 9ada734 | 2006-06-23 02:05:25 -0700 | [diff] [blame] | 884 | * it has been freed by this transaction and hence it |
| 885 | * could not have been reallocated until this |
| 886 | * transaction has committed. *BUT* it could be |
| 887 | * reallocated once we have written all the data to |
| 888 | * disk and before we process the buffer on BJ_Forget |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 889 | * list. |
| 890 | */ |
| 891 | if (!jh->b_next_transaction) |
| 892 | try_to_free = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | } |
Jan Kara | bb18924 | 2011-06-24 23:11:59 +0200 | [diff] [blame] | 894 | JBUFFER_TRACE(jh, "refile or unfile freed buffer"); |
| 895 | __journal_refile_buffer(jh); |
| 896 | jbd_unlock_bh_state(bh); |
| 897 | if (try_to_free) |
| 898 | release_buffer_page(bh); |
| 899 | else |
| 900 | __brelse(bh); |
Jan Kara | e6c9f5c | 2005-09-06 15:19:09 -0700 | [diff] [blame] | 901 | cond_resched_lock(&journal->j_list_lock); |
| 902 | } |
| 903 | spin_unlock(&journal->j_list_lock); |
| 904 | /* |
Jan Kara | d4beaf4 | 2007-12-04 23:45:27 -0800 | [diff] [blame] | 905 | * This is a bit sleazy. We use j_list_lock to protect transition |
| 906 | * of a transaction into T_FINISHED state and calling |
| 907 | * __journal_drop_transaction(). Otherwise we could race with |
| 908 | * other checkpointing code processing the transaction... |
Jan Kara | e6c9f5c | 2005-09-06 15:19:09 -0700 | [diff] [blame] | 909 | */ |
| 910 | spin_lock(&journal->j_state_lock); |
| 911 | spin_lock(&journal->j_list_lock); |
| 912 | /* |
| 913 | * Now recheck if some buffers did not get attached to the transaction |
| 914 | * while the lock was dropped... |
| 915 | */ |
| 916 | if (commit_transaction->t_forget) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | spin_unlock(&journal->j_list_lock); |
Jan Kara | e6c9f5c | 2005-09-06 15:19:09 -0700 | [diff] [blame] | 918 | spin_unlock(&journal->j_state_lock); |
| 919 | goto restart_loop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
| 922 | /* Done with this transaction! */ |
| 923 | |
| 924 | jbd_debug(3, "JBD: commit phase 8\n"); |
| 925 | |
Jan Kara | 03f4d80 | 2010-04-15 22:16:24 +0200 | [diff] [blame] | 926 | J_ASSERT(commit_transaction->t_state == T_COMMIT_RECORD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | commit_transaction->t_state = T_FINISHED; |
| 929 | J_ASSERT(commit_transaction == journal->j_committing_transaction); |
| 930 | journal->j_commit_sequence = commit_transaction->t_tid; |
| 931 | journal->j_committing_transaction = NULL; |
Josef Bacik | f420d4d | 2009-01-07 18:07:24 -0800 | [diff] [blame] | 932 | commit_time = ktime_to_ns(ktime_sub(ktime_get(), start_time)); |
| 933 | |
| 934 | /* |
| 935 | * weight the commit time higher than the average time so we don't |
| 936 | * react too strongly to vast changes in commit time |
| 937 | */ |
| 938 | if (likely(journal->j_average_commit_time)) |
| 939 | journal->j_average_commit_time = (commit_time*3 + |
| 940 | journal->j_average_commit_time) / 4; |
| 941 | else |
| 942 | journal->j_average_commit_time = commit_time; |
| 943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | spin_unlock(&journal->j_state_lock); |
| 945 | |
Jan Kara | fe28e42 | 2007-07-15 23:37:18 -0700 | [diff] [blame] | 946 | if (commit_transaction->t_checkpoint_list == NULL && |
| 947 | commit_transaction->t_checkpoint_io_list == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | __journal_drop_transaction(journal, commit_transaction); |
| 949 | } else { |
| 950 | if (journal->j_checkpoint_transactions == NULL) { |
| 951 | journal->j_checkpoint_transactions = commit_transaction; |
| 952 | commit_transaction->t_cpnext = commit_transaction; |
| 953 | commit_transaction->t_cpprev = commit_transaction; |
| 954 | } else { |
| 955 | commit_transaction->t_cpnext = |
| 956 | journal->j_checkpoint_transactions; |
| 957 | commit_transaction->t_cpprev = |
| 958 | commit_transaction->t_cpnext->t_cpprev; |
| 959 | commit_transaction->t_cpnext->t_cpprev = |
| 960 | commit_transaction; |
| 961 | commit_transaction->t_cpprev->t_cpnext = |
| 962 | commit_transaction; |
| 963 | } |
| 964 | } |
| 965 | spin_unlock(&journal->j_list_lock); |
| 966 | |
Lukas Czerner | 99cb1a3 | 2011-05-23 18:33:02 +0200 | [diff] [blame] | 967 | trace_jbd_end_commit(journal, commit_transaction); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | jbd_debug(1, "JBD: commit %d complete, head %d\n", |
| 969 | journal->j_commit_sequence, journal->j_tail_sequence); |
| 970 | |
| 971 | wake_up(&journal->j_wait_done_commit); |
| 972 | } |