transaction.c 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070
  1. /*
  2. * linux/fs/transaction.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. * Generic filesystem transaction handling code; part of the ext2fs
  13. * journaling system.
  14. *
  15. * This file manages transactions (compound commits managed by the
  16. * journaling code) and handles (individual atomic operations by the
  17. * filesystem).
  18. */
  19. #include <linux/time.h>
  20. #include <linux/fs.h>
  21. #include <linux/jbd.h>
  22. #include <linux/errno.h>
  23. #include <linux/slab.h>
  24. #include <linux/timer.h>
  25. #include <linux/smp_lock.h>
  26. #include <linux/mm.h>
  27. #include <linux/highmem.h>
  28. /*
  29. * get_transaction: obtain a new transaction_t object.
  30. *
  31. * Simply allocate and initialise a new transaction. Create it in
  32. * RUNNING state and add it to the current journal (which should not
  33. * have an existing running transaction: we only make a new transaction
  34. * once we have started to commit the old one).
  35. *
  36. * Preconditions:
  37. * The journal MUST be locked. We don't perform atomic mallocs on the
  38. * new transaction and we can't block without protecting against other
  39. * processes trying to touch the journal while it is in transition.
  40. *
  41. * Called under j_state_lock
  42. */
  43. static transaction_t *
  44. get_transaction(journal_t *journal, transaction_t *transaction)
  45. {
  46. transaction->t_journal = journal;
  47. transaction->t_state = T_RUNNING;
  48. transaction->t_tid = journal->j_transaction_sequence++;
  49. transaction->t_expires = jiffies + journal->j_commit_interval;
  50. spin_lock_init(&transaction->t_handle_lock);
  51. /* Set up the commit timer for the new transaction. */
  52. journal->j_commit_timer->expires = transaction->t_expires;
  53. add_timer(journal->j_commit_timer);
  54. J_ASSERT(journal->j_running_transaction == NULL);
  55. journal->j_running_transaction = transaction;
  56. return transaction;
  57. }
  58. /*
  59. * Handle management.
  60. *
  61. * A handle_t is an object which represents a single atomic update to a
  62. * filesystem, and which tracks all of the modifications which form part
  63. * of that one update.
  64. */
  65. /*
  66. * start_this_handle: Given a handle, deal with any locking or stalling
  67. * needed to make sure that there is enough journal space for the handle
  68. * to begin. Attach the handle to a transaction and set up the
  69. * transaction's buffer credits.
  70. */
  71. static int start_this_handle(journal_t *journal, handle_t *handle)
  72. {
  73. transaction_t *transaction;
  74. int needed;
  75. int nblocks = handle->h_buffer_credits;
  76. transaction_t *new_transaction = NULL;
  77. int ret = 0;
  78. if (nblocks > journal->j_max_transaction_buffers) {
  79. printk(KERN_ERR "JBD: %s wants too many credits (%d > %d)\n",
  80. current->comm, nblocks,
  81. journal->j_max_transaction_buffers);
  82. ret = -ENOSPC;
  83. goto out;
  84. }
  85. alloc_transaction:
  86. if (!journal->j_running_transaction) {
  87. new_transaction = jbd_kmalloc(sizeof(*new_transaction),
  88. GFP_NOFS);
  89. if (!new_transaction) {
  90. ret = -ENOMEM;
  91. goto out;
  92. }
  93. memset(new_transaction, 0, sizeof(*new_transaction));
  94. }
  95. jbd_debug(3, "New handle %p going live.\n", handle);
  96. repeat:
  97. /*
  98. * We need to hold j_state_lock until t_updates has been incremented,
  99. * for proper journal barrier handling
  100. */
  101. spin_lock(&journal->j_state_lock);
  102. repeat_locked:
  103. if (is_journal_aborted(journal) ||
  104. (journal->j_errno != 0 && !(journal->j_flags & JFS_ACK_ERR))) {
  105. spin_unlock(&journal->j_state_lock);
  106. ret = -EROFS;
  107. goto out;
  108. }
  109. /* Wait on the journal's transaction barrier if necessary */
  110. if (journal->j_barrier_count) {
  111. spin_unlock(&journal->j_state_lock);
  112. wait_event(journal->j_wait_transaction_locked,
  113. journal->j_barrier_count == 0);
  114. goto repeat;
  115. }
  116. if (!journal->j_running_transaction) {
  117. if (!new_transaction) {
  118. spin_unlock(&journal->j_state_lock);
  119. goto alloc_transaction;
  120. }
  121. get_transaction(journal, new_transaction);
  122. new_transaction = NULL;
  123. }
  124. transaction = journal->j_running_transaction;
  125. /*
  126. * If the current transaction is locked down for commit, wait for the
  127. * lock to be released.
  128. */
  129. if (transaction->t_state == T_LOCKED) {
  130. DEFINE_WAIT(wait);
  131. prepare_to_wait(&journal->j_wait_transaction_locked,
  132. &wait, TASK_UNINTERRUPTIBLE);
  133. spin_unlock(&journal->j_state_lock);
  134. schedule();
  135. finish_wait(&journal->j_wait_transaction_locked, &wait);
  136. goto repeat;
  137. }
  138. /*
  139. * If there is not enough space left in the log to write all potential
  140. * buffers requested by this operation, we need to stall pending a log
  141. * checkpoint to free some more log space.
  142. */
  143. spin_lock(&transaction->t_handle_lock);
  144. needed = transaction->t_outstanding_credits + nblocks;
  145. if (needed > journal->j_max_transaction_buffers) {
  146. /*
  147. * If the current transaction is already too large, then start
  148. * to commit it: we can then go back and attach this handle to
  149. * a new transaction.
  150. */
  151. DEFINE_WAIT(wait);
  152. jbd_debug(2, "Handle %p starting new commit...\n", handle);
  153. spin_unlock(&transaction->t_handle_lock);
  154. prepare_to_wait(&journal->j_wait_transaction_locked, &wait,
  155. TASK_UNINTERRUPTIBLE);
  156. __log_start_commit(journal, transaction->t_tid);
  157. spin_unlock(&journal->j_state_lock);
  158. schedule();
  159. finish_wait(&journal->j_wait_transaction_locked, &wait);
  160. goto repeat;
  161. }
  162. /*
  163. * The commit code assumes that it can get enough log space
  164. * without forcing a checkpoint. This is *critical* for
  165. * correctness: a checkpoint of a buffer which is also
  166. * associated with a committing transaction creates a deadlock,
  167. * so commit simply cannot force through checkpoints.
  168. *
  169. * We must therefore ensure the necessary space in the journal
  170. * *before* starting to dirty potentially checkpointed buffers
  171. * in the new transaction.
  172. *
  173. * The worst part is, any transaction currently committing can
  174. * reduce the free space arbitrarily. Be careful to account for
  175. * those buffers when checkpointing.
  176. */
  177. /*
  178. * @@@ AKPM: This seems rather over-defensive. We're giving commit
  179. * a _lot_ of headroom: 1/4 of the journal plus the size of
  180. * the committing transaction. Really, we only need to give it
  181. * committing_transaction->t_outstanding_credits plus "enough" for
  182. * the log control blocks.
  183. * Also, this test is inconsitent with the matching one in
  184. * journal_extend().
  185. */
  186. if (__log_space_left(journal) < jbd_space_needed(journal)) {
  187. jbd_debug(2, "Handle %p waiting for checkpoint...\n", handle);
  188. spin_unlock(&transaction->t_handle_lock);
  189. __log_wait_for_space(journal);
  190. goto repeat_locked;
  191. }
  192. /* OK, account for the buffers that this operation expects to
  193. * use and add the handle to the running transaction. */
  194. handle->h_transaction = transaction;
  195. transaction->t_outstanding_credits += nblocks;
  196. transaction->t_updates++;
  197. transaction->t_handle_count++;
  198. jbd_debug(4, "Handle %p given %d credits (total %d, free %d)\n",
  199. handle, nblocks, transaction->t_outstanding_credits,
  200. __log_space_left(journal));
  201. spin_unlock(&transaction->t_handle_lock);
  202. spin_unlock(&journal->j_state_lock);
  203. out:
  204. kfree(new_transaction);
  205. return ret;
  206. }
  207. /* Allocate a new handle. This should probably be in a slab... */
  208. static handle_t *new_handle(int nblocks)
  209. {
  210. handle_t *handle = jbd_alloc_handle(GFP_NOFS);
  211. if (!handle)
  212. return NULL;
  213. memset(handle, 0, sizeof(*handle));
  214. handle->h_buffer_credits = nblocks;
  215. handle->h_ref = 1;
  216. return handle;
  217. }
  218. /**
  219. * handle_t *journal_start() - Obtain a new handle.
  220. * @journal: Journal to start transaction on.
  221. * @nblocks: number of block buffer we might modify
  222. *
  223. * We make sure that the transaction can guarantee at least nblocks of
  224. * modified buffers in the log. We block until the log can guarantee
  225. * that much space.
  226. *
  227. * This function is visible to journal users (like ext3fs), so is not
  228. * called with the journal already locked.
  229. *
  230. * Return a pointer to a newly allocated handle, or NULL on failure
  231. */
  232. handle_t *journal_start(journal_t *journal, int nblocks)
  233. {
  234. handle_t *handle = journal_current_handle();
  235. int err;
  236. if (!journal)
  237. return ERR_PTR(-EROFS);
  238. if (handle) {
  239. J_ASSERT(handle->h_transaction->t_journal == journal);
  240. handle->h_ref++;
  241. return handle;
  242. }
  243. handle = new_handle(nblocks);
  244. if (!handle)
  245. return ERR_PTR(-ENOMEM);
  246. current->journal_info = handle;
  247. err = start_this_handle(journal, handle);
  248. if (err < 0) {
  249. jbd_free_handle(handle);
  250. current->journal_info = NULL;
  251. handle = ERR_PTR(err);
  252. }
  253. return handle;
  254. }
  255. /**
  256. * int journal_extend() - extend buffer credits.
  257. * @handle: handle to 'extend'
  258. * @nblocks: nr blocks to try to extend by.
  259. *
  260. * Some transactions, such as large extends and truncates, can be done
  261. * atomically all at once or in several stages. The operation requests
  262. * a credit for a number of buffer modications in advance, but can
  263. * extend its credit if it needs more.
  264. *
  265. * journal_extend tries to give the running handle more buffer credits.
  266. * It does not guarantee that allocation - this is a best-effort only.
  267. * The calling process MUST be able to deal cleanly with a failure to
  268. * extend here.
  269. *
  270. * Return 0 on success, non-zero on failure.
  271. *
  272. * return code < 0 implies an error
  273. * return code > 0 implies normal transaction-full status.
  274. */
  275. int journal_extend(handle_t *handle, int nblocks)
  276. {
  277. transaction_t *transaction = handle->h_transaction;
  278. journal_t *journal = transaction->t_journal;
  279. int result;
  280. int wanted;
  281. result = -EIO;
  282. if (is_handle_aborted(handle))
  283. goto out;
  284. result = 1;
  285. spin_lock(&journal->j_state_lock);
  286. /* Don't extend a locked-down transaction! */
  287. if (handle->h_transaction->t_state != T_RUNNING) {
  288. jbd_debug(3, "denied handle %p %d blocks: "
  289. "transaction not running\n", handle, nblocks);
  290. goto error_out;
  291. }
  292. spin_lock(&transaction->t_handle_lock);
  293. wanted = transaction->t_outstanding_credits + nblocks;
  294. if (wanted > journal->j_max_transaction_buffers) {
  295. jbd_debug(3, "denied handle %p %d blocks: "
  296. "transaction too large\n", handle, nblocks);
  297. goto unlock;
  298. }
  299. if (wanted > __log_space_left(journal)) {
  300. jbd_debug(3, "denied handle %p %d blocks: "
  301. "insufficient log space\n", handle, nblocks);
  302. goto unlock;
  303. }
  304. handle->h_buffer_credits += nblocks;
  305. transaction->t_outstanding_credits += nblocks;
  306. result = 0;
  307. jbd_debug(3, "extended handle %p by %d\n", handle, nblocks);
  308. unlock:
  309. spin_unlock(&transaction->t_handle_lock);
  310. error_out:
  311. spin_unlock(&journal->j_state_lock);
  312. out:
  313. return result;
  314. }
  315. /**
  316. * int journal_restart() - restart a handle .
  317. * @handle: handle to restart
  318. * @nblocks: nr credits requested
  319. *
  320. * Restart a handle for a multi-transaction filesystem
  321. * operation.
  322. *
  323. * If the journal_extend() call above fails to grant new buffer credits
  324. * to a running handle, a call to journal_restart will commit the
  325. * handle's transaction so far and reattach the handle to a new
  326. * transaction capabable of guaranteeing the requested number of
  327. * credits.
  328. */
  329. int journal_restart(handle_t *handle, int nblocks)
  330. {
  331. transaction_t *transaction = handle->h_transaction;
  332. journal_t *journal = transaction->t_journal;
  333. int ret;
  334. /* If we've had an abort of any type, don't even think about
  335. * actually doing the restart! */
  336. if (is_handle_aborted(handle))
  337. return 0;
  338. /*
  339. * First unlink the handle from its current transaction, and start the
  340. * commit on that.
  341. */
  342. J_ASSERT(transaction->t_updates > 0);
  343. J_ASSERT(journal_current_handle() == handle);
  344. spin_lock(&journal->j_state_lock);
  345. spin_lock(&transaction->t_handle_lock);
  346. transaction->t_outstanding_credits -= handle->h_buffer_credits;
  347. transaction->t_updates--;
  348. if (!transaction->t_updates)
  349. wake_up(&journal->j_wait_updates);
  350. spin_unlock(&transaction->t_handle_lock);
  351. jbd_debug(2, "restarting handle %p\n", handle);
  352. __log_start_commit(journal, transaction->t_tid);
  353. spin_unlock(&journal->j_state_lock);
  354. handle->h_buffer_credits = nblocks;
  355. ret = start_this_handle(journal, handle);
  356. return ret;
  357. }
  358. /**
  359. * void journal_lock_updates () - establish a transaction barrier.
  360. * @journal: Journal to establish a barrier on.
  361. *
  362. * This locks out any further updates from being started, and blocks
  363. * until all existing updates have completed, returning only once the
  364. * journal is in a quiescent state with no updates running.
  365. *
  366. * The journal lock should not be held on entry.
  367. */
  368. void journal_lock_updates(journal_t *journal)
  369. {
  370. DEFINE_WAIT(wait);
  371. spin_lock(&journal->j_state_lock);
  372. ++journal->j_barrier_count;
  373. /* Wait until there are no running updates */
  374. while (1) {
  375. transaction_t *transaction = journal->j_running_transaction;
  376. if (!transaction)
  377. break;
  378. spin_lock(&transaction->t_handle_lock);
  379. if (!transaction->t_updates) {
  380. spin_unlock(&transaction->t_handle_lock);
  381. break;
  382. }
  383. prepare_to_wait(&journal->j_wait_updates, &wait,
  384. TASK_UNINTERRUPTIBLE);
  385. spin_unlock(&transaction->t_handle_lock);
  386. spin_unlock(&journal->j_state_lock);
  387. schedule();
  388. finish_wait(&journal->j_wait_updates, &wait);
  389. spin_lock(&journal->j_state_lock);
  390. }
  391. spin_unlock(&journal->j_state_lock);
  392. /*
  393. * We have now established a barrier against other normal updates, but
  394. * we also need to barrier against other journal_lock_updates() calls
  395. * to make sure that we serialise special journal-locked operations
  396. * too.
  397. */
  398. down(&journal->j_barrier);
  399. }
  400. /**
  401. * void journal_unlock_updates (journal_t* journal) - release barrier
  402. * @journal: Journal to release the barrier on.
  403. *
  404. * Release a transaction barrier obtained with journal_lock_updates().
  405. *
  406. * Should be called without the journal lock held.
  407. */
  408. void journal_unlock_updates (journal_t *journal)
  409. {
  410. J_ASSERT(journal->j_barrier_count != 0);
  411. up(&journal->j_barrier);
  412. spin_lock(&journal->j_state_lock);
  413. --journal->j_barrier_count;
  414. spin_unlock(&journal->j_state_lock);
  415. wake_up(&journal->j_wait_transaction_locked);
  416. }
  417. /*
  418. * Report any unexpected dirty buffers which turn up. Normally those
  419. * indicate an error, but they can occur if the user is running (say)
  420. * tune2fs to modify the live filesystem, so we need the option of
  421. * continuing as gracefully as possible. #
  422. *
  423. * The caller should already hold the journal lock and
  424. * j_list_lock spinlock: most callers will need those anyway
  425. * in order to probe the buffer's journaling state safely.
  426. */
  427. static void jbd_unexpected_dirty_buffer(struct journal_head *jh)
  428. {
  429. int jlist;
  430. /* If this buffer is one which might reasonably be dirty
  431. * --- ie. data, or not part of this journal --- then
  432. * we're OK to leave it alone, but otherwise we need to
  433. * move the dirty bit to the journal's own internal
  434. * JBDDirty bit. */
  435. jlist = jh->b_jlist;
  436. if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
  437. jlist == BJ_Shadow || jlist == BJ_Forget) {
  438. struct buffer_head *bh = jh2bh(jh);
  439. if (test_clear_buffer_dirty(bh))
  440. set_buffer_jbddirty(bh);
  441. }
  442. }
  443. /*
  444. * If the buffer is already part of the current transaction, then there
  445. * is nothing we need to do. If it is already part of a prior
  446. * transaction which we are still committing to disk, then we need to
  447. * make sure that we do not overwrite the old copy: we do copy-out to
  448. * preserve the copy going to disk. We also account the buffer against
  449. * the handle's metadata buffer credits (unless the buffer is already
  450. * part of the transaction, that is).
  451. *
  452. */
  453. static int
  454. do_get_write_access(handle_t *handle, struct journal_head *jh,
  455. int force_copy)
  456. {
  457. struct buffer_head *bh;
  458. transaction_t *transaction;
  459. journal_t *journal;
  460. int error;
  461. char *frozen_buffer = NULL;
  462. int need_copy = 0;
  463. if (is_handle_aborted(handle))
  464. return -EROFS;
  465. transaction = handle->h_transaction;
  466. journal = transaction->t_journal;
  467. jbd_debug(5, "buffer_head %p, force_copy %d\n", jh, force_copy);
  468. JBUFFER_TRACE(jh, "entry");
  469. repeat:
  470. bh = jh2bh(jh);
  471. /* @@@ Need to check for errors here at some point. */
  472. lock_buffer(bh);
  473. jbd_lock_bh_state(bh);
  474. /* We now hold the buffer lock so it is safe to query the buffer
  475. * state. Is the buffer dirty?
  476. *
  477. * If so, there are two possibilities. The buffer may be
  478. * non-journaled, and undergoing a quite legitimate writeback.
  479. * Otherwise, it is journaled, and we don't expect dirty buffers
  480. * in that state (the buffers should be marked JBD_Dirty
  481. * instead.) So either the IO is being done under our own
  482. * control and this is a bug, or it's a third party IO such as
  483. * dump(8) (which may leave the buffer scheduled for read ---
  484. * ie. locked but not dirty) or tune2fs (which may actually have
  485. * the buffer dirtied, ugh.) */
  486. if (buffer_dirty(bh)) {
  487. /*
  488. * First question: is this buffer already part of the current
  489. * transaction or the existing committing transaction?
  490. */
  491. if (jh->b_transaction) {
  492. J_ASSERT_JH(jh,
  493. jh->b_transaction == transaction ||
  494. jh->b_transaction ==
  495. journal->j_committing_transaction);
  496. if (jh->b_next_transaction)
  497. J_ASSERT_JH(jh, jh->b_next_transaction ==
  498. transaction);
  499. }
  500. /*
  501. * In any case we need to clean the dirty flag and we must
  502. * do it under the buffer lock to be sure we don't race
  503. * with running write-out.
  504. */
  505. JBUFFER_TRACE(jh, "Unexpected dirty buffer");
  506. jbd_unexpected_dirty_buffer(jh);
  507. }
  508. unlock_buffer(bh);
  509. error = -EROFS;
  510. if (is_handle_aborted(handle)) {
  511. jbd_unlock_bh_state(bh);
  512. goto out;
  513. }
  514. error = 0;
  515. /*
  516. * The buffer is already part of this transaction if b_transaction or
  517. * b_next_transaction points to it
  518. */
  519. if (jh->b_transaction == transaction ||
  520. jh->b_next_transaction == transaction)
  521. goto done;
  522. /*
  523. * If there is already a copy-out version of this buffer, then we don't
  524. * need to make another one
  525. */
  526. if (jh->b_frozen_data) {
  527. JBUFFER_TRACE(jh, "has frozen data");
  528. J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
  529. jh->b_next_transaction = transaction;
  530. goto done;
  531. }
  532. /* Is there data here we need to preserve? */
  533. if (jh->b_transaction && jh->b_transaction != transaction) {
  534. JBUFFER_TRACE(jh, "owned by older transaction");
  535. J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
  536. J_ASSERT_JH(jh, jh->b_transaction ==
  537. journal->j_committing_transaction);
  538. /* There is one case we have to be very careful about.
  539. * If the committing transaction is currently writing
  540. * this buffer out to disk and has NOT made a copy-out,
  541. * then we cannot modify the buffer contents at all
  542. * right now. The essence of copy-out is that it is the
  543. * extra copy, not the primary copy, which gets
  544. * journaled. If the primary copy is already going to
  545. * disk then we cannot do copy-out here. */
  546. if (jh->b_jlist == BJ_Shadow) {
  547. DEFINE_WAIT_BIT(wait, &bh->b_state, BH_Unshadow);
  548. wait_queue_head_t *wqh;
  549. wqh = bit_waitqueue(&bh->b_state, BH_Unshadow);
  550. JBUFFER_TRACE(jh, "on shadow: sleep");
  551. jbd_unlock_bh_state(bh);
  552. /* commit wakes up all shadow buffers after IO */
  553. for ( ; ; ) {
  554. prepare_to_wait(wqh, &wait.wait,
  555. TASK_UNINTERRUPTIBLE);
  556. if (jh->b_jlist != BJ_Shadow)
  557. break;
  558. schedule();
  559. }
  560. finish_wait(wqh, &wait.wait);
  561. goto repeat;
  562. }
  563. /* Only do the copy if the currently-owning transaction
  564. * still needs it. If it is on the Forget list, the
  565. * committing transaction is past that stage. The
  566. * buffer had better remain locked during the kmalloc,
  567. * but that should be true --- we hold the journal lock
  568. * still and the buffer is already on the BUF_JOURNAL
  569. * list so won't be flushed.
  570. *
  571. * Subtle point, though: if this is a get_undo_access,
  572. * then we will be relying on the frozen_data to contain
  573. * the new value of the committed_data record after the
  574. * transaction, so we HAVE to force the frozen_data copy
  575. * in that case. */
  576. if (jh->b_jlist != BJ_Forget || force_copy) {
  577. JBUFFER_TRACE(jh, "generate frozen data");
  578. if (!frozen_buffer) {
  579. JBUFFER_TRACE(jh, "allocate memory for buffer");
  580. jbd_unlock_bh_state(bh);
  581. frozen_buffer = jbd_kmalloc(jh2bh(jh)->b_size,
  582. GFP_NOFS);
  583. if (!frozen_buffer) {
  584. printk(KERN_EMERG
  585. "%s: OOM for frozen_buffer\n",
  586. __FUNCTION__);
  587. JBUFFER_TRACE(jh, "oom!");
  588. error = -ENOMEM;
  589. jbd_lock_bh_state(bh);
  590. goto done;
  591. }
  592. goto repeat;
  593. }
  594. jh->b_frozen_data = frozen_buffer;
  595. frozen_buffer = NULL;
  596. need_copy = 1;
  597. }
  598. jh->b_next_transaction = transaction;
  599. }
  600. /*
  601. * Finally, if the buffer is not journaled right now, we need to make
  602. * sure it doesn't get written to disk before the caller actually
  603. * commits the new data
  604. */
  605. if (!jh->b_transaction) {
  606. JBUFFER_TRACE(jh, "no transaction");
  607. J_ASSERT_JH(jh, !jh->b_next_transaction);
  608. jh->b_transaction = transaction;
  609. JBUFFER_TRACE(jh, "file as BJ_Reserved");
  610. spin_lock(&journal->j_list_lock);
  611. __journal_file_buffer(jh, transaction, BJ_Reserved);
  612. spin_unlock(&journal->j_list_lock);
  613. }
  614. done:
  615. if (need_copy) {
  616. struct page *page;
  617. int offset;
  618. char *source;
  619. J_EXPECT_JH(jh, buffer_uptodate(jh2bh(jh)),
  620. "Possible IO failure.\n");
  621. page = jh2bh(jh)->b_page;
  622. offset = ((unsigned long) jh2bh(jh)->b_data) & ~PAGE_MASK;
  623. source = kmap_atomic(page, KM_USER0);
  624. memcpy(jh->b_frozen_data, source+offset, jh2bh(jh)->b_size);
  625. kunmap_atomic(source, KM_USER0);
  626. }
  627. jbd_unlock_bh_state(bh);
  628. /*
  629. * If we are about to journal a buffer, then any revoke pending on it is
  630. * no longer valid
  631. */
  632. journal_cancel_revoke(handle, jh);
  633. out:
  634. kfree(frozen_buffer);
  635. JBUFFER_TRACE(jh, "exit");
  636. return error;
  637. }
  638. /**
  639. * int journal_get_write_access() - notify intent to modify a buffer for metadata (not data) update.
  640. * @handle: transaction to add buffer modifications to
  641. * @bh: bh to be used for metadata writes
  642. * @credits: variable that will receive credits for the buffer
  643. *
  644. * Returns an error code or 0 on success.
  645. *
  646. * In full data journalling mode the buffer may be of type BJ_AsyncData,
  647. * because we're write()ing a buffer which is also part of a shared mapping.
  648. */
  649. int journal_get_write_access(handle_t *handle, struct buffer_head *bh)
  650. {
  651. struct journal_head *jh = journal_add_journal_head(bh);
  652. int rc;
  653. /* We do not want to get caught playing with fields which the
  654. * log thread also manipulates. Make sure that the buffer
  655. * completes any outstanding IO before proceeding. */
  656. rc = do_get_write_access(handle, jh, 0);
  657. journal_put_journal_head(jh);
  658. return rc;
  659. }
  660. /*
  661. * When the user wants to journal a newly created buffer_head
  662. * (ie. getblk() returned a new buffer and we are going to populate it
  663. * manually rather than reading off disk), then we need to keep the
  664. * buffer_head locked until it has been completely filled with new
  665. * data. In this case, we should be able to make the assertion that
  666. * the bh is not already part of an existing transaction.
  667. *
  668. * The buffer should already be locked by the caller by this point.
  669. * There is no lock ranking violation: it was a newly created,
  670. * unlocked buffer beforehand. */
  671. /**
  672. * int journal_get_create_access () - notify intent to use newly created bh
  673. * @handle: transaction to new buffer to
  674. * @bh: new buffer.
  675. *
  676. * Call this if you create a new bh.
  677. */
  678. int journal_get_create_access(handle_t *handle, struct buffer_head *bh)
  679. {
  680. transaction_t *transaction = handle->h_transaction;
  681. journal_t *journal = transaction->t_journal;
  682. struct journal_head *jh = journal_add_journal_head(bh);
  683. int err;
  684. jbd_debug(5, "journal_head %p\n", jh);
  685. err = -EROFS;
  686. if (is_handle_aborted(handle))
  687. goto out;
  688. err = 0;
  689. JBUFFER_TRACE(jh, "entry");
  690. /*
  691. * The buffer may already belong to this transaction due to pre-zeroing
  692. * in the filesystem's new_block code. It may also be on the previous,
  693. * committing transaction's lists, but it HAS to be in Forget state in
  694. * that case: the transaction must have deleted the buffer for it to be
  695. * reused here.
  696. */
  697. jbd_lock_bh_state(bh);
  698. spin_lock(&journal->j_list_lock);
  699. J_ASSERT_JH(jh, (jh->b_transaction == transaction ||
  700. jh->b_transaction == NULL ||
  701. (jh->b_transaction == journal->j_committing_transaction &&
  702. jh->b_jlist == BJ_Forget)));
  703. J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
  704. J_ASSERT_JH(jh, buffer_locked(jh2bh(jh)));
  705. if (jh->b_transaction == NULL) {
  706. jh->b_transaction = transaction;
  707. JBUFFER_TRACE(jh, "file as BJ_Reserved");
  708. __journal_file_buffer(jh, transaction, BJ_Reserved);
  709. } else if (jh->b_transaction == journal->j_committing_transaction) {
  710. JBUFFER_TRACE(jh, "set next transaction");
  711. jh->b_next_transaction = transaction;
  712. }
  713. spin_unlock(&journal->j_list_lock);
  714. jbd_unlock_bh_state(bh);
  715. /*
  716. * akpm: I added this. ext3_alloc_branch can pick up new indirect
  717. * blocks which contain freed but then revoked metadata. We need
  718. * to cancel the revoke in case we end up freeing it yet again
  719. * and the reallocating as data - this would cause a second revoke,
  720. * which hits an assertion error.
  721. */
  722. JBUFFER_TRACE(jh, "cancelling revoke");
  723. journal_cancel_revoke(handle, jh);
  724. journal_put_journal_head(jh);
  725. out:
  726. return err;
  727. }
  728. /**
  729. * int journal_get_undo_access() - Notify intent to modify metadata with
  730. * non-rewindable consequences
  731. * @handle: transaction
  732. * @bh: buffer to undo
  733. * @credits: store the number of taken credits here (if not NULL)
  734. *
  735. * Sometimes there is a need to distinguish between metadata which has
  736. * been committed to disk and that which has not. The ext3fs code uses
  737. * this for freeing and allocating space, we have to make sure that we
  738. * do not reuse freed space until the deallocation has been committed,
  739. * since if we overwrote that space we would make the delete
  740. * un-rewindable in case of a crash.
  741. *
  742. * To deal with that, journal_get_undo_access requests write access to a
  743. * buffer for parts of non-rewindable operations such as delete
  744. * operations on the bitmaps. The journaling code must keep a copy of
  745. * the buffer's contents prior to the undo_access call until such time
  746. * as we know that the buffer has definitely been committed to disk.
  747. *
  748. * We never need to know which transaction the committed data is part
  749. * of, buffers touched here are guaranteed to be dirtied later and so
  750. * will be committed to a new transaction in due course, at which point
  751. * we can discard the old committed data pointer.
  752. *
  753. * Returns error number or 0 on success.
  754. */
  755. int journal_get_undo_access(handle_t *handle, struct buffer_head *bh)
  756. {
  757. int err;
  758. struct journal_head *jh = journal_add_journal_head(bh);
  759. char *committed_data = NULL;
  760. JBUFFER_TRACE(jh, "entry");
  761. /*
  762. * Do this first --- it can drop the journal lock, so we want to
  763. * make sure that obtaining the committed_data is done
  764. * atomically wrt. completion of any outstanding commits.
  765. */
  766. err = do_get_write_access(handle, jh, 1);
  767. if (err)
  768. goto out;
  769. repeat:
  770. if (!jh->b_committed_data) {
  771. committed_data = jbd_kmalloc(jh2bh(jh)->b_size, GFP_NOFS);
  772. if (!committed_data) {
  773. printk(KERN_EMERG "%s: No memory for committed data\n",
  774. __FUNCTION__);
  775. err = -ENOMEM;
  776. goto out;
  777. }
  778. }
  779. jbd_lock_bh_state(bh);
  780. if (!jh->b_committed_data) {
  781. /* Copy out the current buffer contents into the
  782. * preserved, committed copy. */
  783. JBUFFER_TRACE(jh, "generate b_committed data");
  784. if (!committed_data) {
  785. jbd_unlock_bh_state(bh);
  786. goto repeat;
  787. }
  788. jh->b_committed_data = committed_data;
  789. committed_data = NULL;
  790. memcpy(jh->b_committed_data, bh->b_data, bh->b_size);
  791. }
  792. jbd_unlock_bh_state(bh);
  793. out:
  794. journal_put_journal_head(jh);
  795. kfree(committed_data);
  796. return err;
  797. }
  798. /**
  799. * int journal_dirty_data() - mark a buffer as containing dirty data which
  800. * needs to be flushed before we can commit the
  801. * current transaction.
  802. * @handle: transaction
  803. * @bh: bufferhead to mark
  804. *
  805. * The buffer is placed on the transaction's data list and is marked as
  806. * belonging to the transaction.
  807. *
  808. * Returns error number or 0 on success.
  809. *
  810. * journal_dirty_data() can be called via page_launder->ext3_writepage
  811. * by kswapd.
  812. */
  813. int journal_dirty_data(handle_t *handle, struct buffer_head *bh)
  814. {
  815. journal_t *journal = handle->h_transaction->t_journal;
  816. int need_brelse = 0;
  817. struct journal_head *jh;
  818. if (is_handle_aborted(handle))
  819. return 0;
  820. jh = journal_add_journal_head(bh);
  821. JBUFFER_TRACE(jh, "entry");
  822. /*
  823. * The buffer could *already* be dirty. Writeout can start
  824. * at any time.
  825. */
  826. jbd_debug(4, "jh: %p, tid:%d\n", jh, handle->h_transaction->t_tid);
  827. /*
  828. * What if the buffer is already part of a running transaction?
  829. *
  830. * There are two cases:
  831. * 1) It is part of the current running transaction. Refile it,
  832. * just in case we have allocated it as metadata, deallocated
  833. * it, then reallocated it as data.
  834. * 2) It is part of the previous, still-committing transaction.
  835. * If all we want to do is to guarantee that the buffer will be
  836. * written to disk before this new transaction commits, then
  837. * being sure that the *previous* transaction has this same
  838. * property is sufficient for us! Just leave it on its old
  839. * transaction.
  840. *
  841. * In case (2), the buffer must not already exist as metadata
  842. * --- that would violate write ordering (a transaction is free
  843. * to write its data at any point, even before the previous
  844. * committing transaction has committed). The caller must
  845. * never, ever allow this to happen: there's nothing we can do
  846. * about it in this layer.
  847. */
  848. jbd_lock_bh_state(bh);
  849. spin_lock(&journal->j_list_lock);
  850. if (jh->b_transaction) {
  851. JBUFFER_TRACE(jh, "has transaction");
  852. if (jh->b_transaction != handle->h_transaction) {
  853. JBUFFER_TRACE(jh, "belongs to older transaction");
  854. J_ASSERT_JH(jh, jh->b_transaction ==
  855. journal->j_committing_transaction);
  856. /* @@@ IS THIS TRUE ? */
  857. /*
  858. * Not any more. Scenario: someone does a write()
  859. * in data=journal mode. The buffer's transaction has
  860. * moved into commit. Then someone does another
  861. * write() to the file. We do the frozen data copyout
  862. * and set b_next_transaction to point to j_running_t.
  863. * And while we're in that state, someone does a
  864. * writepage() in an attempt to pageout the same area
  865. * of the file via a shared mapping. At present that
  866. * calls journal_dirty_data(), and we get right here.
  867. * It may be too late to journal the data. Simply
  868. * falling through to the next test will suffice: the
  869. * data will be dirty and wil be checkpointed. The
  870. * ordering comments in the next comment block still
  871. * apply.
  872. */
  873. //J_ASSERT_JH(jh, jh->b_next_transaction == NULL);
  874. /*
  875. * If we're journalling data, and this buffer was
  876. * subject to a write(), it could be metadata, forget
  877. * or shadow against the committing transaction. Now,
  878. * someone has dirtied the same darn page via a mapping
  879. * and it is being writepage()'d.
  880. * We *could* just steal the page from commit, with some
  881. * fancy locking there. Instead, we just skip it -
  882. * don't tie the page's buffers to the new transaction
  883. * at all.
  884. * Implication: if we crash before the writepage() data
  885. * is written into the filesystem, recovery will replay
  886. * the write() data.
  887. */
  888. if (jh->b_jlist != BJ_None &&
  889. jh->b_jlist != BJ_SyncData &&
  890. jh->b_jlist != BJ_Locked) {
  891. JBUFFER_TRACE(jh, "Not stealing");
  892. goto no_journal;
  893. }
  894. /*
  895. * This buffer may be undergoing writeout in commit. We
  896. * can't return from here and let the caller dirty it
  897. * again because that can cause the write-out loop in
  898. * commit to never terminate.
  899. */
  900. if (buffer_dirty(bh)) {
  901. get_bh(bh);
  902. spin_unlock(&journal->j_list_lock);
  903. jbd_unlock_bh_state(bh);
  904. need_brelse = 1;
  905. sync_dirty_buffer(bh);
  906. jbd_lock_bh_state(bh);
  907. spin_lock(&journal->j_list_lock);
  908. /* The buffer may become locked again at any
  909. time if it is redirtied */
  910. }
  911. /* journal_clean_data_list() may have got there first */
  912. if (jh->b_transaction != NULL) {
  913. JBUFFER_TRACE(jh, "unfile from commit");
  914. __journal_temp_unlink_buffer(jh);
  915. /* It still points to the committing
  916. * transaction; move it to this one so
  917. * that the refile assert checks are
  918. * happy. */
  919. jh->b_transaction = handle->h_transaction;
  920. }
  921. /* The buffer will be refiled below */
  922. }
  923. /*
  924. * Special case --- the buffer might actually have been
  925. * allocated and then immediately deallocated in the previous,
  926. * committing transaction, so might still be left on that
  927. * transaction's metadata lists.
  928. */
  929. if (jh->b_jlist != BJ_SyncData && jh->b_jlist != BJ_Locked) {
  930. JBUFFER_TRACE(jh, "not on correct data list: unfile");
  931. J_ASSERT_JH(jh, jh->b_jlist != BJ_Shadow);
  932. __journal_temp_unlink_buffer(jh);
  933. jh->b_transaction = handle->h_transaction;
  934. JBUFFER_TRACE(jh, "file as data");
  935. __journal_file_buffer(jh, handle->h_transaction,
  936. BJ_SyncData);
  937. }
  938. } else {
  939. JBUFFER_TRACE(jh, "not on a transaction");
  940. __journal_file_buffer(jh, handle->h_transaction, BJ_SyncData);
  941. }
  942. no_journal:
  943. spin_unlock(&journal->j_list_lock);
  944. jbd_unlock_bh_state(bh);
  945. if (need_brelse) {
  946. BUFFER_TRACE(bh, "brelse");
  947. __brelse(bh);
  948. }
  949. JBUFFER_TRACE(jh, "exit");
  950. journal_put_journal_head(jh);
  951. return 0;
  952. }
  953. /**
  954. * int journal_dirty_metadata() - mark a buffer as containing dirty metadata
  955. * @handle: transaction to add buffer to.
  956. * @bh: buffer to mark
  957. *
  958. * mark dirty metadata which needs to be journaled as part of the current
  959. * transaction.
  960. *
  961. * The buffer is placed on the transaction's metadata list and is marked
  962. * as belonging to the transaction.
  963. *
  964. * Returns error number or 0 on success.
  965. *
  966. * Special care needs to be taken if the buffer already belongs to the
  967. * current committing transaction (in which case we should have frozen
  968. * data present for that commit). In that case, we don't relink the
  969. * buffer: that only gets done when the old transaction finally
  970. * completes its commit.
  971. */
  972. int journal_dirty_metadata(handle_t *handle, struct buffer_head *bh)
  973. {
  974. transaction_t *transaction = handle->h_transaction;
  975. journal_t *journal = transaction->t_journal;
  976. struct journal_head *jh = bh2jh(bh);
  977. jbd_debug(5, "journal_head %p\n", jh);
  978. JBUFFER_TRACE(jh, "entry");
  979. if (is_handle_aborted(handle))
  980. goto out;
  981. jbd_lock_bh_state(bh);
  982. if (jh->b_modified == 0) {
  983. /*
  984. * This buffer's got modified and becoming part
  985. * of the transaction. This needs to be done
  986. * once a transaction -bzzz
  987. */
  988. jh->b_modified = 1;
  989. J_ASSERT_JH(jh, handle->h_buffer_credits > 0);
  990. handle->h_buffer_credits--;
  991. }
  992. /*
  993. * fastpath, to avoid expensive locking. If this buffer is already
  994. * on the running transaction's metadata list there is nothing to do.
  995. * Nobody can take it off again because there is a handle open.
  996. * I _think_ we're OK here with SMP barriers - a mistaken decision will
  997. * result in this test being false, so we go in and take the locks.
  998. */
  999. if (jh->b_transaction == transaction && jh->b_jlist == BJ_Metadata) {
  1000. JBUFFER_TRACE(jh, "fastpath");
  1001. J_ASSERT_JH(jh, jh->b_transaction ==
  1002. journal->j_running_transaction);
  1003. goto out_unlock_bh;
  1004. }
  1005. set_buffer_jbddirty(bh);
  1006. /*
  1007. * Metadata already on the current transaction list doesn't
  1008. * need to be filed. Metadata on another transaction's list must
  1009. * be committing, and will be refiled once the commit completes:
  1010. * leave it alone for now.
  1011. */
  1012. if (jh->b_transaction != transaction) {
  1013. JBUFFER_TRACE(jh, "already on other transaction");
  1014. J_ASSERT_JH(jh, jh->b_transaction ==
  1015. journal->j_committing_transaction);
  1016. J_ASSERT_JH(jh, jh->b_next_transaction == transaction);
  1017. /* And this case is illegal: we can't reuse another
  1018. * transaction's data buffer, ever. */
  1019. goto out_unlock_bh;
  1020. }
  1021. /* That test should have eliminated the following case: */
  1022. J_ASSERT_JH(jh, jh->b_frozen_data == 0);
  1023. JBUFFER_TRACE(jh, "file as BJ_Metadata");
  1024. spin_lock(&journal->j_list_lock);
  1025. __journal_file_buffer(jh, handle->h_transaction, BJ_Metadata);
  1026. spin_unlock(&journal->j_list_lock);
  1027. out_unlock_bh:
  1028. jbd_unlock_bh_state(bh);
  1029. out:
  1030. JBUFFER_TRACE(jh, "exit");
  1031. return 0;
  1032. }
  1033. /*
  1034. * journal_release_buffer: undo a get_write_access without any buffer
  1035. * updates, if the update decided in the end that it didn't need access.
  1036. *
  1037. */
  1038. void
  1039. journal_release_buffer(handle_t *handle, struct buffer_head *bh)
  1040. {
  1041. BUFFER_TRACE(bh, "entry");
  1042. }
  1043. /**
  1044. * void journal_forget() - bforget() for potentially-journaled buffers.
  1045. * @handle: transaction handle
  1046. * @bh: bh to 'forget'
  1047. *
  1048. * We can only do the bforget if there are no commits pending against the
  1049. * buffer. If the buffer is dirty in the current running transaction we
  1050. * can safely unlink it.
  1051. *
  1052. * bh may not be a journalled buffer at all - it may be a non-JBD
  1053. * buffer which came off the hashtable. Check for this.
  1054. *
  1055. * Decrements bh->b_count by one.
  1056. *
  1057. * Allow this call even if the handle has aborted --- it may be part of
  1058. * the caller's cleanup after an abort.
  1059. */
  1060. int journal_forget (handle_t *handle, struct buffer_head *bh)
  1061. {
  1062. transaction_t *transaction = handle->h_transaction;
  1063. journal_t *journal = transaction->t_journal;
  1064. struct journal_head *jh;
  1065. int drop_reserve = 0;
  1066. int err = 0;
  1067. BUFFER_TRACE(bh, "entry");
  1068. jbd_lock_bh_state(bh);
  1069. spin_lock(&journal->j_list_lock);
  1070. if (!buffer_jbd(bh))
  1071. goto not_jbd;
  1072. jh = bh2jh(bh);
  1073. /* Critical error: attempting to delete a bitmap buffer, maybe?
  1074. * Don't do any jbd operations, and return an error. */
  1075. if (!J_EXPECT_JH(jh, !jh->b_committed_data,
  1076. "inconsistent data on disk")) {
  1077. err = -EIO;
  1078. goto not_jbd;
  1079. }
  1080. /*
  1081. * The buffer's going from the transaction, we must drop
  1082. * all references -bzzz
  1083. */
  1084. jh->b_modified = 0;
  1085. if (jh->b_transaction == handle->h_transaction) {
  1086. J_ASSERT_JH(jh, !jh->b_frozen_data);
  1087. /* If we are forgetting a buffer which is already part
  1088. * of this transaction, then we can just drop it from
  1089. * the transaction immediately. */
  1090. clear_buffer_dirty(bh);
  1091. clear_buffer_jbddirty(bh);
  1092. JBUFFER_TRACE(jh, "belongs to current transaction: unfile");
  1093. drop_reserve = 1;
  1094. /*
  1095. * We are no longer going to journal this buffer.
  1096. * However, the commit of this transaction is still
  1097. * important to the buffer: the delete that we are now
  1098. * processing might obsolete an old log entry, so by
  1099. * committing, we can satisfy the buffer's checkpoint.
  1100. *
  1101. * So, if we have a checkpoint on the buffer, we should
  1102. * now refile the buffer on our BJ_Forget list so that
  1103. * we know to remove the checkpoint after we commit.
  1104. */
  1105. if (jh->b_cp_transaction) {
  1106. __journal_temp_unlink_buffer(jh);
  1107. __journal_file_buffer(jh, transaction, BJ_Forget);
  1108. } else {
  1109. __journal_unfile_buffer(jh);
  1110. journal_remove_journal_head(bh);
  1111. __brelse(bh);
  1112. if (!buffer_jbd(bh)) {
  1113. spin_unlock(&journal->j_list_lock);
  1114. jbd_unlock_bh_state(bh);
  1115. __bforget(bh);
  1116. goto drop;
  1117. }
  1118. }
  1119. } else if (jh->b_transaction) {
  1120. J_ASSERT_JH(jh, (jh->b_transaction ==
  1121. journal->j_committing_transaction));
  1122. /* However, if the buffer is still owned by a prior
  1123. * (committing) transaction, we can't drop it yet... */
  1124. JBUFFER_TRACE(jh, "belongs to older transaction");
  1125. /* ... but we CAN drop it from the new transaction if we
  1126. * have also modified it since the original commit. */
  1127. if (jh->b_next_transaction) {
  1128. J_ASSERT(jh->b_next_transaction == transaction);
  1129. jh->b_next_transaction = NULL;
  1130. drop_reserve = 1;
  1131. }
  1132. }
  1133. not_jbd:
  1134. spin_unlock(&journal->j_list_lock);
  1135. jbd_unlock_bh_state(bh);
  1136. __brelse(bh);
  1137. drop:
  1138. if (drop_reserve) {
  1139. /* no need to reserve log space for this block -bzzz */
  1140. handle->h_buffer_credits++;
  1141. }
  1142. return err;
  1143. }
  1144. /**
  1145. * int journal_stop() - complete a transaction
  1146. * @handle: tranaction to complete.
  1147. *
  1148. * All done for a particular handle.
  1149. *
  1150. * There is not much action needed here. We just return any remaining
  1151. * buffer credits to the transaction and remove the handle. The only
  1152. * complication is that we need to start a commit operation if the
  1153. * filesystem is marked for synchronous update.
  1154. *
  1155. * journal_stop itself will not usually return an error, but it may
  1156. * do so in unusual circumstances. In particular, expect it to
  1157. * return -EIO if a journal_abort has been executed since the
  1158. * transaction began.
  1159. */
  1160. int journal_stop(handle_t *handle)
  1161. {
  1162. transaction_t *transaction = handle->h_transaction;
  1163. journal_t *journal = transaction->t_journal;
  1164. int old_handle_count, err;
  1165. J_ASSERT(transaction->t_updates > 0);
  1166. J_ASSERT(journal_current_handle() == handle);
  1167. if (is_handle_aborted(handle))
  1168. err = -EIO;
  1169. else
  1170. err = 0;
  1171. if (--handle->h_ref > 0) {
  1172. jbd_debug(4, "h_ref %d -> %d\n", handle->h_ref + 1,
  1173. handle->h_ref);
  1174. return err;
  1175. }
  1176. jbd_debug(4, "Handle %p going down\n", handle);
  1177. /*
  1178. * Implement synchronous transaction batching. If the handle
  1179. * was synchronous, don't force a commit immediately. Let's
  1180. * yield and let another thread piggyback onto this transaction.
  1181. * Keep doing that while new threads continue to arrive.
  1182. * It doesn't cost much - we're about to run a commit and sleep
  1183. * on IO anyway. Speeds up many-threaded, many-dir operations
  1184. * by 30x or more...
  1185. */
  1186. if (handle->h_sync) {
  1187. do {
  1188. old_handle_count = transaction->t_handle_count;
  1189. schedule_timeout_uninterruptible(1);
  1190. } while (old_handle_count != transaction->t_handle_count);
  1191. }
  1192. current->journal_info = NULL;
  1193. spin_lock(&journal->j_state_lock);
  1194. spin_lock(&transaction->t_handle_lock);
  1195. transaction->t_outstanding_credits -= handle->h_buffer_credits;
  1196. transaction->t_updates--;
  1197. if (!transaction->t_updates) {
  1198. wake_up(&journal->j_wait_updates);
  1199. if (journal->j_barrier_count)
  1200. wake_up(&journal->j_wait_transaction_locked);
  1201. }
  1202. /*
  1203. * If the handle is marked SYNC, we need to set another commit
  1204. * going! We also want to force a commit if the current
  1205. * transaction is occupying too much of the log, or if the
  1206. * transaction is too old now.
  1207. */
  1208. if (handle->h_sync ||
  1209. transaction->t_outstanding_credits >
  1210. journal->j_max_transaction_buffers ||
  1211. time_after_eq(jiffies, transaction->t_expires)) {
  1212. /* Do this even for aborted journals: an abort still
  1213. * completes the commit thread, it just doesn't write
  1214. * anything to disk. */
  1215. tid_t tid = transaction->t_tid;
  1216. spin_unlock(&transaction->t_handle_lock);
  1217. jbd_debug(2, "transaction too old, requesting commit for "
  1218. "handle %p\n", handle);
  1219. /* This is non-blocking */
  1220. __log_start_commit(journal, transaction->t_tid);
  1221. spin_unlock(&journal->j_state_lock);
  1222. /*
  1223. * Special case: JFS_SYNC synchronous updates require us
  1224. * to wait for the commit to complete.
  1225. */
  1226. if (handle->h_sync && !(current->flags & PF_MEMALLOC))
  1227. err = log_wait_commit(journal, tid);
  1228. } else {
  1229. spin_unlock(&transaction->t_handle_lock);
  1230. spin_unlock(&journal->j_state_lock);
  1231. }
  1232. jbd_free_handle(handle);
  1233. return err;
  1234. }
  1235. /**int journal_force_commit() - force any uncommitted transactions
  1236. * @journal: journal to force
  1237. *
  1238. * For synchronous operations: force any uncommitted transactions
  1239. * to disk. May seem kludgy, but it reuses all the handle batching
  1240. * code in a very simple manner.
  1241. */
  1242. int journal_force_commit(journal_t *journal)
  1243. {
  1244. handle_t *handle;
  1245. int ret;
  1246. handle = journal_start(journal, 1);
  1247. if (IS_ERR(handle)) {
  1248. ret = PTR_ERR(handle);
  1249. } else {
  1250. handle->h_sync = 1;
  1251. ret = journal_stop(handle);
  1252. }
  1253. return ret;
  1254. }
  1255. /*
  1256. *
  1257. * List management code snippets: various functions for manipulating the
  1258. * transaction buffer lists.
  1259. *
  1260. */
  1261. /*
  1262. * Append a buffer to a transaction list, given the transaction's list head
  1263. * pointer.
  1264. *
  1265. * j_list_lock is held.
  1266. *
  1267. * jbd_lock_bh_state(jh2bh(jh)) is held.
  1268. */
  1269. static inline void
  1270. __blist_add_buffer(struct journal_head **list, struct journal_head *jh)
  1271. {
  1272. if (!*list) {
  1273. jh->b_tnext = jh->b_tprev = jh;
  1274. *list = jh;
  1275. } else {
  1276. /* Insert at the tail of the list to preserve order */
  1277. struct journal_head *first = *list, *last = first->b_tprev;
  1278. jh->b_tprev = last;
  1279. jh->b_tnext = first;
  1280. last->b_tnext = first->b_tprev = jh;
  1281. }
  1282. }
  1283. /*
  1284. * Remove a buffer from a transaction list, given the transaction's list
  1285. * head pointer.
  1286. *
  1287. * Called with j_list_lock held, and the journal may not be locked.
  1288. *
  1289. * jbd_lock_bh_state(jh2bh(jh)) is held.
  1290. */
  1291. static inline void
  1292. __blist_del_buffer(struct journal_head **list, struct journal_head *jh)
  1293. {
  1294. if (*list == jh) {
  1295. *list = jh->b_tnext;
  1296. if (*list == jh)
  1297. *list = NULL;
  1298. }
  1299. jh->b_tprev->b_tnext = jh->b_tnext;
  1300. jh->b_tnext->b_tprev = jh->b_tprev;
  1301. }
  1302. /*
  1303. * Remove a buffer from the appropriate transaction list.
  1304. *
  1305. * Note that this function can *change* the value of
  1306. * bh->b_transaction->t_sync_datalist, t_buffers, t_forget,
  1307. * t_iobuf_list, t_shadow_list, t_log_list or t_reserved_list. If the caller
  1308. * is holding onto a copy of one of thee pointers, it could go bad.
  1309. * Generally the caller needs to re-read the pointer from the transaction_t.
  1310. *
  1311. * Called under j_list_lock. The journal may not be locked.
  1312. */
  1313. void __journal_temp_unlink_buffer(struct journal_head *jh)
  1314. {
  1315. struct journal_head **list = NULL;
  1316. transaction_t *transaction;
  1317. struct buffer_head *bh = jh2bh(jh);
  1318. J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
  1319. transaction = jh->b_transaction;
  1320. if (transaction)
  1321. assert_spin_locked(&transaction->t_journal->j_list_lock);
  1322. J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
  1323. if (jh->b_jlist != BJ_None)
  1324. J_ASSERT_JH(jh, transaction != 0);
  1325. switch (jh->b_jlist) {
  1326. case BJ_None:
  1327. return;
  1328. case BJ_SyncData:
  1329. list = &transaction->t_sync_datalist;
  1330. break;
  1331. case BJ_Metadata:
  1332. transaction->t_nr_buffers--;
  1333. J_ASSERT_JH(jh, transaction->t_nr_buffers >= 0);
  1334. list = &transaction->t_buffers;
  1335. break;
  1336. case BJ_Forget:
  1337. list = &transaction->t_forget;
  1338. break;
  1339. case BJ_IO:
  1340. list = &transaction->t_iobuf_list;
  1341. break;
  1342. case BJ_Shadow:
  1343. list = &transaction->t_shadow_list;
  1344. break;
  1345. case BJ_LogCtl:
  1346. list = &transaction->t_log_list;
  1347. break;
  1348. case BJ_Reserved:
  1349. list = &transaction->t_reserved_list;
  1350. break;
  1351. case BJ_Locked:
  1352. list = &transaction->t_locked_list;
  1353. break;
  1354. }
  1355. __blist_del_buffer(list, jh);
  1356. jh->b_jlist = BJ_None;
  1357. if (test_clear_buffer_jbddirty(bh))
  1358. mark_buffer_dirty(bh); /* Expose it to the VM */
  1359. }
  1360. void __journal_unfile_buffer(struct journal_head *jh)
  1361. {
  1362. __journal_temp_unlink_buffer(jh);
  1363. jh->b_transaction = NULL;
  1364. }
  1365. void journal_unfile_buffer(journal_t *journal, struct journal_head *jh)
  1366. {
  1367. jbd_lock_bh_state(jh2bh(jh));
  1368. spin_lock(&journal->j_list_lock);
  1369. __journal_unfile_buffer(jh);
  1370. spin_unlock(&journal->j_list_lock);
  1371. jbd_unlock_bh_state(jh2bh(jh));
  1372. }
  1373. /*
  1374. * Called from journal_try_to_free_buffers().
  1375. *
  1376. * Called under jbd_lock_bh_state(bh)
  1377. */
  1378. static void
  1379. __journal_try_to_free_buffer(journal_t *journal, struct buffer_head *bh)
  1380. {
  1381. struct journal_head *jh;
  1382. jh = bh2jh(bh);
  1383. if (buffer_locked(bh) || buffer_dirty(bh))
  1384. goto out;
  1385. if (jh->b_next_transaction != 0)
  1386. goto out;
  1387. spin_lock(&journal->j_list_lock);
  1388. if (jh->b_transaction != 0 && jh->b_cp_transaction == 0) {
  1389. if (jh->b_jlist == BJ_SyncData || jh->b_jlist == BJ_Locked) {
  1390. /* A written-back ordered data buffer */
  1391. JBUFFER_TRACE(jh, "release data");
  1392. __journal_unfile_buffer(jh);
  1393. journal_remove_journal_head(bh);
  1394. __brelse(bh);
  1395. }
  1396. } else if (jh->b_cp_transaction != 0 && jh->b_transaction == 0) {
  1397. /* written-back checkpointed metadata buffer */
  1398. if (jh->b_jlist == BJ_None) {
  1399. JBUFFER_TRACE(jh, "remove from checkpoint list");
  1400. __journal_remove_checkpoint(jh);
  1401. journal_remove_journal_head(bh);
  1402. __brelse(bh);
  1403. }
  1404. }
  1405. spin_unlock(&journal->j_list_lock);
  1406. out:
  1407. return;
  1408. }
  1409. /**
  1410. * int journal_try_to_free_buffers() - try to free page buffers.
  1411. * @journal: journal for operation
  1412. * @page: to try and free
  1413. * @unused_gfp_mask: unused
  1414. *
  1415. *
  1416. * For all the buffers on this page,
  1417. * if they are fully written out ordered data, move them onto BUF_CLEAN
  1418. * so try_to_free_buffers() can reap them.
  1419. *
  1420. * This function returns non-zero if we wish try_to_free_buffers()
  1421. * to be called. We do this if the page is releasable by try_to_free_buffers().
  1422. * We also do it if the page has locked or dirty buffers and the caller wants
  1423. * us to perform sync or async writeout.
  1424. *
  1425. * This complicates JBD locking somewhat. We aren't protected by the
  1426. * BKL here. We wish to remove the buffer from its committing or
  1427. * running transaction's ->t_datalist via __journal_unfile_buffer.
  1428. *
  1429. * This may *change* the value of transaction_t->t_datalist, so anyone
  1430. * who looks at t_datalist needs to lock against this function.
  1431. *
  1432. * Even worse, someone may be doing a journal_dirty_data on this
  1433. * buffer. So we need to lock against that. journal_dirty_data()
  1434. * will come out of the lock with the buffer dirty, which makes it
  1435. * ineligible for release here.
  1436. *
  1437. * Who else is affected by this? hmm... Really the only contender
  1438. * is do_get_write_access() - it could be looking at the buffer while
  1439. * journal_try_to_free_buffer() is changing its state. But that
  1440. * cannot happen because we never reallocate freed data as metadata
  1441. * while the data is part of a transaction. Yes?
  1442. */
  1443. int journal_try_to_free_buffers(journal_t *journal,
  1444. struct page *page, gfp_t unused_gfp_mask)
  1445. {
  1446. struct buffer_head *head;
  1447. struct buffer_head *bh;
  1448. int ret = 0;
  1449. J_ASSERT(PageLocked(page));
  1450. head = page_buffers(page);
  1451. bh = head;
  1452. do {
  1453. struct journal_head *jh;
  1454. /*
  1455. * We take our own ref against the journal_head here to avoid
  1456. * having to add tons of locking around each instance of
  1457. * journal_remove_journal_head() and journal_put_journal_head().
  1458. */
  1459. jh = journal_grab_journal_head(bh);
  1460. if (!jh)
  1461. continue;
  1462. jbd_lock_bh_state(bh);
  1463. __journal_try_to_free_buffer(journal, bh);
  1464. journal_put_journal_head(jh);
  1465. jbd_unlock_bh_state(bh);
  1466. if (buffer_jbd(bh))
  1467. goto busy;
  1468. } while ((bh = bh->b_this_page) != head);
  1469. ret = try_to_free_buffers(page);
  1470. busy:
  1471. return ret;
  1472. }
  1473. /*
  1474. * This buffer is no longer needed. If it is on an older transaction's
  1475. * checkpoint list we need to record it on this transaction's forget list
  1476. * to pin this buffer (and hence its checkpointing transaction) down until
  1477. * this transaction commits. If the buffer isn't on a checkpoint list, we
  1478. * release it.
  1479. * Returns non-zero if JBD no longer has an interest in the buffer.
  1480. *
  1481. * Called under j_list_lock.
  1482. *
  1483. * Called under jbd_lock_bh_state(bh).
  1484. */
  1485. static int __dispose_buffer(struct journal_head *jh, transaction_t *transaction)
  1486. {
  1487. int may_free = 1;
  1488. struct buffer_head *bh = jh2bh(jh);
  1489. __journal_unfile_buffer(jh);
  1490. if (jh->b_cp_transaction) {
  1491. JBUFFER_TRACE(jh, "on running+cp transaction");
  1492. __journal_file_buffer(jh, transaction, BJ_Forget);
  1493. clear_buffer_jbddirty(bh);
  1494. may_free = 0;
  1495. } else {
  1496. JBUFFER_TRACE(jh, "on running transaction");
  1497. journal_remove_journal_head(bh);
  1498. __brelse(bh);
  1499. }
  1500. return may_free;
  1501. }
  1502. /*
  1503. * journal_invalidatepage
  1504. *
  1505. * This code is tricky. It has a number of cases to deal with.
  1506. *
  1507. * There are two invariants which this code relies on:
  1508. *
  1509. * i_size must be updated on disk before we start calling invalidatepage on the
  1510. * data.
  1511. *
  1512. * This is done in ext3 by defining an ext3_setattr method which
  1513. * updates i_size before truncate gets going. By maintaining this
  1514. * invariant, we can be sure that it is safe to throw away any buffers
  1515. * attached to the current transaction: once the transaction commits,
  1516. * we know that the data will not be needed.
  1517. *
  1518. * Note however that we can *not* throw away data belonging to the
  1519. * previous, committing transaction!
  1520. *
  1521. * Any disk blocks which *are* part of the previous, committing
  1522. * transaction (and which therefore cannot be discarded immediately) are
  1523. * not going to be reused in the new running transaction
  1524. *
  1525. * The bitmap committed_data images guarantee this: any block which is
  1526. * allocated in one transaction and removed in the next will be marked
  1527. * as in-use in the committed_data bitmap, so cannot be reused until
  1528. * the next transaction to delete the block commits. This means that
  1529. * leaving committing buffers dirty is quite safe: the disk blocks
  1530. * cannot be reallocated to a different file and so buffer aliasing is
  1531. * not possible.
  1532. *
  1533. *
  1534. * The above applies mainly to ordered data mode. In writeback mode we
  1535. * don't make guarantees about the order in which data hits disk --- in
  1536. * particular we don't guarantee that new dirty data is flushed before
  1537. * transaction commit --- so it is always safe just to discard data
  1538. * immediately in that mode. --sct
  1539. */
  1540. /*
  1541. * The journal_unmap_buffer helper function returns zero if the buffer
  1542. * concerned remains pinned as an anonymous buffer belonging to an older
  1543. * transaction.
  1544. *
  1545. * We're outside-transaction here. Either or both of j_running_transaction
  1546. * and j_committing_transaction may be NULL.
  1547. */
  1548. static int journal_unmap_buffer(journal_t *journal, struct buffer_head *bh)
  1549. {
  1550. transaction_t *transaction;
  1551. struct journal_head *jh;
  1552. int may_free = 1;
  1553. int ret;
  1554. BUFFER_TRACE(bh, "entry");
  1555. /*
  1556. * It is safe to proceed here without the j_list_lock because the
  1557. * buffers cannot be stolen by try_to_free_buffers as long as we are
  1558. * holding the page lock. --sct
  1559. */
  1560. if (!buffer_jbd(bh))
  1561. goto zap_buffer_unlocked;
  1562. spin_lock(&journal->j_state_lock);
  1563. jbd_lock_bh_state(bh);
  1564. spin_lock(&journal->j_list_lock);
  1565. jh = journal_grab_journal_head(bh);
  1566. if (!jh)
  1567. goto zap_buffer_no_jh;
  1568. transaction = jh->b_transaction;
  1569. if (transaction == NULL) {
  1570. /* First case: not on any transaction. If it
  1571. * has no checkpoint link, then we can zap it:
  1572. * it's a writeback-mode buffer so we don't care
  1573. * if it hits disk safely. */
  1574. if (!jh->b_cp_transaction) {
  1575. JBUFFER_TRACE(jh, "not on any transaction: zap");
  1576. goto zap_buffer;
  1577. }
  1578. if (!buffer_dirty(bh)) {
  1579. /* bdflush has written it. We can drop it now */
  1580. goto zap_buffer;
  1581. }
  1582. /* OK, it must be in the journal but still not
  1583. * written fully to disk: it's metadata or
  1584. * journaled data... */
  1585. if (journal->j_running_transaction) {
  1586. /* ... and once the current transaction has
  1587. * committed, the buffer won't be needed any
  1588. * longer. */
  1589. JBUFFER_TRACE(jh, "checkpointed: add to BJ_Forget");
  1590. ret = __dispose_buffer(jh,
  1591. journal->j_running_transaction);
  1592. journal_put_journal_head(jh);
  1593. spin_unlock(&journal->j_list_lock);
  1594. jbd_unlock_bh_state(bh);
  1595. spin_unlock(&journal->j_state_lock);
  1596. return ret;
  1597. } else {
  1598. /* There is no currently-running transaction. So the
  1599. * orphan record which we wrote for this file must have
  1600. * passed into commit. We must attach this buffer to
  1601. * the committing transaction, if it exists. */
  1602. if (journal->j_committing_transaction) {
  1603. JBUFFER_TRACE(jh, "give to committing trans");
  1604. ret = __dispose_buffer(jh,
  1605. journal->j_committing_transaction);
  1606. journal_put_journal_head(jh);
  1607. spin_unlock(&journal->j_list_lock);
  1608. jbd_unlock_bh_state(bh);
  1609. spin_unlock(&journal->j_state_lock);
  1610. return ret;
  1611. } else {
  1612. /* The orphan record's transaction has
  1613. * committed. We can cleanse this buffer */
  1614. clear_buffer_jbddirty(bh);
  1615. goto zap_buffer;
  1616. }
  1617. }
  1618. } else if (transaction == journal->j_committing_transaction) {
  1619. if (jh->b_jlist == BJ_Locked) {
  1620. /*
  1621. * The buffer is on the committing transaction's locked
  1622. * list. We have the buffer locked, so I/O has
  1623. * completed. So we can nail the buffer now.
  1624. */
  1625. may_free = __dispose_buffer(jh, transaction);
  1626. goto zap_buffer;
  1627. }
  1628. /*
  1629. * If it is committing, we simply cannot touch it. We
  1630. * can remove it's next_transaction pointer from the
  1631. * running transaction if that is set, but nothing
  1632. * else. */
  1633. JBUFFER_TRACE(jh, "on committing transaction");
  1634. set_buffer_freed(bh);
  1635. if (jh->b_next_transaction) {
  1636. J_ASSERT(jh->b_next_transaction ==
  1637. journal->j_running_transaction);
  1638. jh->b_next_transaction = NULL;
  1639. }
  1640. journal_put_journal_head(jh);
  1641. spin_unlock(&journal->j_list_lock);
  1642. jbd_unlock_bh_state(bh);
  1643. spin_unlock(&journal->j_state_lock);
  1644. return 0;
  1645. } else {
  1646. /* Good, the buffer belongs to the running transaction.
  1647. * We are writing our own transaction's data, not any
  1648. * previous one's, so it is safe to throw it away
  1649. * (remember that we expect the filesystem to have set
  1650. * i_size already for this truncate so recovery will not
  1651. * expose the disk blocks we are discarding here.) */
  1652. J_ASSERT_JH(jh, transaction == journal->j_running_transaction);
  1653. may_free = __dispose_buffer(jh, transaction);
  1654. }
  1655. zap_buffer:
  1656. journal_put_journal_head(jh);
  1657. zap_buffer_no_jh:
  1658. spin_unlock(&journal->j_list_lock);
  1659. jbd_unlock_bh_state(bh);
  1660. spin_unlock(&journal->j_state_lock);
  1661. zap_buffer_unlocked:
  1662. clear_buffer_dirty(bh);
  1663. J_ASSERT_BH(bh, !buffer_jbddirty(bh));
  1664. clear_buffer_mapped(bh);
  1665. clear_buffer_req(bh);
  1666. clear_buffer_new(bh);
  1667. bh->b_bdev = NULL;
  1668. return may_free;
  1669. }
  1670. /**
  1671. * int journal_invalidatepage()
  1672. * @journal: journal to use for flush...
  1673. * @page: page to flush
  1674. * @offset: length of page to invalidate.
  1675. *
  1676. * Reap page buffers containing data after offset in page.
  1677. *
  1678. * Return non-zero if the page's buffers were successfully reaped.
  1679. */
  1680. int journal_invalidatepage(journal_t *journal,
  1681. struct page *page,
  1682. unsigned long offset)
  1683. {
  1684. struct buffer_head *head, *bh, *next;
  1685. unsigned int curr_off = 0;
  1686. int may_free = 1;
  1687. if (!PageLocked(page))
  1688. BUG();
  1689. if (!page_has_buffers(page))
  1690. return 1;
  1691. /* We will potentially be playing with lists other than just the
  1692. * data lists (especially for journaled data mode), so be
  1693. * cautious in our locking. */
  1694. head = bh = page_buffers(page);
  1695. do {
  1696. unsigned int next_off = curr_off + bh->b_size;
  1697. next = bh->b_this_page;
  1698. if (offset <= curr_off) {
  1699. /* This block is wholly outside the truncation point */
  1700. lock_buffer(bh);
  1701. may_free &= journal_unmap_buffer(journal, bh);
  1702. unlock_buffer(bh);
  1703. }
  1704. curr_off = next_off;
  1705. bh = next;
  1706. } while (bh != head);
  1707. if (!offset) {
  1708. if (!may_free || !try_to_free_buffers(page))
  1709. return 0;
  1710. J_ASSERT(!page_has_buffers(page));
  1711. }
  1712. return 1;
  1713. }
  1714. /*
  1715. * File a buffer on the given transaction list.
  1716. */
  1717. void __journal_file_buffer(struct journal_head *jh,
  1718. transaction_t *transaction, int jlist)
  1719. {
  1720. struct journal_head **list = NULL;
  1721. int was_dirty = 0;
  1722. struct buffer_head *bh = jh2bh(jh);
  1723. J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
  1724. assert_spin_locked(&transaction->t_journal->j_list_lock);
  1725. J_ASSERT_JH(jh, jh->b_jlist < BJ_Types);
  1726. J_ASSERT_JH(jh, jh->b_transaction == transaction ||
  1727. jh->b_transaction == 0);
  1728. if (jh->b_transaction && jh->b_jlist == jlist)
  1729. return;
  1730. /* The following list of buffer states needs to be consistent
  1731. * with __jbd_unexpected_dirty_buffer()'s handling of dirty
  1732. * state. */
  1733. if (jlist == BJ_Metadata || jlist == BJ_Reserved ||
  1734. jlist == BJ_Shadow || jlist == BJ_Forget) {
  1735. if (test_clear_buffer_dirty(bh) ||
  1736. test_clear_buffer_jbddirty(bh))
  1737. was_dirty = 1;
  1738. }
  1739. if (jh->b_transaction)
  1740. __journal_temp_unlink_buffer(jh);
  1741. jh->b_transaction = transaction;
  1742. switch (jlist) {
  1743. case BJ_None:
  1744. J_ASSERT_JH(jh, !jh->b_committed_data);
  1745. J_ASSERT_JH(jh, !jh->b_frozen_data);
  1746. return;
  1747. case BJ_SyncData:
  1748. list = &transaction->t_sync_datalist;
  1749. break;
  1750. case BJ_Metadata:
  1751. transaction->t_nr_buffers++;
  1752. list = &transaction->t_buffers;
  1753. break;
  1754. case BJ_Forget:
  1755. list = &transaction->t_forget;
  1756. break;
  1757. case BJ_IO:
  1758. list = &transaction->t_iobuf_list;
  1759. break;
  1760. case BJ_Shadow:
  1761. list = &transaction->t_shadow_list;
  1762. break;
  1763. case BJ_LogCtl:
  1764. list = &transaction->t_log_list;
  1765. break;
  1766. case BJ_Reserved:
  1767. list = &transaction->t_reserved_list;
  1768. break;
  1769. case BJ_Locked:
  1770. list = &transaction->t_locked_list;
  1771. break;
  1772. }
  1773. __blist_add_buffer(list, jh);
  1774. jh->b_jlist = jlist;
  1775. if (was_dirty)
  1776. set_buffer_jbddirty(bh);
  1777. }
  1778. void journal_file_buffer(struct journal_head *jh,
  1779. transaction_t *transaction, int jlist)
  1780. {
  1781. jbd_lock_bh_state(jh2bh(jh));
  1782. spin_lock(&transaction->t_journal->j_list_lock);
  1783. __journal_file_buffer(jh, transaction, jlist);
  1784. spin_unlock(&transaction->t_journal->j_list_lock);
  1785. jbd_unlock_bh_state(jh2bh(jh));
  1786. }
  1787. /*
  1788. * Remove a buffer from its current buffer list in preparation for
  1789. * dropping it from its current transaction entirely. If the buffer has
  1790. * already started to be used by a subsequent transaction, refile the
  1791. * buffer on that transaction's metadata list.
  1792. *
  1793. * Called under journal->j_list_lock
  1794. *
  1795. * Called under jbd_lock_bh_state(jh2bh(jh))
  1796. */
  1797. void __journal_refile_buffer(struct journal_head *jh)
  1798. {
  1799. int was_dirty;
  1800. struct buffer_head *bh = jh2bh(jh);
  1801. J_ASSERT_JH(jh, jbd_is_locked_bh_state(bh));
  1802. if (jh->b_transaction)
  1803. assert_spin_locked(&jh->b_transaction->t_journal->j_list_lock);
  1804. /* If the buffer is now unused, just drop it. */
  1805. if (jh->b_next_transaction == NULL) {
  1806. __journal_unfile_buffer(jh);
  1807. return;
  1808. }
  1809. /*
  1810. * It has been modified by a later transaction: add it to the new
  1811. * transaction's metadata list.
  1812. */
  1813. was_dirty = test_clear_buffer_jbddirty(bh);
  1814. __journal_temp_unlink_buffer(jh);
  1815. jh->b_transaction = jh->b_next_transaction;
  1816. jh->b_next_transaction = NULL;
  1817. __journal_file_buffer(jh, jh->b_transaction, BJ_Metadata);
  1818. J_ASSERT_JH(jh, jh->b_transaction->t_state == T_RUNNING);
  1819. if (was_dirty)
  1820. set_buffer_jbddirty(bh);
  1821. }
  1822. /*
  1823. * For the unlocked version of this call, also make sure that any
  1824. * hanging journal_head is cleaned up if necessary.
  1825. *
  1826. * __journal_refile_buffer is usually called as part of a single locked
  1827. * operation on a buffer_head, in which the caller is probably going to
  1828. * be hooking the journal_head onto other lists. In that case it is up
  1829. * to the caller to remove the journal_head if necessary. For the
  1830. * unlocked journal_refile_buffer call, the caller isn't going to be
  1831. * doing anything else to the buffer so we need to do the cleanup
  1832. * ourselves to avoid a jh leak.
  1833. *
  1834. * *** The journal_head may be freed by this call! ***
  1835. */
  1836. void journal_refile_buffer(journal_t *journal, struct journal_head *jh)
  1837. {
  1838. struct buffer_head *bh = jh2bh(jh);
  1839. jbd_lock_bh_state(bh);
  1840. spin_lock(&journal->j_list_lock);
  1841. __journal_refile_buffer(jh);
  1842. jbd_unlock_bh_state(bh);
  1843. journal_remove_journal_head(bh);
  1844. spin_unlock(&journal->j_list_lock);
  1845. __brelse(bh);
  1846. }