commit.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911
  1. /*
  2. * linux/fs/jbd2/commit.c
  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. #include <linux/time.h>
  16. #include <linux/fs.h>
  17. #include <linux/jbd2.h>
  18. #include <linux/errno.h>
  19. #include <linux/slab.h>
  20. #include <linux/mm.h>
  21. #include <linux/pagemap.h>
  22. #include <linux/smp_lock.h>
  23. /*
  24. * Default IO end handler for temporary BJ_IO buffer_heads.
  25. */
  26. static void journal_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
  27. {
  28. BUFFER_TRACE(bh, "");
  29. if (uptodate)
  30. set_buffer_uptodate(bh);
  31. else
  32. clear_buffer_uptodate(bh);
  33. unlock_buffer(bh);
  34. }
  35. /*
  36. * When an ext3-ordered file is truncated, it is possible that many pages are
  37. * not sucessfully freed, because they are attached to a committing transaction.
  38. * After the transaction commits, these pages are left on the LRU, with no
  39. * ->mapping, and with attached buffers. These pages are trivially reclaimable
  40. * by the VM, but their apparent absence upsets the VM accounting, and it makes
  41. * the numbers in /proc/meminfo look odd.
  42. *
  43. * So here, we have a buffer which has just come off the forget list. Look to
  44. * see if we can strip all buffers from the backing page.
  45. *
  46. * Called under lock_journal(), and possibly under journal_datalist_lock. The
  47. * caller provided us with a ref against the buffer, and we drop that here.
  48. */
  49. static void release_buffer_page(struct buffer_head *bh)
  50. {
  51. struct page *page;
  52. if (buffer_dirty(bh))
  53. goto nope;
  54. if (atomic_read(&bh->b_count) != 1)
  55. goto nope;
  56. page = bh->b_page;
  57. if (!page)
  58. goto nope;
  59. if (page->mapping)
  60. goto nope;
  61. /* OK, it's a truncated page */
  62. if (TestSetPageLocked(page))
  63. goto nope;
  64. page_cache_get(page);
  65. __brelse(bh);
  66. try_to_free_buffers(page);
  67. unlock_page(page);
  68. page_cache_release(page);
  69. return;
  70. nope:
  71. __brelse(bh);
  72. }
  73. /*
  74. * Try to acquire jbd_lock_bh_state() against the buffer, when j_list_lock is
  75. * held. For ranking reasons we must trylock. If we lose, schedule away and
  76. * return 0. j_list_lock is dropped in this case.
  77. */
  78. static int inverted_lock(journal_t *journal, struct buffer_head *bh)
  79. {
  80. if (!jbd_trylock_bh_state(bh)) {
  81. spin_unlock(&journal->j_list_lock);
  82. schedule();
  83. return 0;
  84. }
  85. return 1;
  86. }
  87. /* Done it all: now write the commit record. We should have
  88. * cleaned up our previous buffers by now, so if we are in abort
  89. * mode we can now just skip the rest of the journal write
  90. * entirely.
  91. *
  92. * Returns 1 if the journal needs to be aborted or 0 on success
  93. */
  94. static int journal_write_commit_record(journal_t *journal,
  95. transaction_t *commit_transaction)
  96. {
  97. struct journal_head *descriptor;
  98. struct buffer_head *bh;
  99. int i, ret;
  100. int barrier_done = 0;
  101. if (is_journal_aborted(journal))
  102. return 0;
  103. descriptor = jbd2_journal_get_descriptor_buffer(journal);
  104. if (!descriptor)
  105. return 1;
  106. bh = jh2bh(descriptor);
  107. /* AKPM: buglet - add `i' to tmp! */
  108. for (i = 0; i < bh->b_size; i += 512) {
  109. journal_header_t *tmp = (journal_header_t*)bh->b_data;
  110. tmp->h_magic = cpu_to_be32(JBD2_MAGIC_NUMBER);
  111. tmp->h_blocktype = cpu_to_be32(JBD2_COMMIT_BLOCK);
  112. tmp->h_sequence = cpu_to_be32(commit_transaction->t_tid);
  113. }
  114. JBUFFER_TRACE(descriptor, "write commit block");
  115. set_buffer_dirty(bh);
  116. if (journal->j_flags & JBD2_BARRIER) {
  117. set_buffer_ordered(bh);
  118. barrier_done = 1;
  119. }
  120. ret = sync_dirty_buffer(bh);
  121. /* is it possible for another commit to fail at roughly
  122. * the same time as this one? If so, we don't want to
  123. * trust the barrier flag in the super, but instead want
  124. * to remember if we sent a barrier request
  125. */
  126. if (ret == -EOPNOTSUPP && barrier_done) {
  127. char b[BDEVNAME_SIZE];
  128. printk(KERN_WARNING
  129. "JBD: barrier-based sync failed on %s - "
  130. "disabling barriers\n",
  131. bdevname(journal->j_dev, b));
  132. spin_lock(&journal->j_state_lock);
  133. journal->j_flags &= ~JBD2_BARRIER;
  134. spin_unlock(&journal->j_state_lock);
  135. /* And try again, without the barrier */
  136. clear_buffer_ordered(bh);
  137. set_buffer_uptodate(bh);
  138. set_buffer_dirty(bh);
  139. ret = sync_dirty_buffer(bh);
  140. }
  141. put_bh(bh); /* One for getblk() */
  142. jbd2_journal_put_journal_head(descriptor);
  143. return (ret == -EIO);
  144. }
  145. static void journal_do_submit_data(struct buffer_head **wbuf, int bufs)
  146. {
  147. int i;
  148. for (i = 0; i < bufs; i++) {
  149. wbuf[i]->b_end_io = end_buffer_write_sync;
  150. /* We use-up our safety reference in submit_bh() */
  151. submit_bh(WRITE, wbuf[i]);
  152. }
  153. }
  154. /*
  155. * Submit all the data buffers to disk
  156. */
  157. static void journal_submit_data_buffers(journal_t *journal,
  158. transaction_t *commit_transaction)
  159. {
  160. struct journal_head *jh;
  161. struct buffer_head *bh;
  162. int locked;
  163. int bufs = 0;
  164. struct buffer_head **wbuf = journal->j_wbuf;
  165. /*
  166. * Whenever we unlock the journal and sleep, things can get added
  167. * onto ->t_sync_datalist, so we have to keep looping back to
  168. * write_out_data until we *know* that the list is empty.
  169. *
  170. * Cleanup any flushed data buffers from the data list. Even in
  171. * abort mode, we want to flush this out as soon as possible.
  172. */
  173. write_out_data:
  174. cond_resched();
  175. spin_lock(&journal->j_list_lock);
  176. while (commit_transaction->t_sync_datalist) {
  177. jh = commit_transaction->t_sync_datalist;
  178. bh = jh2bh(jh);
  179. locked = 0;
  180. /* Get reference just to make sure buffer does not disappear
  181. * when we are forced to drop various locks */
  182. get_bh(bh);
  183. /* If the buffer is dirty, we need to submit IO and hence
  184. * we need the buffer lock. We try to lock the buffer without
  185. * blocking. If we fail, we need to drop j_list_lock and do
  186. * blocking lock_buffer().
  187. */
  188. if (buffer_dirty(bh)) {
  189. if (test_set_buffer_locked(bh)) {
  190. BUFFER_TRACE(bh, "needs blocking lock");
  191. spin_unlock(&journal->j_list_lock);
  192. /* Write out all data to prevent deadlocks */
  193. journal_do_submit_data(wbuf, bufs);
  194. bufs = 0;
  195. lock_buffer(bh);
  196. spin_lock(&journal->j_list_lock);
  197. }
  198. locked = 1;
  199. }
  200. /* We have to get bh_state lock. Again out of order, sigh. */
  201. if (!inverted_lock(journal, bh)) {
  202. jbd_lock_bh_state(bh);
  203. spin_lock(&journal->j_list_lock);
  204. }
  205. /* Someone already cleaned up the buffer? */
  206. if (!buffer_jbd(bh)
  207. || jh->b_transaction != commit_transaction
  208. || jh->b_jlist != BJ_SyncData) {
  209. jbd_unlock_bh_state(bh);
  210. if (locked)
  211. unlock_buffer(bh);
  212. BUFFER_TRACE(bh, "already cleaned up");
  213. put_bh(bh);
  214. continue;
  215. }
  216. if (locked && test_clear_buffer_dirty(bh)) {
  217. BUFFER_TRACE(bh, "needs writeout, adding to array");
  218. wbuf[bufs++] = bh;
  219. __jbd2_journal_file_buffer(jh, commit_transaction,
  220. BJ_Locked);
  221. jbd_unlock_bh_state(bh);
  222. if (bufs == journal->j_wbufsize) {
  223. spin_unlock(&journal->j_list_lock);
  224. journal_do_submit_data(wbuf, bufs);
  225. bufs = 0;
  226. goto write_out_data;
  227. }
  228. }
  229. else {
  230. BUFFER_TRACE(bh, "writeout complete: unfile");
  231. __jbd2_journal_unfile_buffer(jh);
  232. jbd_unlock_bh_state(bh);
  233. if (locked)
  234. unlock_buffer(bh);
  235. jbd2_journal_remove_journal_head(bh);
  236. /* Once for our safety reference, once for
  237. * jbd2_journal_remove_journal_head() */
  238. put_bh(bh);
  239. put_bh(bh);
  240. }
  241. if (lock_need_resched(&journal->j_list_lock)) {
  242. spin_unlock(&journal->j_list_lock);
  243. goto write_out_data;
  244. }
  245. }
  246. spin_unlock(&journal->j_list_lock);
  247. journal_do_submit_data(wbuf, bufs);
  248. }
  249. /*
  250. * jbd2_journal_commit_transaction
  251. *
  252. * The primary function for committing a transaction to the log. This
  253. * function is called by the journal thread to begin a complete commit.
  254. */
  255. void jbd2_journal_commit_transaction(journal_t *journal)
  256. {
  257. transaction_t *commit_transaction;
  258. struct journal_head *jh, *new_jh, *descriptor;
  259. struct buffer_head **wbuf = journal->j_wbuf;
  260. int bufs;
  261. int flags;
  262. int err;
  263. unsigned long blocknr;
  264. char *tagp = NULL;
  265. journal_header_t *header;
  266. journal_block_tag_t *tag = NULL;
  267. int space_left = 0;
  268. int first_tag = 0;
  269. int tag_flag;
  270. int i;
  271. /*
  272. * First job: lock down the current transaction and wait for
  273. * all outstanding updates to complete.
  274. */
  275. #ifdef COMMIT_STATS
  276. spin_lock(&journal->j_list_lock);
  277. summarise_journal_usage(journal);
  278. spin_unlock(&journal->j_list_lock);
  279. #endif
  280. /* Do we need to erase the effects of a prior jbd2_journal_flush? */
  281. if (journal->j_flags & JBD2_FLUSHED) {
  282. jbd_debug(3, "super block updated\n");
  283. jbd2_journal_update_superblock(journal, 1);
  284. } else {
  285. jbd_debug(3, "superblock not updated\n");
  286. }
  287. J_ASSERT(journal->j_running_transaction != NULL);
  288. J_ASSERT(journal->j_committing_transaction == NULL);
  289. commit_transaction = journal->j_running_transaction;
  290. J_ASSERT(commit_transaction->t_state == T_RUNNING);
  291. jbd_debug(1, "JBD: starting commit of transaction %d\n",
  292. commit_transaction->t_tid);
  293. spin_lock(&journal->j_state_lock);
  294. commit_transaction->t_state = T_LOCKED;
  295. spin_lock(&commit_transaction->t_handle_lock);
  296. while (commit_transaction->t_updates) {
  297. DEFINE_WAIT(wait);
  298. prepare_to_wait(&journal->j_wait_updates, &wait,
  299. TASK_UNINTERRUPTIBLE);
  300. if (commit_transaction->t_updates) {
  301. spin_unlock(&commit_transaction->t_handle_lock);
  302. spin_unlock(&journal->j_state_lock);
  303. schedule();
  304. spin_lock(&journal->j_state_lock);
  305. spin_lock(&commit_transaction->t_handle_lock);
  306. }
  307. finish_wait(&journal->j_wait_updates, &wait);
  308. }
  309. spin_unlock(&commit_transaction->t_handle_lock);
  310. J_ASSERT (commit_transaction->t_outstanding_credits <=
  311. journal->j_max_transaction_buffers);
  312. /*
  313. * First thing we are allowed to do is to discard any remaining
  314. * BJ_Reserved buffers. Note, it is _not_ permissible to assume
  315. * that there are no such buffers: if a large filesystem
  316. * operation like a truncate needs to split itself over multiple
  317. * transactions, then it may try to do a jbd2_journal_restart() while
  318. * there are still BJ_Reserved buffers outstanding. These must
  319. * be released cleanly from the current transaction.
  320. *
  321. * In this case, the filesystem must still reserve write access
  322. * again before modifying the buffer in the new transaction, but
  323. * we do not require it to remember exactly which old buffers it
  324. * has reserved. This is consistent with the existing behaviour
  325. * that multiple jbd2_journal_get_write_access() calls to the same
  326. * buffer are perfectly permissable.
  327. */
  328. while (commit_transaction->t_reserved_list) {
  329. jh = commit_transaction->t_reserved_list;
  330. JBUFFER_TRACE(jh, "reserved, unused: refile");
  331. /*
  332. * A jbd2_journal_get_undo_access()+jbd2_journal_release_buffer() may
  333. * leave undo-committed data.
  334. */
  335. if (jh->b_committed_data) {
  336. struct buffer_head *bh = jh2bh(jh);
  337. jbd_lock_bh_state(bh);
  338. jbd2_slab_free(jh->b_committed_data, bh->b_size);
  339. jh->b_committed_data = NULL;
  340. jbd_unlock_bh_state(bh);
  341. }
  342. jbd2_journal_refile_buffer(journal, jh);
  343. }
  344. /*
  345. * Now try to drop any written-back buffers from the journal's
  346. * checkpoint lists. We do this *before* commit because it potentially
  347. * frees some memory
  348. */
  349. spin_lock(&journal->j_list_lock);
  350. __jbd2_journal_clean_checkpoint_list(journal);
  351. spin_unlock(&journal->j_list_lock);
  352. jbd_debug (3, "JBD: commit phase 1\n");
  353. /*
  354. * Switch to a new revoke table.
  355. */
  356. jbd2_journal_switch_revoke_table(journal);
  357. commit_transaction->t_state = T_FLUSH;
  358. journal->j_committing_transaction = commit_transaction;
  359. journal->j_running_transaction = NULL;
  360. commit_transaction->t_log_start = journal->j_head;
  361. wake_up(&journal->j_wait_transaction_locked);
  362. spin_unlock(&journal->j_state_lock);
  363. jbd_debug (3, "JBD: commit phase 2\n");
  364. /*
  365. * First, drop modified flag: all accesses to the buffers
  366. * will be tracked for a new trasaction only -bzzz
  367. */
  368. spin_lock(&journal->j_list_lock);
  369. if (commit_transaction->t_buffers) {
  370. new_jh = jh = commit_transaction->t_buffers->b_tnext;
  371. do {
  372. J_ASSERT_JH(new_jh, new_jh->b_modified == 1 ||
  373. new_jh->b_modified == 0);
  374. new_jh->b_modified = 0;
  375. new_jh = new_jh->b_tnext;
  376. } while (new_jh != jh);
  377. }
  378. spin_unlock(&journal->j_list_lock);
  379. /*
  380. * Now start flushing things to disk, in the order they appear
  381. * on the transaction lists. Data blocks go first.
  382. */
  383. err = 0;
  384. journal_submit_data_buffers(journal, commit_transaction);
  385. /*
  386. * Wait for all previously submitted IO to complete.
  387. */
  388. spin_lock(&journal->j_list_lock);
  389. while (commit_transaction->t_locked_list) {
  390. struct buffer_head *bh;
  391. jh = commit_transaction->t_locked_list->b_tprev;
  392. bh = jh2bh(jh);
  393. get_bh(bh);
  394. if (buffer_locked(bh)) {
  395. spin_unlock(&journal->j_list_lock);
  396. wait_on_buffer(bh);
  397. if (unlikely(!buffer_uptodate(bh)))
  398. err = -EIO;
  399. spin_lock(&journal->j_list_lock);
  400. }
  401. if (!inverted_lock(journal, bh)) {
  402. put_bh(bh);
  403. spin_lock(&journal->j_list_lock);
  404. continue;
  405. }
  406. if (buffer_jbd(bh) && jh->b_jlist == BJ_Locked) {
  407. __jbd2_journal_unfile_buffer(jh);
  408. jbd_unlock_bh_state(bh);
  409. jbd2_journal_remove_journal_head(bh);
  410. put_bh(bh);
  411. } else {
  412. jbd_unlock_bh_state(bh);
  413. }
  414. put_bh(bh);
  415. cond_resched_lock(&journal->j_list_lock);
  416. }
  417. spin_unlock(&journal->j_list_lock);
  418. if (err)
  419. __jbd2_journal_abort_hard(journal);
  420. jbd2_journal_write_revoke_records(journal, commit_transaction);
  421. jbd_debug(3, "JBD: commit phase 2\n");
  422. /*
  423. * If we found any dirty or locked buffers, then we should have
  424. * looped back up to the write_out_data label. If there weren't
  425. * any then journal_clean_data_list should have wiped the list
  426. * clean by now, so check that it is in fact empty.
  427. */
  428. J_ASSERT (commit_transaction->t_sync_datalist == NULL);
  429. jbd_debug (3, "JBD: commit phase 3\n");
  430. /*
  431. * Way to go: we have now written out all of the data for a
  432. * transaction! Now comes the tricky part: we need to write out
  433. * metadata. Loop over the transaction's entire buffer list:
  434. */
  435. commit_transaction->t_state = T_COMMIT;
  436. descriptor = NULL;
  437. bufs = 0;
  438. while (commit_transaction->t_buffers) {
  439. /* Find the next buffer to be journaled... */
  440. jh = commit_transaction->t_buffers;
  441. /* If we're in abort mode, we just un-journal the buffer and
  442. release it for background writing. */
  443. if (is_journal_aborted(journal)) {
  444. JBUFFER_TRACE(jh, "journal is aborting: refile");
  445. jbd2_journal_refile_buffer(journal, jh);
  446. /* If that was the last one, we need to clean up
  447. * any descriptor buffers which may have been
  448. * already allocated, even if we are now
  449. * aborting. */
  450. if (!commit_transaction->t_buffers)
  451. goto start_journal_io;
  452. continue;
  453. }
  454. /* Make sure we have a descriptor block in which to
  455. record the metadata buffer. */
  456. if (!descriptor) {
  457. struct buffer_head *bh;
  458. J_ASSERT (bufs == 0);
  459. jbd_debug(4, "JBD: get descriptor\n");
  460. descriptor = jbd2_journal_get_descriptor_buffer(journal);
  461. if (!descriptor) {
  462. __jbd2_journal_abort_hard(journal);
  463. continue;
  464. }
  465. bh = jh2bh(descriptor);
  466. jbd_debug(4, "JBD: got buffer %llu (%p)\n",
  467. (unsigned long long)bh->b_blocknr, bh->b_data);
  468. header = (journal_header_t *)&bh->b_data[0];
  469. header->h_magic = cpu_to_be32(JBD2_MAGIC_NUMBER);
  470. header->h_blocktype = cpu_to_be32(JBD2_DESCRIPTOR_BLOCK);
  471. header->h_sequence = cpu_to_be32(commit_transaction->t_tid);
  472. tagp = &bh->b_data[sizeof(journal_header_t)];
  473. space_left = bh->b_size - sizeof(journal_header_t);
  474. first_tag = 1;
  475. set_buffer_jwrite(bh);
  476. set_buffer_dirty(bh);
  477. wbuf[bufs++] = bh;
  478. /* Record it so that we can wait for IO
  479. completion later */
  480. BUFFER_TRACE(bh, "ph3: file as descriptor");
  481. jbd2_journal_file_buffer(descriptor, commit_transaction,
  482. BJ_LogCtl);
  483. }
  484. /* Where is the buffer to be written? */
  485. err = jbd2_journal_next_log_block(journal, &blocknr);
  486. /* If the block mapping failed, just abandon the buffer
  487. and repeat this loop: we'll fall into the
  488. refile-on-abort condition above. */
  489. if (err) {
  490. __jbd2_journal_abort_hard(journal);
  491. continue;
  492. }
  493. /*
  494. * start_this_handle() uses t_outstanding_credits to determine
  495. * the free space in the log, but this counter is changed
  496. * by jbd2_journal_next_log_block() also.
  497. */
  498. commit_transaction->t_outstanding_credits--;
  499. /* Bump b_count to prevent truncate from stumbling over
  500. the shadowed buffer! @@@ This can go if we ever get
  501. rid of the BJ_IO/BJ_Shadow pairing of buffers. */
  502. atomic_inc(&jh2bh(jh)->b_count);
  503. /* Make a temporary IO buffer with which to write it out
  504. (this will requeue both the metadata buffer and the
  505. temporary IO buffer). new_bh goes on BJ_IO*/
  506. set_bit(BH_JWrite, &jh2bh(jh)->b_state);
  507. /*
  508. * akpm: jbd2_journal_write_metadata_buffer() sets
  509. * new_bh->b_transaction to commit_transaction.
  510. * We need to clean this up before we release new_bh
  511. * (which is of type BJ_IO)
  512. */
  513. JBUFFER_TRACE(jh, "ph3: write metadata");
  514. flags = jbd2_journal_write_metadata_buffer(commit_transaction,
  515. jh, &new_jh, blocknr);
  516. set_bit(BH_JWrite, &jh2bh(new_jh)->b_state);
  517. wbuf[bufs++] = jh2bh(new_jh);
  518. /* Record the new block's tag in the current descriptor
  519. buffer */
  520. tag_flag = 0;
  521. if (flags & 1)
  522. tag_flag |= JBD2_FLAG_ESCAPE;
  523. if (!first_tag)
  524. tag_flag |= JBD2_FLAG_SAME_UUID;
  525. tag = (journal_block_tag_t *) tagp;
  526. tag->t_blocknr = cpu_to_be32(jh2bh(jh)->b_blocknr);
  527. tag->t_flags = cpu_to_be32(tag_flag);
  528. tagp += sizeof(journal_block_tag_t);
  529. space_left -= sizeof(journal_block_tag_t);
  530. if (first_tag) {
  531. memcpy (tagp, journal->j_uuid, 16);
  532. tagp += 16;
  533. space_left -= 16;
  534. first_tag = 0;
  535. }
  536. /* If there's no more to do, or if the descriptor is full,
  537. let the IO rip! */
  538. if (bufs == journal->j_wbufsize ||
  539. commit_transaction->t_buffers == NULL ||
  540. space_left < sizeof(journal_block_tag_t) + 16) {
  541. jbd_debug(4, "JBD: Submit %d IOs\n", bufs);
  542. /* Write an end-of-descriptor marker before
  543. submitting the IOs. "tag" still points to
  544. the last tag we set up. */
  545. tag->t_flags |= cpu_to_be32(JBD2_FLAG_LAST_TAG);
  546. start_journal_io:
  547. for (i = 0; i < bufs; i++) {
  548. struct buffer_head *bh = wbuf[i];
  549. lock_buffer(bh);
  550. clear_buffer_dirty(bh);
  551. set_buffer_uptodate(bh);
  552. bh->b_end_io = journal_end_buffer_io_sync;
  553. submit_bh(WRITE, bh);
  554. }
  555. cond_resched();
  556. /* Force a new descriptor to be generated next
  557. time round the loop. */
  558. descriptor = NULL;
  559. bufs = 0;
  560. }
  561. }
  562. /* Lo and behold: we have just managed to send a transaction to
  563. the log. Before we can commit it, wait for the IO so far to
  564. complete. Control buffers being written are on the
  565. transaction's t_log_list queue, and metadata buffers are on
  566. the t_iobuf_list queue.
  567. Wait for the buffers in reverse order. That way we are
  568. less likely to be woken up until all IOs have completed, and
  569. so we incur less scheduling load.
  570. */
  571. jbd_debug(3, "JBD: commit phase 4\n");
  572. /*
  573. * akpm: these are BJ_IO, and j_list_lock is not needed.
  574. * See __journal_try_to_free_buffer.
  575. */
  576. wait_for_iobuf:
  577. while (commit_transaction->t_iobuf_list != NULL) {
  578. struct buffer_head *bh;
  579. jh = commit_transaction->t_iobuf_list->b_tprev;
  580. bh = jh2bh(jh);
  581. if (buffer_locked(bh)) {
  582. wait_on_buffer(bh);
  583. goto wait_for_iobuf;
  584. }
  585. if (cond_resched())
  586. goto wait_for_iobuf;
  587. if (unlikely(!buffer_uptodate(bh)))
  588. err = -EIO;
  589. clear_buffer_jwrite(bh);
  590. JBUFFER_TRACE(jh, "ph4: unfile after journal write");
  591. jbd2_journal_unfile_buffer(journal, jh);
  592. /*
  593. * ->t_iobuf_list should contain only dummy buffer_heads
  594. * which were created by jbd2_journal_write_metadata_buffer().
  595. */
  596. BUFFER_TRACE(bh, "dumping temporary bh");
  597. jbd2_journal_put_journal_head(jh);
  598. __brelse(bh);
  599. J_ASSERT_BH(bh, atomic_read(&bh->b_count) == 0);
  600. free_buffer_head(bh);
  601. /* We also have to unlock and free the corresponding
  602. shadowed buffer */
  603. jh = commit_transaction->t_shadow_list->b_tprev;
  604. bh = jh2bh(jh);
  605. clear_bit(BH_JWrite, &bh->b_state);
  606. J_ASSERT_BH(bh, buffer_jbddirty(bh));
  607. /* The metadata is now released for reuse, but we need
  608. to remember it against this transaction so that when
  609. we finally commit, we can do any checkpointing
  610. required. */
  611. JBUFFER_TRACE(jh, "file as BJ_Forget");
  612. jbd2_journal_file_buffer(jh, commit_transaction, BJ_Forget);
  613. /* Wake up any transactions which were waiting for this
  614. IO to complete */
  615. wake_up_bit(&bh->b_state, BH_Unshadow);
  616. JBUFFER_TRACE(jh, "brelse shadowed buffer");
  617. __brelse(bh);
  618. }
  619. J_ASSERT (commit_transaction->t_shadow_list == NULL);
  620. jbd_debug(3, "JBD: commit phase 5\n");
  621. /* Here we wait for the revoke record and descriptor record buffers */
  622. wait_for_ctlbuf:
  623. while (commit_transaction->t_log_list != NULL) {
  624. struct buffer_head *bh;
  625. jh = commit_transaction->t_log_list->b_tprev;
  626. bh = jh2bh(jh);
  627. if (buffer_locked(bh)) {
  628. wait_on_buffer(bh);
  629. goto wait_for_ctlbuf;
  630. }
  631. if (cond_resched())
  632. goto wait_for_ctlbuf;
  633. if (unlikely(!buffer_uptodate(bh)))
  634. err = -EIO;
  635. BUFFER_TRACE(bh, "ph5: control buffer writeout done: unfile");
  636. clear_buffer_jwrite(bh);
  637. jbd2_journal_unfile_buffer(journal, jh);
  638. jbd2_journal_put_journal_head(jh);
  639. __brelse(bh); /* One for getblk */
  640. /* AKPM: bforget here */
  641. }
  642. jbd_debug(3, "JBD: commit phase 6\n");
  643. if (journal_write_commit_record(journal, commit_transaction))
  644. err = -EIO;
  645. if (err)
  646. __jbd2_journal_abort_hard(journal);
  647. /* End of a transaction! Finally, we can do checkpoint
  648. processing: any buffers committed as a result of this
  649. transaction can be removed from any checkpoint list it was on
  650. before. */
  651. jbd_debug(3, "JBD: commit phase 7\n");
  652. J_ASSERT(commit_transaction->t_sync_datalist == NULL);
  653. J_ASSERT(commit_transaction->t_buffers == NULL);
  654. J_ASSERT(commit_transaction->t_checkpoint_list == NULL);
  655. J_ASSERT(commit_transaction->t_iobuf_list == NULL);
  656. J_ASSERT(commit_transaction->t_shadow_list == NULL);
  657. J_ASSERT(commit_transaction->t_log_list == NULL);
  658. restart_loop:
  659. /*
  660. * As there are other places (journal_unmap_buffer()) adding buffers
  661. * to this list we have to be careful and hold the j_list_lock.
  662. */
  663. spin_lock(&journal->j_list_lock);
  664. while (commit_transaction->t_forget) {
  665. transaction_t *cp_transaction;
  666. struct buffer_head *bh;
  667. jh = commit_transaction->t_forget;
  668. spin_unlock(&journal->j_list_lock);
  669. bh = jh2bh(jh);
  670. jbd_lock_bh_state(bh);
  671. J_ASSERT_JH(jh, jh->b_transaction == commit_transaction ||
  672. jh->b_transaction == journal->j_running_transaction);
  673. /*
  674. * If there is undo-protected committed data against
  675. * this buffer, then we can remove it now. If it is a
  676. * buffer needing such protection, the old frozen_data
  677. * field now points to a committed version of the
  678. * buffer, so rotate that field to the new committed
  679. * data.
  680. *
  681. * Otherwise, we can just throw away the frozen data now.
  682. */
  683. if (jh->b_committed_data) {
  684. jbd2_slab_free(jh->b_committed_data, bh->b_size);
  685. jh->b_committed_data = NULL;
  686. if (jh->b_frozen_data) {
  687. jh->b_committed_data = jh->b_frozen_data;
  688. jh->b_frozen_data = NULL;
  689. }
  690. } else if (jh->b_frozen_data) {
  691. jbd2_slab_free(jh->b_frozen_data, bh->b_size);
  692. jh->b_frozen_data = NULL;
  693. }
  694. spin_lock(&journal->j_list_lock);
  695. cp_transaction = jh->b_cp_transaction;
  696. if (cp_transaction) {
  697. JBUFFER_TRACE(jh, "remove from old cp transaction");
  698. __jbd2_journal_remove_checkpoint(jh);
  699. }
  700. /* Only re-checkpoint the buffer_head if it is marked
  701. * dirty. If the buffer was added to the BJ_Forget list
  702. * by jbd2_journal_forget, it may no longer be dirty and
  703. * there's no point in keeping a checkpoint record for
  704. * it. */
  705. /* A buffer which has been freed while still being
  706. * journaled by a previous transaction may end up still
  707. * being dirty here, but we want to avoid writing back
  708. * that buffer in the future now that the last use has
  709. * been committed. That's not only a performance gain,
  710. * it also stops aliasing problems if the buffer is left
  711. * behind for writeback and gets reallocated for another
  712. * use in a different page. */
  713. if (buffer_freed(bh)) {
  714. clear_buffer_freed(bh);
  715. clear_buffer_jbddirty(bh);
  716. }
  717. if (buffer_jbddirty(bh)) {
  718. JBUFFER_TRACE(jh, "add to new checkpointing trans");
  719. __jbd2_journal_insert_checkpoint(jh, commit_transaction);
  720. JBUFFER_TRACE(jh, "refile for checkpoint writeback");
  721. __jbd2_journal_refile_buffer(jh);
  722. jbd_unlock_bh_state(bh);
  723. } else {
  724. J_ASSERT_BH(bh, !buffer_dirty(bh));
  725. /* The buffer on BJ_Forget list and not jbddirty means
  726. * it has been freed by this transaction and hence it
  727. * could not have been reallocated until this
  728. * transaction has committed. *BUT* it could be
  729. * reallocated once we have written all the data to
  730. * disk and before we process the buffer on BJ_Forget
  731. * list. */
  732. JBUFFER_TRACE(jh, "refile or unfile freed buffer");
  733. __jbd2_journal_refile_buffer(jh);
  734. if (!jh->b_transaction) {
  735. jbd_unlock_bh_state(bh);
  736. /* needs a brelse */
  737. jbd2_journal_remove_journal_head(bh);
  738. release_buffer_page(bh);
  739. } else
  740. jbd_unlock_bh_state(bh);
  741. }
  742. cond_resched_lock(&journal->j_list_lock);
  743. }
  744. spin_unlock(&journal->j_list_lock);
  745. /*
  746. * This is a bit sleazy. We borrow j_list_lock to protect
  747. * journal->j_committing_transaction in __jbd2_journal_remove_checkpoint.
  748. * Really, __jbd2_journal_remove_checkpoint should be using j_state_lock but
  749. * it's a bit hassle to hold that across __jbd2_journal_remove_checkpoint
  750. */
  751. spin_lock(&journal->j_state_lock);
  752. spin_lock(&journal->j_list_lock);
  753. /*
  754. * Now recheck if some buffers did not get attached to the transaction
  755. * while the lock was dropped...
  756. */
  757. if (commit_transaction->t_forget) {
  758. spin_unlock(&journal->j_list_lock);
  759. spin_unlock(&journal->j_state_lock);
  760. goto restart_loop;
  761. }
  762. /* Done with this transaction! */
  763. jbd_debug(3, "JBD: commit phase 8\n");
  764. J_ASSERT(commit_transaction->t_state == T_COMMIT);
  765. commit_transaction->t_state = T_FINISHED;
  766. J_ASSERT(commit_transaction == journal->j_committing_transaction);
  767. journal->j_commit_sequence = commit_transaction->t_tid;
  768. journal->j_committing_transaction = NULL;
  769. spin_unlock(&journal->j_state_lock);
  770. if (commit_transaction->t_checkpoint_list == NULL) {
  771. __jbd2_journal_drop_transaction(journal, commit_transaction);
  772. } else {
  773. if (journal->j_checkpoint_transactions == NULL) {
  774. journal->j_checkpoint_transactions = commit_transaction;
  775. commit_transaction->t_cpnext = commit_transaction;
  776. commit_transaction->t_cpprev = commit_transaction;
  777. } else {
  778. commit_transaction->t_cpnext =
  779. journal->j_checkpoint_transactions;
  780. commit_transaction->t_cpprev =
  781. commit_transaction->t_cpnext->t_cpprev;
  782. commit_transaction->t_cpnext->t_cpprev =
  783. commit_transaction;
  784. commit_transaction->t_cpprev->t_cpnext =
  785. commit_transaction;
  786. }
  787. }
  788. spin_unlock(&journal->j_list_lock);
  789. jbd_debug(1, "JBD: commit %d complete, head %d\n",
  790. journal->j_commit_sequence, journal->j_tail_sequence);
  791. wake_up(&journal->j_wait_done_commit);
  792. }