Theodore Ts'o | f516676 | 2017-12-17 22:00:59 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 2 | /* |
Uwe Kleine-König | 5886269 | 2007-05-09 07:51:49 +0200 | [diff] [blame] | 3 | * linux/fs/jbd2/checkpoint.c |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 4 | * |
| 5 | * Written by Stephen C. Tweedie <[email protected]>, 1999 |
| 6 | * |
| 7 | * Copyright 1999 Red Hat Software --- All Rights Reserved |
| 8 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 9 | * Checkpoint routines for the generic filesystem journaling code. |
| 10 | * Part of the ext2fs journaling system. |
| 11 | * |
| 12 | * Checkpointing is the process of ensuring that a section of the log is |
| 13 | * committed fully to disk, so that that portion of the log can be |
| 14 | * reused. |
| 15 | */ |
| 16 | |
| 17 | #include <linux/time.h> |
| 18 | #include <linux/fs.h> |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 19 | #include <linux/jbd2.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 20 | #include <linux/errno.h> |
| 21 | #include <linux/slab.h> |
Theodore Ts'o | cc3e1bea | 2009-12-23 06:52:08 -0500 | [diff] [blame] | 22 | #include <linux/blkdev.h> |
Theodore Ts'o | 879c5e6 | 2009-06-17 11:47:48 -0400 | [diff] [blame] | 23 | #include <trace/events/jbd2.h> |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 24 | |
| 25 | /* |
| 26 | * Unlink a buffer from a transaction checkpoint list. |
| 27 | * |
| 28 | * Called with j_list_lock held. |
| 29 | */ |
| 30 | static inline void __buffer_unlink_first(struct journal_head *jh) |
| 31 | { |
| 32 | transaction_t *transaction = jh->b_cp_transaction; |
| 33 | |
| 34 | jh->b_cpnext->b_cpprev = jh->b_cpprev; |
| 35 | jh->b_cpprev->b_cpnext = jh->b_cpnext; |
| 36 | if (transaction->t_checkpoint_list == jh) { |
| 37 | transaction->t_checkpoint_list = jh->b_cpnext; |
| 38 | if (transaction->t_checkpoint_list == jh) |
| 39 | transaction->t_checkpoint_list = NULL; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | /* |
| 44 | * Unlink a buffer from a transaction checkpoint(io) list. |
| 45 | * |
| 46 | * Called with j_list_lock held. |
| 47 | */ |
| 48 | static inline void __buffer_unlink(struct journal_head *jh) |
| 49 | { |
| 50 | transaction_t *transaction = jh->b_cp_transaction; |
| 51 | |
| 52 | __buffer_unlink_first(jh); |
| 53 | if (transaction->t_checkpoint_io_list == jh) { |
| 54 | transaction->t_checkpoint_io_list = jh->b_cpnext; |
| 55 | if (transaction->t_checkpoint_io_list == jh) |
| 56 | transaction->t_checkpoint_io_list = NULL; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | /* |
| 61 | * Move a buffer from the checkpoint list to the checkpoint io list |
| 62 | * |
| 63 | * Called with j_list_lock held |
| 64 | */ |
| 65 | static inline void __buffer_relink_io(struct journal_head *jh) |
| 66 | { |
| 67 | transaction_t *transaction = jh->b_cp_transaction; |
| 68 | |
| 69 | __buffer_unlink_first(jh); |
| 70 | |
| 71 | if (!transaction->t_checkpoint_io_list) { |
| 72 | jh->b_cpnext = jh->b_cpprev = jh; |
| 73 | } else { |
| 74 | jh->b_cpnext = transaction->t_checkpoint_io_list; |
| 75 | jh->b_cpprev = transaction->t_checkpoint_io_list->b_cpprev; |
| 76 | jh->b_cpprev->b_cpnext = jh; |
| 77 | jh->b_cpnext->b_cpprev = jh; |
| 78 | } |
| 79 | transaction->t_checkpoint_io_list = jh; |
| 80 | } |
| 81 | |
| 82 | /* |
| 83 | * Try to release a checkpointed buffer from its transaction. |
| 84 | * Returns 1 if we released it and 2 if we also released the |
| 85 | * whole transaction. |
| 86 | * |
| 87 | * Requires j_list_lock |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 88 | */ |
| 89 | static int __try_to_free_cp_buf(struct journal_head *jh) |
| 90 | { |
| 91 | int ret = 0; |
| 92 | struct buffer_head *bh = jh2bh(jh); |
| 93 | |
Jan Kara | 932bb30 | 2012-03-13 22:45:25 -0400 | [diff] [blame] | 94 | if (jh->b_transaction == NULL && !buffer_locked(bh) && |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 95 | !buffer_dirty(bh) && !buffer_write_io_error(bh)) { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 96 | JBUFFER_TRACE(jh, "remove from checkpoint list"); |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 97 | ret = __jbd2_journal_remove_checkpoint(jh) + 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 98 | } |
| 99 | return ret; |
| 100 | } |
| 101 | |
| 102 | /* |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 103 | * __jbd2_log_wait_for_space: wait until there is space in the journal. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 104 | * |
| 105 | * Called under j-state_lock *only*. It will be unlocked if we have to wait |
| 106 | * for a checkpoint to free up some space in the log. |
| 107 | */ |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 108 | void __jbd2_log_wait_for_space(journal_t *journal) |
Theodore Ts'o | 05d5233 | 2020-11-07 00:00:49 -0500 | [diff] [blame] | 109 | __acquires(&journal->j_state_lock) |
| 110 | __releases(&journal->j_state_lock) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 111 | { |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 112 | int nblocks, space_left; |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 113 | /* assert_spin_locked(&journal->j_state_lock); */ |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 114 | |
Jan Kara | 77444ac | 2019-11-05 17:44:25 +0100 | [diff] [blame] | 115 | nblocks = journal->j_max_transaction_buffers; |
Jan Kara | 76c3990 | 2013-06-04 12:12:57 -0400 | [diff] [blame] | 116 | while (jbd2_log_space_left(journal) < nblocks) { |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 117 | write_unlock(&journal->j_state_lock); |
Xiaoguang Wang | 53cf978 | 2019-01-31 23:42:11 -0500 | [diff] [blame] | 118 | mutex_lock_io(&journal->j_checkpoint_mutex); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 119 | |
| 120 | /* |
| 121 | * Test again, another process may have checkpointed while we |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 122 | * were waiting for the checkpoint lock. If there are no |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 123 | * transactions ready to be checkpointed, try to recover |
| 124 | * journal space by calling cleanup_journal_tail(), and if |
| 125 | * that doesn't work, by waiting for the currently committing |
| 126 | * transaction to complete. If there is absolutely no way |
| 127 | * to make progress, this is either a BUG or corrupted |
| 128 | * filesystem, so abort the journal and leave a stack |
| 129 | * trace for forensic evidence. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 130 | */ |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 131 | write_lock(&journal->j_state_lock); |
Dmitry Monakhov | 1245799 | 2014-09-16 14:50:50 -0400 | [diff] [blame] | 132 | if (journal->j_flags & JBD2_ABORT) { |
| 133 | mutex_unlock(&journal->j_checkpoint_mutex); |
| 134 | return; |
| 135 | } |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 136 | spin_lock(&journal->j_list_lock); |
Jan Kara | 76c3990 | 2013-06-04 12:12:57 -0400 | [diff] [blame] | 137 | space_left = jbd2_log_space_left(journal); |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 138 | if (space_left < nblocks) { |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 139 | int chkpt = journal->j_checkpoint_transactions != NULL; |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 140 | tid_t tid = 0; |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 141 | |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 142 | if (journal->j_committing_transaction) |
| 143 | tid = journal->j_committing_transaction->t_tid; |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 144 | spin_unlock(&journal->j_list_lock); |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 145 | write_unlock(&journal->j_state_lock); |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 146 | if (chkpt) { |
| 147 | jbd2_log_do_checkpoint(journal); |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 148 | } else if (jbd2_cleanup_journal_tail(journal) == 0) { |
| 149 | /* We were able to recover space; yay! */ |
| 150 | ; |
| 151 | } else if (tid) { |
Paul Gortmaker | 0ef5418 | 2013-06-12 22:47:35 -0400 | [diff] [blame] | 152 | /* |
| 153 | * jbd2_journal_commit_transaction() may want |
| 154 | * to take the checkpoint_mutex if JBD2_FLUSHED |
| 155 | * is set. So we need to temporarily drop it. |
| 156 | */ |
| 157 | mutex_unlock(&journal->j_checkpoint_mutex); |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 158 | jbd2_log_wait_commit(journal, tid); |
Paul Gortmaker | 0ef5418 | 2013-06-12 22:47:35 -0400 | [diff] [blame] | 159 | write_lock(&journal->j_state_lock); |
| 160 | continue; |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 161 | } else { |
Theodore Ts'o | 8c3f25d | 2008-11-06 22:38:07 -0500 | [diff] [blame] | 162 | printk(KERN_ERR "%s: needed %d blocks and " |
| 163 | "only had %d space available\n", |
| 164 | __func__, nblocks, space_left); |
| 165 | printk(KERN_ERR "%s: no way to get more " |
| 166 | "journal space in %s\n", __func__, |
| 167 | journal->j_devname); |
| 168 | WARN_ON(1); |
zhangyi (F) | 51f57b0 | 2019-12-04 20:46:12 +0800 | [diff] [blame] | 169 | jbd2_journal_abort(journal, -EIO); |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 170 | } |
Theodore Ts'o | a931da6 | 2010-08-03 21:35:12 -0400 | [diff] [blame] | 171 | write_lock(&journal->j_state_lock); |
Duane Griffin | 23f8b79 | 2008-10-08 23:28:31 -0400 | [diff] [blame] | 172 | } else { |
| 173 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 174 | } |
| 175 | mutex_unlock(&journal->j_checkpoint_mutex); |
| 176 | } |
| 177 | } |
| 178 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 179 | static void |
Theodore Ts'o | 1a0d378 | 2008-11-05 00:09:22 -0500 | [diff] [blame] | 180 | __flush_batch(journal_t *journal, int *batch_count) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 181 | { |
| 182 | int i; |
Tao Ma | d3ad843 | 2011-06-27 12:36:29 -0400 | [diff] [blame] | 183 | struct blk_plug plug; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 184 | |
Tao Ma | d3ad843 | 2011-06-27 12:36:29 -0400 | [diff] [blame] | 185 | blk_start_plug(&plug); |
Christoph Hellwig | 9cb569d | 2010-08-11 17:06:24 +0200 | [diff] [blame] | 186 | for (i = 0; i < *batch_count; i++) |
Christoph Hellwig | 70fd761 | 2016-11-01 07:40:10 -0600 | [diff] [blame] | 187 | write_dirty_buffer(journal->j_chkpt_bhs[i], REQ_SYNC); |
Tao Ma | d3ad843 | 2011-06-27 12:36:29 -0400 | [diff] [blame] | 188 | blk_finish_plug(&plug); |
Christoph Hellwig | 9cb569d | 2010-08-11 17:06:24 +0200 | [diff] [blame] | 189 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 190 | for (i = 0; i < *batch_count; i++) { |
Theodore Ts'o | 1a0d378 | 2008-11-05 00:09:22 -0500 | [diff] [blame] | 191 | struct buffer_head *bh = journal->j_chkpt_bhs[i]; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 192 | BUFFER_TRACE(bh, "brelse"); |
| 193 | __brelse(bh); |
| 194 | } |
| 195 | *batch_count = 0; |
| 196 | } |
| 197 | |
| 198 | /* |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 199 | * Perform an actual checkpoint. We take the first transaction on the |
| 200 | * list of transactions to be checkpointed and send all its buffers |
| 201 | * to disk. We submit larger chunks of data at once. |
| 202 | * |
| 203 | * The journal should be locked before calling this function. |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 204 | * Called with j_checkpoint_mutex held. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 205 | */ |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 206 | int jbd2_log_do_checkpoint(journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 207 | { |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 208 | struct journal_head *jh; |
| 209 | struct buffer_head *bh; |
| 210 | transaction_t *transaction; |
| 211 | tid_t this_tid; |
Theodore Ts'o | dc6e8d6 | 2014-09-04 18:09:22 -0400 | [diff] [blame] | 212 | int result, batch_count = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 213 | |
| 214 | jbd_debug(1, "Start checkpoint\n"); |
| 215 | |
| 216 | /* |
| 217 | * First thing: if there are any transactions in the log which |
| 218 | * don't need checkpointing, just eliminate them from the |
| 219 | * journal straight away. |
| 220 | */ |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 221 | result = jbd2_cleanup_journal_tail(journal); |
Theodore Ts'o | 879c5e6 | 2009-06-17 11:47:48 -0400 | [diff] [blame] | 222 | trace_jbd2_checkpoint(journal, result); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 223 | jbd_debug(1, "cleanup_journal_tail returned %d\n", result); |
| 224 | if (result <= 0) |
| 225 | return result; |
| 226 | |
| 227 | /* |
| 228 | * OK, we need to start writing disk blocks. Take one transaction |
| 229 | * and write it. |
| 230 | */ |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 231 | result = 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 232 | spin_lock(&journal->j_list_lock); |
| 233 | if (!journal->j_checkpoint_transactions) |
| 234 | goto out; |
| 235 | transaction = journal->j_checkpoint_transactions; |
Johann Lombardi | 8e85fb3 | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 236 | if (transaction->t_chp_stats.cs_chp_time == 0) |
| 237 | transaction->t_chp_stats.cs_chp_time = jiffies; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 238 | this_tid = transaction->t_tid; |
| 239 | restart: |
| 240 | /* |
| 241 | * If someone cleaned up this transaction while we slept, we're |
| 242 | * done (maybe it's a new transaction, but it fell at the same |
| 243 | * address). |
| 244 | */ |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 245 | if (journal->j_checkpoint_transactions != transaction || |
| 246 | transaction->t_tid != this_tid) |
| 247 | goto out; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 248 | |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 249 | /* checkpoint all of the transaction's buffers */ |
| 250 | while (transaction->t_checkpoint_list) { |
| 251 | jh = transaction->t_checkpoint_list; |
| 252 | bh = jh2bh(jh); |
| 253 | |
| 254 | if (buffer_locked(bh)) { |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 255 | get_bh(bh); |
Jan Kara | ccd3c43 | 2018-10-05 18:44:40 -0400 | [diff] [blame] | 256 | spin_unlock(&journal->j_list_lock); |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 257 | wait_on_buffer(bh); |
| 258 | /* the journal_head may have gone by now */ |
| 259 | BUFFER_TRACE(bh, "brelse"); |
| 260 | __brelse(bh); |
| 261 | goto retry; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 262 | } |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 263 | if (jh->b_transaction != NULL) { |
| 264 | transaction_t *t = jh->b_transaction; |
| 265 | tid_t tid = t->t_tid; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 266 | |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 267 | transaction->t_chp_stats.cs_forced_to_close++; |
| 268 | spin_unlock(&journal->j_list_lock); |
| 269 | if (unlikely(journal->j_flags & JBD2_UNMOUNT)) |
| 270 | /* |
| 271 | * The journal thread is dead; so |
| 272 | * starting and waiting for a commit |
| 273 | * to finish will cause us to wait for |
| 274 | * a _very_ long time. |
| 275 | */ |
| 276 | printk(KERN_ERR |
| 277 | "JBD2: %s: Waiting for Godot: block %llu\n", |
| 278 | journal->j_devname, (unsigned long long) bh->b_blocknr); |
| 279 | |
Xiaoguang Wang | 53cf978 | 2019-01-31 23:42:11 -0500 | [diff] [blame] | 280 | if (batch_count) |
| 281 | __flush_batch(journal, &batch_count); |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 282 | jbd2_log_start_commit(journal, tid); |
Xiaoguang Wang | 53cf978 | 2019-01-31 23:42:11 -0500 | [diff] [blame] | 283 | /* |
| 284 | * jbd2_journal_commit_transaction() may want |
| 285 | * to take the checkpoint_mutex if JBD2_FLUSHED |
| 286 | * is set, jbd2_update_log_tail() called by |
| 287 | * jbd2_journal_commit_transaction() may also take |
| 288 | * checkpoint_mutex. So we need to temporarily |
| 289 | * drop it. |
| 290 | */ |
| 291 | mutex_unlock(&journal->j_checkpoint_mutex); |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 292 | jbd2_log_wait_commit(journal, tid); |
Xiaoguang Wang | 53cf978 | 2019-01-31 23:42:11 -0500 | [diff] [blame] | 293 | mutex_lock_io(&journal->j_checkpoint_mutex); |
| 294 | spin_lock(&journal->j_list_lock); |
| 295 | goto restart; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 296 | } |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 297 | if (!buffer_dirty(bh)) { |
| 298 | if (unlikely(buffer_write_io_error(bh)) && !result) |
| 299 | result = -EIO; |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 300 | BUFFER_TRACE(bh, "remove from checkpoint"); |
Jan Kara | 0e5ecf0a | 2014-09-04 18:09:29 -0400 | [diff] [blame] | 301 | if (__jbd2_journal_remove_checkpoint(jh)) |
| 302 | /* The transaction was released; we're done */ |
| 303 | goto out; |
| 304 | continue; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 305 | } |
| 306 | /* |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 307 | * Important: we are about to write the buffer, and |
| 308 | * possibly block, while still holding the journal |
| 309 | * lock. We cannot afford to let the transaction |
| 310 | * logic start messing around with this buffer before |
| 311 | * we write it to disk, as that would break |
| 312 | * recoverability. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 313 | */ |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 314 | BUFFER_TRACE(bh, "queue"); |
| 315 | get_bh(bh); |
| 316 | J_ASSERT_BH(bh, !buffer_jwrite(bh)); |
| 317 | journal->j_chkpt_bhs[batch_count++] = bh; |
| 318 | __buffer_relink_io(jh); |
| 319 | transaction->t_chp_stats.cs_written++; |
| 320 | if ((batch_count == JBD2_NR_BATCH) || |
| 321 | need_resched() || |
| 322 | spin_needbreak(&journal->j_list_lock)) |
| 323 | goto unlock_and_flush; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 324 | } |
Theodore Ts'o | be1158c | 2014-09-01 21:19:01 -0400 | [diff] [blame] | 325 | |
| 326 | if (batch_count) { |
| 327 | unlock_and_flush: |
| 328 | spin_unlock(&journal->j_list_lock); |
| 329 | retry: |
| 330 | if (batch_count) |
| 331 | __flush_batch(journal, &batch_count); |
| 332 | spin_lock(&journal->j_list_lock); |
| 333 | goto restart; |
| 334 | } |
| 335 | |
| 336 | /* |
| 337 | * Now we issued all of the transaction's buffers, let's deal |
| 338 | * with the buffers that are out for I/O. |
| 339 | */ |
Theodore Ts'o | 88fe1ac | 2014-09-01 21:26:09 -0400 | [diff] [blame] | 340 | restart2: |
| 341 | /* Did somebody clean up the transaction in the meanwhile? */ |
| 342 | if (journal->j_checkpoint_transactions != transaction || |
| 343 | transaction->t_tid != this_tid) |
| 344 | goto out; |
| 345 | |
Theodore Ts'o | dc6e8d6 | 2014-09-04 18:09:22 -0400 | [diff] [blame] | 346 | while (transaction->t_checkpoint_io_list) { |
Theodore Ts'o | 88fe1ac | 2014-09-01 21:26:09 -0400 | [diff] [blame] | 347 | jh = transaction->t_checkpoint_io_list; |
| 348 | bh = jh2bh(jh); |
Theodore Ts'o | 88fe1ac | 2014-09-01 21:26:09 -0400 | [diff] [blame] | 349 | if (buffer_locked(bh)) { |
Theodore Ts'o | dc6e8d6 | 2014-09-04 18:09:22 -0400 | [diff] [blame] | 350 | get_bh(bh); |
Jan Kara | ccd3c43 | 2018-10-05 18:44:40 -0400 | [diff] [blame] | 351 | spin_unlock(&journal->j_list_lock); |
Theodore Ts'o | 88fe1ac | 2014-09-01 21:26:09 -0400 | [diff] [blame] | 352 | wait_on_buffer(bh); |
| 353 | /* the journal_head may have gone by now */ |
| 354 | BUFFER_TRACE(bh, "brelse"); |
| 355 | __brelse(bh); |
| 356 | spin_lock(&journal->j_list_lock); |
| 357 | goto restart2; |
| 358 | } |
| 359 | if (unlikely(buffer_write_io_error(bh)) && !result) |
| 360 | result = -EIO; |
| 361 | |
| 362 | /* |
| 363 | * Now in whatever state the buffer currently is, we |
| 364 | * know that it has been written out and so we can |
| 365 | * drop it from the list |
| 366 | */ |
Theodore Ts'o | dc6e8d6 | 2014-09-04 18:09:22 -0400 | [diff] [blame] | 367 | if (__jbd2_journal_remove_checkpoint(jh)) |
| 368 | break; |
Theodore Ts'o | 88fe1ac | 2014-09-01 21:26:09 -0400 | [diff] [blame] | 369 | } |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 370 | out: |
| 371 | spin_unlock(&journal->j_list_lock); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 372 | if (result < 0) |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 373 | jbd2_journal_abort(journal, result); |
| 374 | else |
| 375 | result = jbd2_cleanup_journal_tail(journal); |
| 376 | |
| 377 | return (result < 0) ? result : 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /* |
| 381 | * Check the list of checkpoint transactions for the journal to see if |
| 382 | * we have already got rid of any since the last update of the log tail |
| 383 | * in the journal superblock. If so, we can instantly roll the |
| 384 | * superblock forward to remove those transactions from the log. |
| 385 | * |
| 386 | * Return <0 on error, 0 on success, 1 if there was nothing to clean up. |
| 387 | * |
| 388 | * Called with the journal lock held. |
| 389 | * |
| 390 | * This is the only part of the journaling code which really needs to be |
| 391 | * aware of transaction aborts. Checkpointing involves writing to the |
| 392 | * main filesystem area rather than to the journal, so it can proceed |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 393 | * even in abort state, but we must not update the super block if |
| 394 | * checkpointing may have failed. Otherwise, we would lose some metadata |
| 395 | * buffers which should be written-back to the filesystem. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 396 | */ |
| 397 | |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 398 | int jbd2_cleanup_journal_tail(journal_t *journal) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 399 | { |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 400 | tid_t first_tid; |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 401 | unsigned long blocknr; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 402 | |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 403 | if (is_journal_aborted(journal)) |
Joseph Qi | 6f6a6fd | 2015-06-15 14:36:01 -0400 | [diff] [blame] | 404 | return -EIO; |
Hidehiro Kawai | 44519fa | 2008-10-10 20:29:13 -0400 | [diff] [blame] | 405 | |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 406 | if (!jbd2_journal_get_log_tail(journal, &first_tid, &blocknr)) |
| 407 | return 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 408 | J_ASSERT(blocknr != 0); |
| 409 | |
Theodore Ts'o | cc3e1bea | 2009-12-23 06:52:08 -0500 | [diff] [blame] | 410 | /* |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 411 | * We need to make sure that any blocks that were recently written out |
| 412 | * --- perhaps by jbd2_log_do_checkpoint() --- are flushed out before |
| 413 | * we drop the transactions from the journal. It's unlikely this will |
| 414 | * be necessary, especially with an appropriately sized journal, but we |
| 415 | * need this to guarantee correctness. Fortunately |
| 416 | * jbd2_cleanup_journal_tail() doesn't get called all that often. |
Theodore Ts'o | cc3e1bea | 2009-12-23 06:52:08 -0500 | [diff] [blame] | 417 | */ |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 418 | if (journal->j_flags & JBD2_BARRIER) |
Christoph Hellwig | 9398554 | 2020-05-13 14:36:00 +0200 | [diff] [blame] | 419 | blkdev_issue_flush(journal->j_fs_dev, GFP_NOFS); |
Jan Kara | 79feb52 | 2012-03-13 22:22:54 -0400 | [diff] [blame] | 420 | |
Joseph Qi | 6f6a6fd | 2015-06-15 14:36:01 -0400 | [diff] [blame] | 421 | return __jbd2_update_log_tail(journal, first_tid, blocknr); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | |
| 425 | /* Checkpoint list management */ |
| 426 | |
| 427 | /* |
| 428 | * journal_clean_one_cp_list |
| 429 | * |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 430 | * Find all the written-back checkpoint buffers in the given list and |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 431 | * release them. If 'destroy' is set, clean all buffers unconditionally. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 432 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 433 | * Called with j_list_lock held. |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 434 | * Returns 1 if we freed the transaction, 0 otherwise. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 435 | */ |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 436 | static int journal_clean_one_cp_list(struct journal_head *jh, bool destroy) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 437 | { |
| 438 | struct journal_head *last_jh; |
| 439 | struct journal_head *next_jh = jh; |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 440 | int ret; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 441 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 442 | if (!jh) |
| 443 | return 0; |
| 444 | |
| 445 | last_jh = jh->b_cpprev; |
| 446 | do { |
| 447 | jh = next_jh; |
| 448 | next_jh = jh->b_cpnext; |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 449 | if (!destroy) |
| 450 | ret = __try_to_free_cp_buf(jh); |
| 451 | else |
| 452 | ret = __jbd2_journal_remove_checkpoint(jh) + 1; |
Jan Kara | cc97f1a | 2014-09-18 00:42:16 -0400 | [diff] [blame] | 453 | if (!ret) |
Jan Kara | 33d1497 | 2015-10-17 22:35:09 -0400 | [diff] [blame] | 454 | return 0; |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 455 | if (ret == 2) |
| 456 | return 1; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 457 | /* |
| 458 | * This function only frees up some memory |
| 459 | * if possible so we dont have an obligation |
| 460 | * to finish processing. Bail out if preemption |
| 461 | * requested: |
| 462 | */ |
| 463 | if (need_resched()) |
Jan Kara | 33d1497 | 2015-10-17 22:35:09 -0400 | [diff] [blame] | 464 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 465 | } while (jh != last_jh); |
| 466 | |
Jan Kara | 33d1497 | 2015-10-17 22:35:09 -0400 | [diff] [blame] | 467 | return 0; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 468 | } |
| 469 | |
| 470 | /* |
| 471 | * journal_clean_checkpoint_list |
| 472 | * |
| 473 | * Find all the written-back checkpoint buffers in the journal and release them. |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 474 | * If 'destroy' is set, release all buffers unconditionally. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 475 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 476 | * Called with j_list_lock held. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 477 | */ |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 478 | void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 479 | { |
| 480 | transaction_t *transaction, *last_transaction, *next_transaction; |
Jan Kara | cc97f1a | 2014-09-18 00:42:16 -0400 | [diff] [blame] | 481 | int ret; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 482 | |
| 483 | transaction = journal->j_checkpoint_transactions; |
| 484 | if (!transaction) |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 485 | return; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 486 | |
| 487 | last_transaction = transaction->t_cpprev; |
| 488 | next_transaction = transaction; |
| 489 | do { |
| 490 | transaction = next_transaction; |
| 491 | next_transaction = transaction->t_cpnext; |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 492 | ret = journal_clean_one_cp_list(transaction->t_checkpoint_list, |
| 493 | destroy); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 494 | /* |
| 495 | * This function only frees up some memory if possible so we |
| 496 | * dont have an obligation to finish processing. Bail out if |
| 497 | * preemption requested: |
| 498 | */ |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 499 | if (need_resched()) |
| 500 | return; |
| 501 | if (ret) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 502 | continue; |
| 503 | /* |
| 504 | * It is essential that we are as careful as in the case of |
| 505 | * t_checkpoint_list with removing the buffer from the list as |
| 506 | * we can possibly see not yet submitted buffers on io_list |
| 507 | */ |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 508 | ret = journal_clean_one_cp_list(transaction-> |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 509 | t_checkpoint_io_list, destroy); |
Jan Kara | 50849db | 2014-09-18 00:58:12 -0400 | [diff] [blame] | 510 | if (need_resched()) |
| 511 | return; |
| 512 | /* |
| 513 | * Stop scanning if we couldn't free the transaction. This |
| 514 | * avoids pointless scanning of transactions which still |
| 515 | * weren't checkpointed. |
| 516 | */ |
| 517 | if (!ret) |
| 518 | return; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 519 | } while (transaction != last_transaction); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | /* |
Jan Kara | 841df7df | 2015-07-28 14:57:14 -0400 | [diff] [blame] | 523 | * Remove buffers from all checkpoint lists as journal is aborted and we just |
| 524 | * need to free memory |
| 525 | */ |
| 526 | void jbd2_journal_destroy_checkpoint(journal_t *journal) |
| 527 | { |
| 528 | /* |
| 529 | * We loop because __jbd2_journal_clean_checkpoint_list() may abort |
| 530 | * early due to a need of rescheduling. |
| 531 | */ |
| 532 | while (1) { |
| 533 | spin_lock(&journal->j_list_lock); |
| 534 | if (!journal->j_checkpoint_transactions) { |
| 535 | spin_unlock(&journal->j_list_lock); |
| 536 | break; |
| 537 | } |
| 538 | __jbd2_journal_clean_checkpoint_list(journal, true); |
| 539 | spin_unlock(&journal->j_list_lock); |
| 540 | cond_resched(); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | /* |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 545 | * journal_remove_checkpoint: called after a buffer has been committed |
| 546 | * to disk (either by being write-back flushed to disk, or being |
| 547 | * committed to the log). |
| 548 | * |
| 549 | * We cannot safely clean a transaction out of the log until all of the |
| 550 | * buffer updates committed in that transaction have safely been stored |
| 551 | * elsewhere on disk. To achieve this, all of the buffers in a |
| 552 | * transaction need to be maintained on the transaction's checkpoint |
| 553 | * lists until they have been rewritten, at which point this function is |
| 554 | * called to remove the buffer from the existing transaction's |
| 555 | * checkpoint lists. |
| 556 | * |
| 557 | * The function returns 1 if it frees the transaction, 0 otherwise. |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 558 | * The function can free jh and bh. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 559 | * |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 560 | * This function is called with j_list_lock held. |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 561 | */ |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 562 | int __jbd2_journal_remove_checkpoint(struct journal_head *jh) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 563 | { |
Theodore Ts'o | bf69932 | 2009-09-30 00:32:06 -0400 | [diff] [blame] | 564 | struct transaction_chp_stats_s *stats; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 565 | transaction_t *transaction; |
| 566 | journal_t *journal; |
| 567 | int ret = 0; |
| 568 | |
| 569 | JBUFFER_TRACE(jh, "entry"); |
| 570 | |
| 571 | if ((transaction = jh->b_cp_transaction) == NULL) { |
| 572 | JBUFFER_TRACE(jh, "not on transaction"); |
| 573 | goto out; |
| 574 | } |
| 575 | journal = transaction->t_journal; |
| 576 | |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 577 | JBUFFER_TRACE(jh, "removing from transaction"); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 578 | __buffer_unlink(jh); |
| 579 | jh->b_cp_transaction = NULL; |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 580 | jbd2_journal_put_journal_head(jh); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 581 | |
| 582 | if (transaction->t_checkpoint_list != NULL || |
| 583 | transaction->t_checkpoint_io_list != NULL) |
| 584 | goto out; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 585 | |
| 586 | /* |
| 587 | * There is one special case to worry about: if we have just pulled the |
Jan Kara | f5a7a6b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 588 | * buffer off a running or committing transaction's checkpoing list, |
| 589 | * then even if the checkpoint list is empty, the transaction obviously |
| 590 | * cannot be dropped! |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 591 | * |
Jan Kara | f5a7a6b | 2008-01-28 23:58:27 -0500 | [diff] [blame] | 592 | * The locking here around t_state is a bit sleazy. |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 593 | * See the comment at the end of jbd2_journal_commit_transaction(). |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 594 | */ |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 595 | if (transaction->t_state != T_FINISHED) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 596 | goto out; |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 597 | |
| 598 | /* OK, that was the last buffer for the transaction: we can now |
| 599 | safely remove this transaction from the log */ |
Theodore Ts'o | bf69932 | 2009-09-30 00:32:06 -0400 | [diff] [blame] | 600 | stats = &transaction->t_chp_stats; |
| 601 | if (stats->cs_chp_time) |
| 602 | stats->cs_chp_time = jbd2_time_diff(stats->cs_chp_time, |
| 603 | jiffies); |
| 604 | trace_jbd2_checkpoint_stats(journal->j_fs_dev->bd_dev, |
| 605 | transaction->t_tid, stats); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 606 | |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 607 | __jbd2_journal_drop_transaction(journal, transaction); |
Yongqiang Yang | 0c2022e | 2012-02-20 17:53:02 -0500 | [diff] [blame] | 608 | jbd2_journal_free_transaction(transaction); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 609 | ret = 1; |
| 610 | out: |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 611 | return ret; |
| 612 | } |
| 613 | |
| 614 | /* |
| 615 | * journal_insert_checkpoint: put a committed buffer onto a checkpoint |
| 616 | * list so that we know when it is safe to clean the transaction out of |
| 617 | * the log. |
| 618 | * |
| 619 | * Called with the journal locked. |
| 620 | * Called with j_list_lock held. |
| 621 | */ |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 622 | void __jbd2_journal_insert_checkpoint(struct journal_head *jh, |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 623 | transaction_t *transaction) |
| 624 | { |
| 625 | JBUFFER_TRACE(jh, "entry"); |
| 626 | J_ASSERT_JH(jh, buffer_dirty(jh2bh(jh)) || buffer_jbddirty(jh2bh(jh))); |
| 627 | J_ASSERT_JH(jh, jh->b_cp_transaction == NULL); |
| 628 | |
Jan Kara | de1b794 | 2011-06-13 15:38:22 -0400 | [diff] [blame] | 629 | /* Get reference for checkpointing transaction */ |
| 630 | jbd2_journal_grab_journal_head(jh2bh(jh)); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 631 | jh->b_cp_transaction = transaction; |
| 632 | |
| 633 | if (!transaction->t_checkpoint_list) { |
| 634 | jh->b_cpnext = jh->b_cpprev = jh; |
| 635 | } else { |
| 636 | jh->b_cpnext = transaction->t_checkpoint_list; |
| 637 | jh->b_cpprev = transaction->t_checkpoint_list->b_cpprev; |
| 638 | jh->b_cpprev->b_cpnext = jh; |
| 639 | jh->b_cpnext->b_cpprev = jh; |
| 640 | } |
| 641 | transaction->t_checkpoint_list = jh; |
| 642 | } |
| 643 | |
| 644 | /* |
| 645 | * We've finished with this transaction structure: adios... |
| 646 | * |
| 647 | * The transaction must have no links except for the checkpoint by this |
| 648 | * point. |
| 649 | * |
| 650 | * Called with the journal locked. |
| 651 | * Called with j_list_lock held. |
| 652 | */ |
| 653 | |
Mingming Cao | f7f4bccb | 2006-10-11 01:20:59 -0700 | [diff] [blame] | 654 | void __jbd2_journal_drop_transaction(journal_t *journal, transaction_t *transaction) |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 655 | { |
| 656 | assert_spin_locked(&journal->j_list_lock); |
| 657 | if (transaction->t_cpnext) { |
| 658 | transaction->t_cpnext->t_cpprev = transaction->t_cpprev; |
| 659 | transaction->t_cpprev->t_cpnext = transaction->t_cpnext; |
| 660 | if (journal->j_checkpoint_transactions == transaction) |
| 661 | journal->j_checkpoint_transactions = |
| 662 | transaction->t_cpnext; |
| 663 | if (journal->j_checkpoint_transactions == transaction) |
| 664 | journal->j_checkpoint_transactions = NULL; |
| 665 | } |
| 666 | |
| 667 | J_ASSERT(transaction->t_state == T_FINISHED); |
| 668 | J_ASSERT(transaction->t_buffers == NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 669 | J_ASSERT(transaction->t_forget == NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 670 | J_ASSERT(transaction->t_shadow_list == NULL); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 671 | J_ASSERT(transaction->t_checkpoint_list == NULL); |
| 672 | J_ASSERT(transaction->t_checkpoint_io_list == NULL); |
Theodore Ts'o | a51dca9 | 2010-08-02 08:43:25 -0400 | [diff] [blame] | 673 | J_ASSERT(atomic_read(&transaction->t_updates) == 0); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 674 | J_ASSERT(journal->j_committing_transaction != transaction); |
| 675 | J_ASSERT(journal->j_running_transaction != transaction); |
| 676 | |
Seiji Aguchi | 2201c59 | 2012-02-20 17:53:01 -0500 | [diff] [blame] | 677 | trace_jbd2_drop_transaction(journal, transaction); |
| 678 | |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 679 | jbd_debug(1, "Dropping transaction %d, all done\n", transaction->t_tid); |
Dave Kleikamp | 470decc | 2006-10-11 01:20:57 -0700 | [diff] [blame] | 680 | } |