checkpoint.c 20 KB

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