journal.c 120 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224
  1. /*
  2. ** Write ahead logging implementation copyright Chris Mason 2000
  3. **
  4. ** The background commits make this code very interrelated, and
  5. ** overly complex. I need to rethink things a bit....The major players:
  6. **
  7. ** journal_begin -- call with the number of blocks you expect to log.
  8. ** If the current transaction is too
  9. ** old, it will block until the current transaction is
  10. ** finished, and then start a new one.
  11. ** Usually, your transaction will get joined in with
  12. ** previous ones for speed.
  13. **
  14. ** journal_join -- same as journal_begin, but won't block on the current
  15. ** transaction regardless of age. Don't ever call
  16. ** this. Ever. There are only two places it should be
  17. ** called from, and they are both inside this file.
  18. **
  19. ** journal_mark_dirty -- adds blocks into this transaction. clears any flags
  20. ** that might make them get sent to disk
  21. ** and then marks them BH_JDirty. Puts the buffer head
  22. ** into the current transaction hash.
  23. **
  24. ** journal_end -- if the current transaction is batchable, it does nothing
  25. ** otherwise, it could do an async/synchronous commit, or
  26. ** a full flush of all log and real blocks in the
  27. ** transaction.
  28. **
  29. ** flush_old_commits -- if the current transaction is too old, it is ended and
  30. ** commit blocks are sent to disk. Forces commit blocks
  31. ** to disk for all backgrounded commits that have been
  32. ** around too long.
  33. ** -- Note, if you call this as an immediate flush from
  34. ** from within kupdate, it will ignore the immediate flag
  35. */
  36. #include <linux/time.h>
  37. #include <linux/semaphore.h>
  38. #include <linux/vmalloc.h>
  39. #include "reiserfs.h"
  40. #include <linux/kernel.h>
  41. #include <linux/errno.h>
  42. #include <linux/fcntl.h>
  43. #include <linux/stat.h>
  44. #include <linux/string.h>
  45. #include <linux/buffer_head.h>
  46. #include <linux/workqueue.h>
  47. #include <linux/writeback.h>
  48. #include <linux/blkdev.h>
  49. #include <linux/backing-dev.h>
  50. #include <linux/uaccess.h>
  51. #include <linux/slab.h>
  52. /* gets a struct reiserfs_journal_list * from a list head */
  53. #define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
  54. j_list))
  55. #define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
  56. j_working_list))
  57. /* the number of mounted filesystems. This is used to decide when to
  58. ** start and kill the commit workqueue
  59. */
  60. static int reiserfs_mounted_fs_count;
  61. static struct workqueue_struct *commit_wq;
  62. #define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
  63. structs at 4k */
  64. #define BUFNR 64 /*read ahead */
  65. /* cnode stat bits. Move these into reiserfs_fs.h */
  66. #define BLOCK_FREED 2 /* this block was freed, and can't be written. */
  67. #define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
  68. #define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
  69. #define BLOCK_DIRTIED 5
  70. /* journal list state bits */
  71. #define LIST_TOUCHED 1
  72. #define LIST_DIRTY 2
  73. #define LIST_COMMIT_PENDING 4 /* someone will commit this list */
  74. /* flags for do_journal_end */
  75. #define FLUSH_ALL 1 /* flush commit and real blocks */
  76. #define COMMIT_NOW 2 /* end and commit this transaction */
  77. #define WAIT 4 /* wait for the log blocks to hit the disk */
  78. static int do_journal_end(struct reiserfs_transaction_handle *,
  79. struct super_block *, unsigned long nblocks,
  80. int flags);
  81. static int flush_journal_list(struct super_block *s,
  82. struct reiserfs_journal_list *jl, int flushall);
  83. static int flush_commit_list(struct super_block *s,
  84. struct reiserfs_journal_list *jl, int flushall);
  85. static int can_dirty(struct reiserfs_journal_cnode *cn);
  86. static int journal_join(struct reiserfs_transaction_handle *th,
  87. struct super_block *sb, unsigned long nblocks);
  88. static void release_journal_dev(struct super_block *super,
  89. struct reiserfs_journal *journal);
  90. static int dirty_one_transaction(struct super_block *s,
  91. struct reiserfs_journal_list *jl);
  92. static void flush_async_commits(struct work_struct *work);
  93. static void queue_log_writer(struct super_block *s);
  94. /* values for join in do_journal_begin_r */
  95. enum {
  96. JBEGIN_REG = 0, /* regular journal begin */
  97. JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
  98. JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
  99. };
  100. static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
  101. struct super_block *sb,
  102. unsigned long nblocks, int join);
  103. static void init_journal_hash(struct super_block *sb)
  104. {
  105. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  106. memset(journal->j_hash_table, 0,
  107. JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
  108. }
  109. /*
  110. ** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
  111. ** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
  112. ** more details.
  113. */
  114. static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
  115. {
  116. if (bh) {
  117. clear_buffer_dirty(bh);
  118. clear_buffer_journal_test(bh);
  119. }
  120. return 0;
  121. }
  122. static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
  123. *sb)
  124. {
  125. struct reiserfs_bitmap_node *bn;
  126. static int id;
  127. bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
  128. if (!bn) {
  129. return NULL;
  130. }
  131. bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
  132. if (!bn->data) {
  133. kfree(bn);
  134. return NULL;
  135. }
  136. bn->id = id++;
  137. INIT_LIST_HEAD(&bn->list);
  138. return bn;
  139. }
  140. static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
  141. {
  142. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  143. struct reiserfs_bitmap_node *bn = NULL;
  144. struct list_head *entry = journal->j_bitmap_nodes.next;
  145. journal->j_used_bitmap_nodes++;
  146. repeat:
  147. if (entry != &journal->j_bitmap_nodes) {
  148. bn = list_entry(entry, struct reiserfs_bitmap_node, list);
  149. list_del(entry);
  150. memset(bn->data, 0, sb->s_blocksize);
  151. journal->j_free_bitmap_nodes--;
  152. return bn;
  153. }
  154. bn = allocate_bitmap_node(sb);
  155. if (!bn) {
  156. yield();
  157. goto repeat;
  158. }
  159. return bn;
  160. }
  161. static inline void free_bitmap_node(struct super_block *sb,
  162. struct reiserfs_bitmap_node *bn)
  163. {
  164. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  165. journal->j_used_bitmap_nodes--;
  166. if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
  167. kfree(bn->data);
  168. kfree(bn);
  169. } else {
  170. list_add(&bn->list, &journal->j_bitmap_nodes);
  171. journal->j_free_bitmap_nodes++;
  172. }
  173. }
  174. static void allocate_bitmap_nodes(struct super_block *sb)
  175. {
  176. int i;
  177. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  178. struct reiserfs_bitmap_node *bn = NULL;
  179. for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
  180. bn = allocate_bitmap_node(sb);
  181. if (bn) {
  182. list_add(&bn->list, &journal->j_bitmap_nodes);
  183. journal->j_free_bitmap_nodes++;
  184. } else {
  185. break; /* this is ok, we'll try again when more are needed */
  186. }
  187. }
  188. }
  189. static int set_bit_in_list_bitmap(struct super_block *sb,
  190. b_blocknr_t block,
  191. struct reiserfs_list_bitmap *jb)
  192. {
  193. unsigned int bmap_nr = block / (sb->s_blocksize << 3);
  194. unsigned int bit_nr = block % (sb->s_blocksize << 3);
  195. if (!jb->bitmaps[bmap_nr]) {
  196. jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
  197. }
  198. set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
  199. return 0;
  200. }
  201. static void cleanup_bitmap_list(struct super_block *sb,
  202. struct reiserfs_list_bitmap *jb)
  203. {
  204. int i;
  205. if (jb->bitmaps == NULL)
  206. return;
  207. for (i = 0; i < reiserfs_bmap_count(sb); i++) {
  208. if (jb->bitmaps[i]) {
  209. free_bitmap_node(sb, jb->bitmaps[i]);
  210. jb->bitmaps[i] = NULL;
  211. }
  212. }
  213. }
  214. /*
  215. ** only call this on FS unmount.
  216. */
  217. static int free_list_bitmaps(struct super_block *sb,
  218. struct reiserfs_list_bitmap *jb_array)
  219. {
  220. int i;
  221. struct reiserfs_list_bitmap *jb;
  222. for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
  223. jb = jb_array + i;
  224. jb->journal_list = NULL;
  225. cleanup_bitmap_list(sb, jb);
  226. vfree(jb->bitmaps);
  227. jb->bitmaps = NULL;
  228. }
  229. return 0;
  230. }
  231. static int free_bitmap_nodes(struct super_block *sb)
  232. {
  233. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  234. struct list_head *next = journal->j_bitmap_nodes.next;
  235. struct reiserfs_bitmap_node *bn;
  236. while (next != &journal->j_bitmap_nodes) {
  237. bn = list_entry(next, struct reiserfs_bitmap_node, list);
  238. list_del(next);
  239. kfree(bn->data);
  240. kfree(bn);
  241. next = journal->j_bitmap_nodes.next;
  242. journal->j_free_bitmap_nodes--;
  243. }
  244. return 0;
  245. }
  246. /*
  247. ** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
  248. ** jb_array is the array to be filled in.
  249. */
  250. int reiserfs_allocate_list_bitmaps(struct super_block *sb,
  251. struct reiserfs_list_bitmap *jb_array,
  252. unsigned int bmap_nr)
  253. {
  254. int i;
  255. int failed = 0;
  256. struct reiserfs_list_bitmap *jb;
  257. int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
  258. for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
  259. jb = jb_array + i;
  260. jb->journal_list = NULL;
  261. jb->bitmaps = vzalloc(mem);
  262. if (!jb->bitmaps) {
  263. reiserfs_warning(sb, "clm-2000", "unable to "
  264. "allocate bitmaps for journal lists");
  265. failed = 1;
  266. break;
  267. }
  268. }
  269. if (failed) {
  270. free_list_bitmaps(sb, jb_array);
  271. return -1;
  272. }
  273. return 0;
  274. }
  275. /*
  276. ** find an available list bitmap. If you can't find one, flush a commit list
  277. ** and try again
  278. */
  279. static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
  280. struct reiserfs_journal_list
  281. *jl)
  282. {
  283. int i, j;
  284. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  285. struct reiserfs_list_bitmap *jb = NULL;
  286. for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
  287. i = journal->j_list_bitmap_index;
  288. journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
  289. jb = journal->j_list_bitmap + i;
  290. if (journal->j_list_bitmap[i].journal_list) {
  291. flush_commit_list(sb,
  292. journal->j_list_bitmap[i].
  293. journal_list, 1);
  294. if (!journal->j_list_bitmap[i].journal_list) {
  295. break;
  296. }
  297. } else {
  298. break;
  299. }
  300. }
  301. if (jb->journal_list) { /* double check to make sure if flushed correctly */
  302. return NULL;
  303. }
  304. jb->journal_list = jl;
  305. return jb;
  306. }
  307. /*
  308. ** allocates a new chunk of X nodes, and links them all together as a list.
  309. ** Uses the cnode->next and cnode->prev pointers
  310. ** returns NULL on failure
  311. */
  312. static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
  313. {
  314. struct reiserfs_journal_cnode *head;
  315. int i;
  316. if (num_cnodes <= 0) {
  317. return NULL;
  318. }
  319. head = vzalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
  320. if (!head) {
  321. return NULL;
  322. }
  323. head[0].prev = NULL;
  324. head[0].next = head + 1;
  325. for (i = 1; i < num_cnodes; i++) {
  326. head[i].prev = head + (i - 1);
  327. head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
  328. }
  329. head[num_cnodes - 1].next = NULL;
  330. return head;
  331. }
  332. /*
  333. ** pulls a cnode off the free list, or returns NULL on failure
  334. */
  335. static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
  336. {
  337. struct reiserfs_journal_cnode *cn;
  338. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  339. reiserfs_check_lock_depth(sb, "get_cnode");
  340. if (journal->j_cnode_free <= 0) {
  341. return NULL;
  342. }
  343. journal->j_cnode_used++;
  344. journal->j_cnode_free--;
  345. cn = journal->j_cnode_free_list;
  346. if (!cn) {
  347. return cn;
  348. }
  349. if (cn->next) {
  350. cn->next->prev = NULL;
  351. }
  352. journal->j_cnode_free_list = cn->next;
  353. memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
  354. return cn;
  355. }
  356. /*
  357. ** returns a cnode to the free list
  358. */
  359. static void free_cnode(struct super_block *sb,
  360. struct reiserfs_journal_cnode *cn)
  361. {
  362. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  363. reiserfs_check_lock_depth(sb, "free_cnode");
  364. journal->j_cnode_used--;
  365. journal->j_cnode_free++;
  366. /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
  367. cn->next = journal->j_cnode_free_list;
  368. if (journal->j_cnode_free_list) {
  369. journal->j_cnode_free_list->prev = cn;
  370. }
  371. cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
  372. journal->j_cnode_free_list = cn;
  373. }
  374. static void clear_prepared_bits(struct buffer_head *bh)
  375. {
  376. clear_buffer_journal_prepared(bh);
  377. clear_buffer_journal_restore_dirty(bh);
  378. }
  379. /* return a cnode with same dev, block number and size in table, or null if not found */
  380. static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
  381. super_block
  382. *sb,
  383. struct
  384. reiserfs_journal_cnode
  385. **table,
  386. long bl)
  387. {
  388. struct reiserfs_journal_cnode *cn;
  389. cn = journal_hash(table, sb, bl);
  390. while (cn) {
  391. if (cn->blocknr == bl && cn->sb == sb)
  392. return cn;
  393. cn = cn->hnext;
  394. }
  395. return (struct reiserfs_journal_cnode *)0;
  396. }
  397. /*
  398. ** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
  399. ** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
  400. ** being overwritten by a replay after crashing.
  401. **
  402. ** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
  403. ** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
  404. ** sure you never write the block without logging it.
  405. **
  406. ** next_zero_bit is a suggestion about the next block to try for find_forward.
  407. ** when bl is rejected because it is set in a journal list bitmap, we search
  408. ** for the next zero bit in the bitmap that rejected bl. Then, we return that
  409. ** through next_zero_bit for find_forward to try.
  410. **
  411. ** Just because we return something in next_zero_bit does not mean we won't
  412. ** reject it on the next call to reiserfs_in_journal
  413. **
  414. */
  415. int reiserfs_in_journal(struct super_block *sb,
  416. unsigned int bmap_nr, int bit_nr, int search_all,
  417. b_blocknr_t * next_zero_bit)
  418. {
  419. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  420. struct reiserfs_journal_cnode *cn;
  421. struct reiserfs_list_bitmap *jb;
  422. int i;
  423. unsigned long bl;
  424. *next_zero_bit = 0; /* always start this at zero. */
  425. PROC_INFO_INC(sb, journal.in_journal);
  426. /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
  427. ** if we crash before the transaction that freed it commits, this transaction won't
  428. ** have committed either, and the block will never be written
  429. */
  430. if (search_all) {
  431. for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
  432. PROC_INFO_INC(sb, journal.in_journal_bitmap);
  433. jb = journal->j_list_bitmap + i;
  434. if (jb->journal_list && jb->bitmaps[bmap_nr] &&
  435. test_bit(bit_nr,
  436. (unsigned long *)jb->bitmaps[bmap_nr]->
  437. data)) {
  438. *next_zero_bit =
  439. find_next_zero_bit((unsigned long *)
  440. (jb->bitmaps[bmap_nr]->
  441. data),
  442. sb->s_blocksize << 3,
  443. bit_nr + 1);
  444. return 1;
  445. }
  446. }
  447. }
  448. bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
  449. /* is it in any old transactions? */
  450. if (search_all
  451. && (cn =
  452. get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
  453. return 1;
  454. }
  455. /* is it in the current transaction. This should never happen */
  456. if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
  457. BUG();
  458. return 1;
  459. }
  460. PROC_INFO_INC(sb, journal.in_journal_reusable);
  461. /* safe for reuse */
  462. return 0;
  463. }
  464. /* insert cn into table
  465. */
  466. static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
  467. struct reiserfs_journal_cnode *cn)
  468. {
  469. struct reiserfs_journal_cnode *cn_orig;
  470. cn_orig = journal_hash(table, cn->sb, cn->blocknr);
  471. cn->hnext = cn_orig;
  472. cn->hprev = NULL;
  473. if (cn_orig) {
  474. cn_orig->hprev = cn;
  475. }
  476. journal_hash(table, cn->sb, cn->blocknr) = cn;
  477. }
  478. /* lock the current transaction */
  479. static inline void lock_journal(struct super_block *sb)
  480. {
  481. PROC_INFO_INC(sb, journal.lock_journal);
  482. reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
  483. }
  484. /* unlock the current transaction */
  485. static inline void unlock_journal(struct super_block *sb)
  486. {
  487. mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
  488. }
  489. static inline void get_journal_list(struct reiserfs_journal_list *jl)
  490. {
  491. jl->j_refcount++;
  492. }
  493. static inline void put_journal_list(struct super_block *s,
  494. struct reiserfs_journal_list *jl)
  495. {
  496. if (jl->j_refcount < 1) {
  497. reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
  498. jl->j_trans_id, jl->j_refcount);
  499. }
  500. if (--jl->j_refcount == 0)
  501. kfree(jl);
  502. }
  503. /*
  504. ** this used to be much more involved, and I'm keeping it just in case things get ugly again.
  505. ** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
  506. ** transaction.
  507. */
  508. static void cleanup_freed_for_journal_list(struct super_block *sb,
  509. struct reiserfs_journal_list *jl)
  510. {
  511. struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
  512. if (jb) {
  513. cleanup_bitmap_list(sb, jb);
  514. }
  515. jl->j_list_bitmap->journal_list = NULL;
  516. jl->j_list_bitmap = NULL;
  517. }
  518. static int journal_list_still_alive(struct super_block *s,
  519. unsigned int trans_id)
  520. {
  521. struct reiserfs_journal *journal = SB_JOURNAL(s);
  522. struct list_head *entry = &journal->j_journal_list;
  523. struct reiserfs_journal_list *jl;
  524. if (!list_empty(entry)) {
  525. jl = JOURNAL_LIST_ENTRY(entry->next);
  526. if (jl->j_trans_id <= trans_id) {
  527. return 1;
  528. }
  529. }
  530. return 0;
  531. }
  532. /*
  533. * If page->mapping was null, we failed to truncate this page for
  534. * some reason. Most likely because it was truncated after being
  535. * logged via data=journal.
  536. *
  537. * This does a check to see if the buffer belongs to one of these
  538. * lost pages before doing the final put_bh. If page->mapping was
  539. * null, it tries to free buffers on the page, which should make the
  540. * final page_cache_release drop the page from the lru.
  541. */
  542. static void release_buffer_page(struct buffer_head *bh)
  543. {
  544. struct page *page = bh->b_page;
  545. if (!page->mapping && trylock_page(page)) {
  546. page_cache_get(page);
  547. put_bh(bh);
  548. if (!page->mapping)
  549. try_to_free_buffers(page);
  550. unlock_page(page);
  551. page_cache_release(page);
  552. } else {
  553. put_bh(bh);
  554. }
  555. }
  556. static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
  557. {
  558. char b[BDEVNAME_SIZE];
  559. if (buffer_journaled(bh)) {
  560. reiserfs_warning(NULL, "clm-2084",
  561. "pinned buffer %lu:%s sent to disk",
  562. bh->b_blocknr, bdevname(bh->b_bdev, b));
  563. }
  564. if (uptodate)
  565. set_buffer_uptodate(bh);
  566. else
  567. clear_buffer_uptodate(bh);
  568. unlock_buffer(bh);
  569. release_buffer_page(bh);
  570. }
  571. static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
  572. {
  573. if (uptodate)
  574. set_buffer_uptodate(bh);
  575. else
  576. clear_buffer_uptodate(bh);
  577. unlock_buffer(bh);
  578. put_bh(bh);
  579. }
  580. static void submit_logged_buffer(struct buffer_head *bh)
  581. {
  582. get_bh(bh);
  583. bh->b_end_io = reiserfs_end_buffer_io_sync;
  584. clear_buffer_journal_new(bh);
  585. clear_buffer_dirty(bh);
  586. if (!test_clear_buffer_journal_test(bh))
  587. BUG();
  588. if (!buffer_uptodate(bh))
  589. BUG();
  590. submit_bh(WRITE, bh);
  591. }
  592. static void submit_ordered_buffer(struct buffer_head *bh)
  593. {
  594. get_bh(bh);
  595. bh->b_end_io = reiserfs_end_ordered_io;
  596. clear_buffer_dirty(bh);
  597. if (!buffer_uptodate(bh))
  598. BUG();
  599. submit_bh(WRITE, bh);
  600. }
  601. #define CHUNK_SIZE 32
  602. struct buffer_chunk {
  603. struct buffer_head *bh[CHUNK_SIZE];
  604. int nr;
  605. };
  606. static void write_chunk(struct buffer_chunk *chunk)
  607. {
  608. int i;
  609. for (i = 0; i < chunk->nr; i++) {
  610. submit_logged_buffer(chunk->bh[i]);
  611. }
  612. chunk->nr = 0;
  613. }
  614. static void write_ordered_chunk(struct buffer_chunk *chunk)
  615. {
  616. int i;
  617. for (i = 0; i < chunk->nr; i++) {
  618. submit_ordered_buffer(chunk->bh[i]);
  619. }
  620. chunk->nr = 0;
  621. }
  622. static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
  623. spinlock_t * lock, void (fn) (struct buffer_chunk *))
  624. {
  625. int ret = 0;
  626. BUG_ON(chunk->nr >= CHUNK_SIZE);
  627. chunk->bh[chunk->nr++] = bh;
  628. if (chunk->nr >= CHUNK_SIZE) {
  629. ret = 1;
  630. if (lock)
  631. spin_unlock(lock);
  632. fn(chunk);
  633. if (lock)
  634. spin_lock(lock);
  635. }
  636. return ret;
  637. }
  638. static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
  639. static struct reiserfs_jh *alloc_jh(void)
  640. {
  641. struct reiserfs_jh *jh;
  642. while (1) {
  643. jh = kmalloc(sizeof(*jh), GFP_NOFS);
  644. if (jh) {
  645. atomic_inc(&nr_reiserfs_jh);
  646. return jh;
  647. }
  648. yield();
  649. }
  650. }
  651. /*
  652. * we want to free the jh when the buffer has been written
  653. * and waited on
  654. */
  655. void reiserfs_free_jh(struct buffer_head *bh)
  656. {
  657. struct reiserfs_jh *jh;
  658. jh = bh->b_private;
  659. if (jh) {
  660. bh->b_private = NULL;
  661. jh->bh = NULL;
  662. list_del_init(&jh->list);
  663. kfree(jh);
  664. if (atomic_read(&nr_reiserfs_jh) <= 0)
  665. BUG();
  666. atomic_dec(&nr_reiserfs_jh);
  667. put_bh(bh);
  668. }
  669. }
  670. static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
  671. int tail)
  672. {
  673. struct reiserfs_jh *jh;
  674. if (bh->b_private) {
  675. spin_lock(&j->j_dirty_buffers_lock);
  676. if (!bh->b_private) {
  677. spin_unlock(&j->j_dirty_buffers_lock);
  678. goto no_jh;
  679. }
  680. jh = bh->b_private;
  681. list_del_init(&jh->list);
  682. } else {
  683. no_jh:
  684. get_bh(bh);
  685. jh = alloc_jh();
  686. spin_lock(&j->j_dirty_buffers_lock);
  687. /* buffer must be locked for __add_jh, should be able to have
  688. * two adds at the same time
  689. */
  690. BUG_ON(bh->b_private);
  691. jh->bh = bh;
  692. bh->b_private = jh;
  693. }
  694. jh->jl = j->j_current_jl;
  695. if (tail)
  696. list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
  697. else {
  698. list_add_tail(&jh->list, &jh->jl->j_bh_list);
  699. }
  700. spin_unlock(&j->j_dirty_buffers_lock);
  701. return 0;
  702. }
  703. int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
  704. {
  705. return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
  706. }
  707. int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
  708. {
  709. return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
  710. }
  711. #define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
  712. static int write_ordered_buffers(spinlock_t * lock,
  713. struct reiserfs_journal *j,
  714. struct reiserfs_journal_list *jl,
  715. struct list_head *list)
  716. {
  717. struct buffer_head *bh;
  718. struct reiserfs_jh *jh;
  719. int ret = j->j_errno;
  720. struct buffer_chunk chunk;
  721. struct list_head tmp;
  722. INIT_LIST_HEAD(&tmp);
  723. chunk.nr = 0;
  724. spin_lock(lock);
  725. while (!list_empty(list)) {
  726. jh = JH_ENTRY(list->next);
  727. bh = jh->bh;
  728. get_bh(bh);
  729. if (!trylock_buffer(bh)) {
  730. if (!buffer_dirty(bh)) {
  731. list_move(&jh->list, &tmp);
  732. goto loop_next;
  733. }
  734. spin_unlock(lock);
  735. if (chunk.nr)
  736. write_ordered_chunk(&chunk);
  737. wait_on_buffer(bh);
  738. cond_resched();
  739. spin_lock(lock);
  740. goto loop_next;
  741. }
  742. /* in theory, dirty non-uptodate buffers should never get here,
  743. * but the upper layer io error paths still have a few quirks.
  744. * Handle them here as gracefully as we can
  745. */
  746. if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
  747. clear_buffer_dirty(bh);
  748. ret = -EIO;
  749. }
  750. if (buffer_dirty(bh)) {
  751. list_move(&jh->list, &tmp);
  752. add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
  753. } else {
  754. reiserfs_free_jh(bh);
  755. unlock_buffer(bh);
  756. }
  757. loop_next:
  758. put_bh(bh);
  759. cond_resched_lock(lock);
  760. }
  761. if (chunk.nr) {
  762. spin_unlock(lock);
  763. write_ordered_chunk(&chunk);
  764. spin_lock(lock);
  765. }
  766. while (!list_empty(&tmp)) {
  767. jh = JH_ENTRY(tmp.prev);
  768. bh = jh->bh;
  769. get_bh(bh);
  770. reiserfs_free_jh(bh);
  771. if (buffer_locked(bh)) {
  772. spin_unlock(lock);
  773. wait_on_buffer(bh);
  774. spin_lock(lock);
  775. }
  776. if (!buffer_uptodate(bh)) {
  777. ret = -EIO;
  778. }
  779. /* ugly interaction with invalidatepage here.
  780. * reiserfs_invalidate_page will pin any buffer that has a valid
  781. * journal head from an older transaction. If someone else sets
  782. * our buffer dirty after we write it in the first loop, and
  783. * then someone truncates the page away, nobody will ever write
  784. * the buffer. We're safe if we write the page one last time
  785. * after freeing the journal header.
  786. */
  787. if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
  788. spin_unlock(lock);
  789. ll_rw_block(WRITE, 1, &bh);
  790. spin_lock(lock);
  791. }
  792. put_bh(bh);
  793. cond_resched_lock(lock);
  794. }
  795. spin_unlock(lock);
  796. return ret;
  797. }
  798. static int flush_older_commits(struct super_block *s,
  799. struct reiserfs_journal_list *jl)
  800. {
  801. struct reiserfs_journal *journal = SB_JOURNAL(s);
  802. struct reiserfs_journal_list *other_jl;
  803. struct reiserfs_journal_list *first_jl;
  804. struct list_head *entry;
  805. unsigned int trans_id = jl->j_trans_id;
  806. unsigned int other_trans_id;
  807. unsigned int first_trans_id;
  808. find_first:
  809. /*
  810. * first we walk backwards to find the oldest uncommitted transation
  811. */
  812. first_jl = jl;
  813. entry = jl->j_list.prev;
  814. while (1) {
  815. other_jl = JOURNAL_LIST_ENTRY(entry);
  816. if (entry == &journal->j_journal_list ||
  817. atomic_read(&other_jl->j_older_commits_done))
  818. break;
  819. first_jl = other_jl;
  820. entry = other_jl->j_list.prev;
  821. }
  822. /* if we didn't find any older uncommitted transactions, return now */
  823. if (first_jl == jl) {
  824. return 0;
  825. }
  826. first_trans_id = first_jl->j_trans_id;
  827. entry = &first_jl->j_list;
  828. while (1) {
  829. other_jl = JOURNAL_LIST_ENTRY(entry);
  830. other_trans_id = other_jl->j_trans_id;
  831. if (other_trans_id < trans_id) {
  832. if (atomic_read(&other_jl->j_commit_left) != 0) {
  833. flush_commit_list(s, other_jl, 0);
  834. /* list we were called with is gone, return */
  835. if (!journal_list_still_alive(s, trans_id))
  836. return 1;
  837. /* the one we just flushed is gone, this means all
  838. * older lists are also gone, so first_jl is no longer
  839. * valid either. Go back to the beginning.
  840. */
  841. if (!journal_list_still_alive
  842. (s, other_trans_id)) {
  843. goto find_first;
  844. }
  845. }
  846. entry = entry->next;
  847. if (entry == &journal->j_journal_list)
  848. return 0;
  849. } else {
  850. return 0;
  851. }
  852. }
  853. return 0;
  854. }
  855. static int reiserfs_async_progress_wait(struct super_block *s)
  856. {
  857. struct reiserfs_journal *j = SB_JOURNAL(s);
  858. if (atomic_read(&j->j_async_throttle)) {
  859. int depth;
  860. depth = reiserfs_write_unlock_nested(s);
  861. congestion_wait(BLK_RW_ASYNC, HZ / 10);
  862. reiserfs_write_lock_nested(s, depth);
  863. }
  864. return 0;
  865. }
  866. /*
  867. ** if this journal list still has commit blocks unflushed, send them to disk.
  868. **
  869. ** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
  870. ** Before the commit block can by written, every other log block must be safely on disk
  871. **
  872. */
  873. static int flush_commit_list(struct super_block *s,
  874. struct reiserfs_journal_list *jl, int flushall)
  875. {
  876. int i;
  877. b_blocknr_t bn;
  878. struct buffer_head *tbh = NULL;
  879. unsigned int trans_id = jl->j_trans_id;
  880. struct reiserfs_journal *journal = SB_JOURNAL(s);
  881. int retval = 0;
  882. int write_len;
  883. int depth;
  884. reiserfs_check_lock_depth(s, "flush_commit_list");
  885. if (atomic_read(&jl->j_older_commits_done)) {
  886. return 0;
  887. }
  888. /* before we can put our commit blocks on disk, we have to make sure everyone older than
  889. ** us is on disk too
  890. */
  891. BUG_ON(jl->j_len <= 0);
  892. BUG_ON(trans_id == journal->j_trans_id);
  893. get_journal_list(jl);
  894. if (flushall) {
  895. if (flush_older_commits(s, jl) == 1) {
  896. /* list disappeared during flush_older_commits. return */
  897. goto put_jl;
  898. }
  899. }
  900. /* make sure nobody is trying to flush this one at the same time */
  901. reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
  902. if (!journal_list_still_alive(s, trans_id)) {
  903. mutex_unlock(&jl->j_commit_mutex);
  904. goto put_jl;
  905. }
  906. BUG_ON(jl->j_trans_id == 0);
  907. /* this commit is done, exit */
  908. if (atomic_read(&(jl->j_commit_left)) <= 0) {
  909. if (flushall) {
  910. atomic_set(&(jl->j_older_commits_done), 1);
  911. }
  912. mutex_unlock(&jl->j_commit_mutex);
  913. goto put_jl;
  914. }
  915. if (!list_empty(&jl->j_bh_list)) {
  916. int ret;
  917. /*
  918. * We might sleep in numerous places inside
  919. * write_ordered_buffers. Relax the write lock.
  920. */
  921. depth = reiserfs_write_unlock_nested(s);
  922. ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
  923. journal, jl, &jl->j_bh_list);
  924. if (ret < 0 && retval == 0)
  925. retval = ret;
  926. reiserfs_write_lock_nested(s, depth);
  927. }
  928. BUG_ON(!list_empty(&jl->j_bh_list));
  929. /*
  930. * for the description block and all the log blocks, submit any buffers
  931. * that haven't already reached the disk. Try to write at least 256
  932. * log blocks. later on, we will only wait on blocks that correspond
  933. * to this transaction, but while we're unplugging we might as well
  934. * get a chunk of data on there.
  935. */
  936. atomic_inc(&journal->j_async_throttle);
  937. write_len = jl->j_len + 1;
  938. if (write_len < 256)
  939. write_len = 256;
  940. for (i = 0 ; i < write_len ; i++) {
  941. bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
  942. SB_ONDISK_JOURNAL_SIZE(s);
  943. tbh = journal_find_get_block(s, bn);
  944. if (tbh) {
  945. if (buffer_dirty(tbh)) {
  946. depth = reiserfs_write_unlock_nested(s);
  947. ll_rw_block(WRITE, 1, &tbh);
  948. reiserfs_write_lock_nested(s, depth);
  949. }
  950. put_bh(tbh) ;
  951. }
  952. }
  953. atomic_dec(&journal->j_async_throttle);
  954. for (i = 0; i < (jl->j_len + 1); i++) {
  955. bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
  956. (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
  957. tbh = journal_find_get_block(s, bn);
  958. depth = reiserfs_write_unlock_nested(s);
  959. __wait_on_buffer(tbh);
  960. reiserfs_write_lock_nested(s, depth);
  961. // since we're using ll_rw_blk above, it might have skipped over
  962. // a locked buffer. Double check here
  963. //
  964. /* redundant, sync_dirty_buffer() checks */
  965. if (buffer_dirty(tbh)) {
  966. depth = reiserfs_write_unlock_nested(s);
  967. sync_dirty_buffer(tbh);
  968. reiserfs_write_lock_nested(s, depth);
  969. }
  970. if (unlikely(!buffer_uptodate(tbh))) {
  971. #ifdef CONFIG_REISERFS_CHECK
  972. reiserfs_warning(s, "journal-601",
  973. "buffer write failed");
  974. #endif
  975. retval = -EIO;
  976. }
  977. put_bh(tbh); /* once for journal_find_get_block */
  978. put_bh(tbh); /* once due to original getblk in do_journal_end */
  979. atomic_dec(&(jl->j_commit_left));
  980. }
  981. BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
  982. /* If there was a write error in the journal - we can't commit
  983. * this transaction - it will be invalid and, if successful,
  984. * will just end up propagating the write error out to
  985. * the file system. */
  986. if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
  987. if (buffer_dirty(jl->j_commit_bh))
  988. BUG();
  989. mark_buffer_dirty(jl->j_commit_bh) ;
  990. depth = reiserfs_write_unlock_nested(s);
  991. if (reiserfs_barrier_flush(s))
  992. __sync_dirty_buffer(jl->j_commit_bh, WRITE_FLUSH_FUA);
  993. else
  994. sync_dirty_buffer(jl->j_commit_bh);
  995. reiserfs_write_lock_nested(s, depth);
  996. }
  997. /* If there was a write error in the journal - we can't commit this
  998. * transaction - it will be invalid and, if successful, will just end
  999. * up propagating the write error out to the filesystem. */
  1000. if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
  1001. #ifdef CONFIG_REISERFS_CHECK
  1002. reiserfs_warning(s, "journal-615", "buffer write failed");
  1003. #endif
  1004. retval = -EIO;
  1005. }
  1006. bforget(jl->j_commit_bh);
  1007. if (journal->j_last_commit_id != 0 &&
  1008. (jl->j_trans_id - journal->j_last_commit_id) != 1) {
  1009. reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
  1010. journal->j_last_commit_id, jl->j_trans_id);
  1011. }
  1012. journal->j_last_commit_id = jl->j_trans_id;
  1013. /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
  1014. cleanup_freed_for_journal_list(s, jl);
  1015. retval = retval ? retval : journal->j_errno;
  1016. /* mark the metadata dirty */
  1017. if (!retval)
  1018. dirty_one_transaction(s, jl);
  1019. atomic_dec(&(jl->j_commit_left));
  1020. if (flushall) {
  1021. atomic_set(&(jl->j_older_commits_done), 1);
  1022. }
  1023. mutex_unlock(&jl->j_commit_mutex);
  1024. put_jl:
  1025. put_journal_list(s, jl);
  1026. if (retval)
  1027. reiserfs_abort(s, retval, "Journal write error in %s",
  1028. __func__);
  1029. return retval;
  1030. }
  1031. /*
  1032. ** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
  1033. ** returns NULL if it can't find anything
  1034. */
  1035. static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
  1036. reiserfs_journal_cnode
  1037. *cn)
  1038. {
  1039. struct super_block *sb = cn->sb;
  1040. b_blocknr_t blocknr = cn->blocknr;
  1041. cn = cn->hprev;
  1042. while (cn) {
  1043. if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
  1044. return cn->jlist;
  1045. }
  1046. cn = cn->hprev;
  1047. }
  1048. return NULL;
  1049. }
  1050. static void remove_journal_hash(struct super_block *,
  1051. struct reiserfs_journal_cnode **,
  1052. struct reiserfs_journal_list *, unsigned long,
  1053. int);
  1054. /*
  1055. ** once all the real blocks have been flushed, it is safe to remove them from the
  1056. ** journal list for this transaction. Aside from freeing the cnode, this also allows the
  1057. ** block to be reallocated for data blocks if it had been deleted.
  1058. */
  1059. static void remove_all_from_journal_list(struct super_block *sb,
  1060. struct reiserfs_journal_list *jl,
  1061. int debug)
  1062. {
  1063. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1064. struct reiserfs_journal_cnode *cn, *last;
  1065. cn = jl->j_realblock;
  1066. /* which is better, to lock once around the whole loop, or
  1067. ** to lock for each call to remove_journal_hash?
  1068. */
  1069. while (cn) {
  1070. if (cn->blocknr != 0) {
  1071. if (debug) {
  1072. reiserfs_warning(sb, "reiserfs-2201",
  1073. "block %u, bh is %d, state %ld",
  1074. cn->blocknr, cn->bh ? 1 : 0,
  1075. cn->state);
  1076. }
  1077. cn->state = 0;
  1078. remove_journal_hash(sb, journal->j_list_hash_table,
  1079. jl, cn->blocknr, 1);
  1080. }
  1081. last = cn;
  1082. cn = cn->next;
  1083. free_cnode(sb, last);
  1084. }
  1085. jl->j_realblock = NULL;
  1086. }
  1087. /*
  1088. ** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
  1089. ** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
  1090. ** releasing blocks in this transaction for reuse as data blocks.
  1091. ** called by flush_journal_list, before it calls remove_all_from_journal_list
  1092. **
  1093. */
  1094. static int _update_journal_header_block(struct super_block *sb,
  1095. unsigned long offset,
  1096. unsigned int trans_id)
  1097. {
  1098. struct reiserfs_journal_header *jh;
  1099. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1100. int depth;
  1101. if (reiserfs_is_journal_aborted(journal))
  1102. return -EIO;
  1103. if (trans_id >= journal->j_last_flush_trans_id) {
  1104. if (buffer_locked((journal->j_header_bh))) {
  1105. depth = reiserfs_write_unlock_nested(sb);
  1106. __wait_on_buffer(journal->j_header_bh);
  1107. reiserfs_write_lock_nested(sb, depth);
  1108. if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
  1109. #ifdef CONFIG_REISERFS_CHECK
  1110. reiserfs_warning(sb, "journal-699",
  1111. "buffer write failed");
  1112. #endif
  1113. return -EIO;
  1114. }
  1115. }
  1116. journal->j_last_flush_trans_id = trans_id;
  1117. journal->j_first_unflushed_offset = offset;
  1118. jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
  1119. b_data);
  1120. jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
  1121. jh->j_first_unflushed_offset = cpu_to_le32(offset);
  1122. jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
  1123. set_buffer_dirty(journal->j_header_bh);
  1124. depth = reiserfs_write_unlock_nested(sb);
  1125. if (reiserfs_barrier_flush(sb))
  1126. __sync_dirty_buffer(journal->j_header_bh, WRITE_FLUSH_FUA);
  1127. else
  1128. sync_dirty_buffer(journal->j_header_bh);
  1129. reiserfs_write_lock_nested(sb, depth);
  1130. if (!buffer_uptodate(journal->j_header_bh)) {
  1131. reiserfs_warning(sb, "journal-837",
  1132. "IO error during journal replay");
  1133. return -EIO;
  1134. }
  1135. }
  1136. return 0;
  1137. }
  1138. static int update_journal_header_block(struct super_block *sb,
  1139. unsigned long offset,
  1140. unsigned int trans_id)
  1141. {
  1142. return _update_journal_header_block(sb, offset, trans_id);
  1143. }
  1144. /*
  1145. ** flush any and all journal lists older than you are
  1146. ** can only be called from flush_journal_list
  1147. */
  1148. static int flush_older_journal_lists(struct super_block *sb,
  1149. struct reiserfs_journal_list *jl)
  1150. {
  1151. struct list_head *entry;
  1152. struct reiserfs_journal_list *other_jl;
  1153. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1154. unsigned int trans_id = jl->j_trans_id;
  1155. /* we know we are the only ones flushing things, no extra race
  1156. * protection is required.
  1157. */
  1158. restart:
  1159. entry = journal->j_journal_list.next;
  1160. /* Did we wrap? */
  1161. if (entry == &journal->j_journal_list)
  1162. return 0;
  1163. other_jl = JOURNAL_LIST_ENTRY(entry);
  1164. if (other_jl->j_trans_id < trans_id) {
  1165. BUG_ON(other_jl->j_refcount <= 0);
  1166. /* do not flush all */
  1167. flush_journal_list(sb, other_jl, 0);
  1168. /* other_jl is now deleted from the list */
  1169. goto restart;
  1170. }
  1171. return 0;
  1172. }
  1173. static void del_from_work_list(struct super_block *s,
  1174. struct reiserfs_journal_list *jl)
  1175. {
  1176. struct reiserfs_journal *journal = SB_JOURNAL(s);
  1177. if (!list_empty(&jl->j_working_list)) {
  1178. list_del_init(&jl->j_working_list);
  1179. journal->j_num_work_lists--;
  1180. }
  1181. }
  1182. /* flush a journal list, both commit and real blocks
  1183. **
  1184. ** always set flushall to 1, unless you are calling from inside
  1185. ** flush_journal_list
  1186. **
  1187. ** IMPORTANT. This can only be called while there are no journal writers,
  1188. ** and the journal is locked. That means it can only be called from
  1189. ** do_journal_end, or by journal_release
  1190. */
  1191. static int flush_journal_list(struct super_block *s,
  1192. struct reiserfs_journal_list *jl, int flushall)
  1193. {
  1194. struct reiserfs_journal_list *pjl;
  1195. struct reiserfs_journal_cnode *cn, *last;
  1196. int count;
  1197. int was_jwait = 0;
  1198. int was_dirty = 0;
  1199. struct buffer_head *saved_bh;
  1200. unsigned long j_len_saved = jl->j_len;
  1201. struct reiserfs_journal *journal = SB_JOURNAL(s);
  1202. int err = 0;
  1203. int depth;
  1204. BUG_ON(j_len_saved <= 0);
  1205. if (atomic_read(&journal->j_wcount) != 0) {
  1206. reiserfs_warning(s, "clm-2048", "called with wcount %d",
  1207. atomic_read(&journal->j_wcount));
  1208. }
  1209. /* if flushall == 0, the lock is already held */
  1210. if (flushall) {
  1211. reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
  1212. } else if (mutex_trylock(&journal->j_flush_mutex)) {
  1213. BUG();
  1214. }
  1215. count = 0;
  1216. if (j_len_saved > journal->j_trans_max) {
  1217. reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
  1218. j_len_saved, jl->j_trans_id);
  1219. return 0;
  1220. }
  1221. /* if all the work is already done, get out of here */
  1222. if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
  1223. atomic_read(&(jl->j_commit_left)) <= 0) {
  1224. goto flush_older_and_return;
  1225. }
  1226. /* start by putting the commit list on disk. This will also flush
  1227. ** the commit lists of any olders transactions
  1228. */
  1229. flush_commit_list(s, jl, 1);
  1230. if (!(jl->j_state & LIST_DIRTY)
  1231. && !reiserfs_is_journal_aborted(journal))
  1232. BUG();
  1233. /* are we done now? */
  1234. if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
  1235. atomic_read(&(jl->j_commit_left)) <= 0) {
  1236. goto flush_older_and_return;
  1237. }
  1238. /* loop through each cnode, see if we need to write it,
  1239. ** or wait on a more recent transaction, or just ignore it
  1240. */
  1241. if (atomic_read(&(journal->j_wcount)) != 0) {
  1242. reiserfs_panic(s, "journal-844", "journal list is flushing, "
  1243. "wcount is not 0");
  1244. }
  1245. cn = jl->j_realblock;
  1246. while (cn) {
  1247. was_jwait = 0;
  1248. was_dirty = 0;
  1249. saved_bh = NULL;
  1250. /* blocknr of 0 is no longer in the hash, ignore it */
  1251. if (cn->blocknr == 0) {
  1252. goto free_cnode;
  1253. }
  1254. /* This transaction failed commit. Don't write out to the disk */
  1255. if (!(jl->j_state & LIST_DIRTY))
  1256. goto free_cnode;
  1257. pjl = find_newer_jl_for_cn(cn);
  1258. /* the order is important here. We check pjl to make sure we
  1259. ** don't clear BH_JDirty_wait if we aren't the one writing this
  1260. ** block to disk
  1261. */
  1262. if (!pjl && cn->bh) {
  1263. saved_bh = cn->bh;
  1264. /* we do this to make sure nobody releases the buffer while
  1265. ** we are working with it
  1266. */
  1267. get_bh(saved_bh);
  1268. if (buffer_journal_dirty(saved_bh)) {
  1269. BUG_ON(!can_dirty(cn));
  1270. was_jwait = 1;
  1271. was_dirty = 1;
  1272. } else if (can_dirty(cn)) {
  1273. /* everything with !pjl && jwait should be writable */
  1274. BUG();
  1275. }
  1276. }
  1277. /* if someone has this block in a newer transaction, just make
  1278. ** sure they are committed, and don't try writing it to disk
  1279. */
  1280. if (pjl) {
  1281. if (atomic_read(&pjl->j_commit_left))
  1282. flush_commit_list(s, pjl, 1);
  1283. goto free_cnode;
  1284. }
  1285. /* bh == NULL when the block got to disk on its own, OR,
  1286. ** the block got freed in a future transaction
  1287. */
  1288. if (saved_bh == NULL) {
  1289. goto free_cnode;
  1290. }
  1291. /* this should never happen. kupdate_one_transaction has this list
  1292. ** locked while it works, so we should never see a buffer here that
  1293. ** is not marked JDirty_wait
  1294. */
  1295. if ((!was_jwait) && !buffer_locked(saved_bh)) {
  1296. reiserfs_warning(s, "journal-813",
  1297. "BAD! buffer %llu %cdirty %cjwait, "
  1298. "not in a newer tranasction",
  1299. (unsigned long long)saved_bh->
  1300. b_blocknr, was_dirty ? ' ' : '!',
  1301. was_jwait ? ' ' : '!');
  1302. }
  1303. if (was_dirty) {
  1304. /* we inc again because saved_bh gets decremented at free_cnode */
  1305. get_bh(saved_bh);
  1306. set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
  1307. lock_buffer(saved_bh);
  1308. BUG_ON(cn->blocknr != saved_bh->b_blocknr);
  1309. if (buffer_dirty(saved_bh))
  1310. submit_logged_buffer(saved_bh);
  1311. else
  1312. unlock_buffer(saved_bh);
  1313. count++;
  1314. } else {
  1315. reiserfs_warning(s, "clm-2082",
  1316. "Unable to flush buffer %llu in %s",
  1317. (unsigned long long)saved_bh->
  1318. b_blocknr, __func__);
  1319. }
  1320. free_cnode:
  1321. last = cn;
  1322. cn = cn->next;
  1323. if (saved_bh) {
  1324. /* we incremented this to keep others from taking the buffer head away */
  1325. put_bh(saved_bh);
  1326. if (atomic_read(&(saved_bh->b_count)) < 0) {
  1327. reiserfs_warning(s, "journal-945",
  1328. "saved_bh->b_count < 0");
  1329. }
  1330. }
  1331. }
  1332. if (count > 0) {
  1333. cn = jl->j_realblock;
  1334. while (cn) {
  1335. if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
  1336. if (!cn->bh) {
  1337. reiserfs_panic(s, "journal-1011",
  1338. "cn->bh is NULL");
  1339. }
  1340. depth = reiserfs_write_unlock_nested(s);
  1341. __wait_on_buffer(cn->bh);
  1342. reiserfs_write_lock_nested(s, depth);
  1343. if (!cn->bh) {
  1344. reiserfs_panic(s, "journal-1012",
  1345. "cn->bh is NULL");
  1346. }
  1347. if (unlikely(!buffer_uptodate(cn->bh))) {
  1348. #ifdef CONFIG_REISERFS_CHECK
  1349. reiserfs_warning(s, "journal-949",
  1350. "buffer write failed");
  1351. #endif
  1352. err = -EIO;
  1353. }
  1354. /* note, we must clear the JDirty_wait bit after the up to date
  1355. ** check, otherwise we race against our flushpage routine
  1356. */
  1357. BUG_ON(!test_clear_buffer_journal_dirty
  1358. (cn->bh));
  1359. /* drop one ref for us */
  1360. put_bh(cn->bh);
  1361. /* drop one ref for journal_mark_dirty */
  1362. release_buffer_page(cn->bh);
  1363. }
  1364. cn = cn->next;
  1365. }
  1366. }
  1367. if (err)
  1368. reiserfs_abort(s, -EIO,
  1369. "Write error while pushing transaction to disk in %s",
  1370. __func__);
  1371. flush_older_and_return:
  1372. /* before we can update the journal header block, we _must_ flush all
  1373. ** real blocks from all older transactions to disk. This is because
  1374. ** once the header block is updated, this transaction will not be
  1375. ** replayed after a crash
  1376. */
  1377. if (flushall) {
  1378. flush_older_journal_lists(s, jl);
  1379. }
  1380. err = journal->j_errno;
  1381. /* before we can remove everything from the hash tables for this
  1382. ** transaction, we must make sure it can never be replayed
  1383. **
  1384. ** since we are only called from do_journal_end, we know for sure there
  1385. ** are no allocations going on while we are flushing journal lists. So,
  1386. ** we only need to update the journal header block for the last list
  1387. ** being flushed
  1388. */
  1389. if (!err && flushall) {
  1390. err =
  1391. update_journal_header_block(s,
  1392. (jl->j_start + jl->j_len +
  1393. 2) % SB_ONDISK_JOURNAL_SIZE(s),
  1394. jl->j_trans_id);
  1395. if (err)
  1396. reiserfs_abort(s, -EIO,
  1397. "Write error while updating journal header in %s",
  1398. __func__);
  1399. }
  1400. remove_all_from_journal_list(s, jl, 0);
  1401. list_del_init(&jl->j_list);
  1402. journal->j_num_lists--;
  1403. del_from_work_list(s, jl);
  1404. if (journal->j_last_flush_id != 0 &&
  1405. (jl->j_trans_id - journal->j_last_flush_id) != 1) {
  1406. reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
  1407. journal->j_last_flush_id, jl->j_trans_id);
  1408. }
  1409. journal->j_last_flush_id = jl->j_trans_id;
  1410. /* not strictly required since we are freeing the list, but it should
  1411. * help find code using dead lists later on
  1412. */
  1413. jl->j_len = 0;
  1414. atomic_set(&(jl->j_nonzerolen), 0);
  1415. jl->j_start = 0;
  1416. jl->j_realblock = NULL;
  1417. jl->j_commit_bh = NULL;
  1418. jl->j_trans_id = 0;
  1419. jl->j_state = 0;
  1420. put_journal_list(s, jl);
  1421. if (flushall)
  1422. mutex_unlock(&journal->j_flush_mutex);
  1423. return err;
  1424. }
  1425. static int write_one_transaction(struct super_block *s,
  1426. struct reiserfs_journal_list *jl,
  1427. struct buffer_chunk *chunk)
  1428. {
  1429. struct reiserfs_journal_cnode *cn;
  1430. int ret = 0;
  1431. jl->j_state |= LIST_TOUCHED;
  1432. del_from_work_list(s, jl);
  1433. if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
  1434. return 0;
  1435. }
  1436. cn = jl->j_realblock;
  1437. while (cn) {
  1438. /* if the blocknr == 0, this has been cleared from the hash,
  1439. ** skip it
  1440. */
  1441. if (cn->blocknr == 0) {
  1442. goto next;
  1443. }
  1444. if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
  1445. struct buffer_head *tmp_bh;
  1446. /* we can race against journal_mark_freed when we try
  1447. * to lock_buffer(cn->bh), so we have to inc the buffer
  1448. * count, and recheck things after locking
  1449. */
  1450. tmp_bh = cn->bh;
  1451. get_bh(tmp_bh);
  1452. lock_buffer(tmp_bh);
  1453. if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
  1454. if (!buffer_journal_dirty(tmp_bh) ||
  1455. buffer_journal_prepared(tmp_bh))
  1456. BUG();
  1457. add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
  1458. ret++;
  1459. } else {
  1460. /* note, cn->bh might be null now */
  1461. unlock_buffer(tmp_bh);
  1462. }
  1463. put_bh(tmp_bh);
  1464. }
  1465. next:
  1466. cn = cn->next;
  1467. cond_resched();
  1468. }
  1469. return ret;
  1470. }
  1471. /* used by flush_commit_list */
  1472. static int dirty_one_transaction(struct super_block *s,
  1473. struct reiserfs_journal_list *jl)
  1474. {
  1475. struct reiserfs_journal_cnode *cn;
  1476. struct reiserfs_journal_list *pjl;
  1477. int ret = 0;
  1478. jl->j_state |= LIST_DIRTY;
  1479. cn = jl->j_realblock;
  1480. while (cn) {
  1481. /* look for a more recent transaction that logged this
  1482. ** buffer. Only the most recent transaction with a buffer in
  1483. ** it is allowed to send that buffer to disk
  1484. */
  1485. pjl = find_newer_jl_for_cn(cn);
  1486. if (!pjl && cn->blocknr && cn->bh
  1487. && buffer_journal_dirty(cn->bh)) {
  1488. BUG_ON(!can_dirty(cn));
  1489. /* if the buffer is prepared, it will either be logged
  1490. * or restored. If restored, we need to make sure
  1491. * it actually gets marked dirty
  1492. */
  1493. clear_buffer_journal_new(cn->bh);
  1494. if (buffer_journal_prepared(cn->bh)) {
  1495. set_buffer_journal_restore_dirty(cn->bh);
  1496. } else {
  1497. set_buffer_journal_test(cn->bh);
  1498. mark_buffer_dirty(cn->bh);
  1499. }
  1500. }
  1501. cn = cn->next;
  1502. }
  1503. return ret;
  1504. }
  1505. static int kupdate_transactions(struct super_block *s,
  1506. struct reiserfs_journal_list *jl,
  1507. struct reiserfs_journal_list **next_jl,
  1508. unsigned int *next_trans_id,
  1509. int num_blocks, int num_trans)
  1510. {
  1511. int ret = 0;
  1512. int written = 0;
  1513. int transactions_flushed = 0;
  1514. unsigned int orig_trans_id = jl->j_trans_id;
  1515. struct buffer_chunk chunk;
  1516. struct list_head *entry;
  1517. struct reiserfs_journal *journal = SB_JOURNAL(s);
  1518. chunk.nr = 0;
  1519. reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
  1520. if (!journal_list_still_alive(s, orig_trans_id)) {
  1521. goto done;
  1522. }
  1523. /* we've got j_flush_mutex held, nobody is going to delete any
  1524. * of these lists out from underneath us
  1525. */
  1526. while ((num_trans && transactions_flushed < num_trans) ||
  1527. (!num_trans && written < num_blocks)) {
  1528. if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
  1529. atomic_read(&jl->j_commit_left)
  1530. || !(jl->j_state & LIST_DIRTY)) {
  1531. del_from_work_list(s, jl);
  1532. break;
  1533. }
  1534. ret = write_one_transaction(s, jl, &chunk);
  1535. if (ret < 0)
  1536. goto done;
  1537. transactions_flushed++;
  1538. written += ret;
  1539. entry = jl->j_list.next;
  1540. /* did we wrap? */
  1541. if (entry == &journal->j_journal_list) {
  1542. break;
  1543. }
  1544. jl = JOURNAL_LIST_ENTRY(entry);
  1545. /* don't bother with older transactions */
  1546. if (jl->j_trans_id <= orig_trans_id)
  1547. break;
  1548. }
  1549. if (chunk.nr) {
  1550. write_chunk(&chunk);
  1551. }
  1552. done:
  1553. mutex_unlock(&journal->j_flush_mutex);
  1554. return ret;
  1555. }
  1556. /* for o_sync and fsync heavy applications, they tend to use
  1557. ** all the journa list slots with tiny transactions. These
  1558. ** trigger lots and lots of calls to update the header block, which
  1559. ** adds seeks and slows things down.
  1560. **
  1561. ** This function tries to clear out a large chunk of the journal lists
  1562. ** at once, which makes everything faster since only the newest journal
  1563. ** list updates the header block
  1564. */
  1565. static int flush_used_journal_lists(struct super_block *s,
  1566. struct reiserfs_journal_list *jl)
  1567. {
  1568. unsigned long len = 0;
  1569. unsigned long cur_len;
  1570. int ret;
  1571. int i;
  1572. int limit = 256;
  1573. struct reiserfs_journal_list *tjl;
  1574. struct reiserfs_journal_list *flush_jl;
  1575. unsigned int trans_id;
  1576. struct reiserfs_journal *journal = SB_JOURNAL(s);
  1577. flush_jl = tjl = jl;
  1578. /* in data logging mode, try harder to flush a lot of blocks */
  1579. if (reiserfs_data_log(s))
  1580. limit = 1024;
  1581. /* flush for 256 transactions or limit blocks, whichever comes first */
  1582. for (i = 0; i < 256 && len < limit; i++) {
  1583. if (atomic_read(&tjl->j_commit_left) ||
  1584. tjl->j_trans_id < jl->j_trans_id) {
  1585. break;
  1586. }
  1587. cur_len = atomic_read(&tjl->j_nonzerolen);
  1588. if (cur_len > 0) {
  1589. tjl->j_state &= ~LIST_TOUCHED;
  1590. }
  1591. len += cur_len;
  1592. flush_jl = tjl;
  1593. if (tjl->j_list.next == &journal->j_journal_list)
  1594. break;
  1595. tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
  1596. }
  1597. get_journal_list(jl);
  1598. get_journal_list(flush_jl);
  1599. /* try to find a group of blocks we can flush across all the
  1600. ** transactions, but only bother if we've actually spanned
  1601. ** across multiple lists
  1602. */
  1603. if (flush_jl != jl) {
  1604. ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
  1605. }
  1606. flush_journal_list(s, flush_jl, 1);
  1607. put_journal_list(s, flush_jl);
  1608. put_journal_list(s, jl);
  1609. return 0;
  1610. }
  1611. /*
  1612. ** removes any nodes in table with name block and dev as bh.
  1613. ** only touchs the hnext and hprev pointers.
  1614. */
  1615. void remove_journal_hash(struct super_block *sb,
  1616. struct reiserfs_journal_cnode **table,
  1617. struct reiserfs_journal_list *jl,
  1618. unsigned long block, int remove_freed)
  1619. {
  1620. struct reiserfs_journal_cnode *cur;
  1621. struct reiserfs_journal_cnode **head;
  1622. head = &(journal_hash(table, sb, block));
  1623. if (!head) {
  1624. return;
  1625. }
  1626. cur = *head;
  1627. while (cur) {
  1628. if (cur->blocknr == block && cur->sb == sb
  1629. && (jl == NULL || jl == cur->jlist)
  1630. && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
  1631. if (cur->hnext) {
  1632. cur->hnext->hprev = cur->hprev;
  1633. }
  1634. if (cur->hprev) {
  1635. cur->hprev->hnext = cur->hnext;
  1636. } else {
  1637. *head = cur->hnext;
  1638. }
  1639. cur->blocknr = 0;
  1640. cur->sb = NULL;
  1641. cur->state = 0;
  1642. if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
  1643. atomic_dec(&(cur->jlist->j_nonzerolen));
  1644. cur->bh = NULL;
  1645. cur->jlist = NULL;
  1646. }
  1647. cur = cur->hnext;
  1648. }
  1649. }
  1650. static void free_journal_ram(struct super_block *sb)
  1651. {
  1652. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1653. kfree(journal->j_current_jl);
  1654. journal->j_num_lists--;
  1655. vfree(journal->j_cnode_free_orig);
  1656. free_list_bitmaps(sb, journal->j_list_bitmap);
  1657. free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
  1658. if (journal->j_header_bh) {
  1659. brelse(journal->j_header_bh);
  1660. }
  1661. /* j_header_bh is on the journal dev, make sure not to release the journal
  1662. * dev until we brelse j_header_bh
  1663. */
  1664. release_journal_dev(sb, journal);
  1665. vfree(journal);
  1666. }
  1667. /*
  1668. ** call on unmount. Only set error to 1 if you haven't made your way out
  1669. ** of read_super() yet. Any other caller must keep error at 0.
  1670. */
  1671. static int do_journal_release(struct reiserfs_transaction_handle *th,
  1672. struct super_block *sb, int error)
  1673. {
  1674. struct reiserfs_transaction_handle myth;
  1675. int flushed = 0;
  1676. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1677. /* we only want to flush out transactions if we were called with error == 0
  1678. */
  1679. if (!error && !(sb->s_flags & MS_RDONLY)) {
  1680. /* end the current trans */
  1681. BUG_ON(!th->t_trans_id);
  1682. do_journal_end(th, sb, 10, FLUSH_ALL);
  1683. /* make sure something gets logged to force our way into the flush code */
  1684. if (!journal_join(&myth, sb, 1)) {
  1685. reiserfs_prepare_for_journal(sb,
  1686. SB_BUFFER_WITH_SB(sb),
  1687. 1);
  1688. journal_mark_dirty(&myth, sb,
  1689. SB_BUFFER_WITH_SB(sb));
  1690. do_journal_end(&myth, sb, 1, FLUSH_ALL);
  1691. flushed = 1;
  1692. }
  1693. }
  1694. /* this also catches errors during the do_journal_end above */
  1695. if (!error && reiserfs_is_journal_aborted(journal)) {
  1696. memset(&myth, 0, sizeof(myth));
  1697. if (!journal_join_abort(&myth, sb, 1)) {
  1698. reiserfs_prepare_for_journal(sb,
  1699. SB_BUFFER_WITH_SB(sb),
  1700. 1);
  1701. journal_mark_dirty(&myth, sb,
  1702. SB_BUFFER_WITH_SB(sb));
  1703. do_journal_end(&myth, sb, 1, FLUSH_ALL);
  1704. }
  1705. }
  1706. reiserfs_mounted_fs_count--;
  1707. /* wait for all commits to finish */
  1708. cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
  1709. /*
  1710. * We must release the write lock here because
  1711. * the workqueue job (flush_async_commit) needs this lock
  1712. */
  1713. reiserfs_write_unlock(sb);
  1714. cancel_delayed_work_sync(&REISERFS_SB(sb)->old_work);
  1715. flush_workqueue(commit_wq);
  1716. if (!reiserfs_mounted_fs_count) {
  1717. destroy_workqueue(commit_wq);
  1718. commit_wq = NULL;
  1719. }
  1720. free_journal_ram(sb);
  1721. reiserfs_write_lock(sb);
  1722. return 0;
  1723. }
  1724. /*
  1725. ** call on unmount. flush all journal trans, release all alloc'd ram
  1726. */
  1727. int journal_release(struct reiserfs_transaction_handle *th,
  1728. struct super_block *sb)
  1729. {
  1730. return do_journal_release(th, sb, 0);
  1731. }
  1732. /*
  1733. ** only call from an error condition inside reiserfs_read_super!
  1734. */
  1735. int journal_release_error(struct reiserfs_transaction_handle *th,
  1736. struct super_block *sb)
  1737. {
  1738. return do_journal_release(th, sb, 1);
  1739. }
  1740. /* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
  1741. static int journal_compare_desc_commit(struct super_block *sb,
  1742. struct reiserfs_journal_desc *desc,
  1743. struct reiserfs_journal_commit *commit)
  1744. {
  1745. if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
  1746. get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
  1747. get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
  1748. get_commit_trans_len(commit) <= 0) {
  1749. return 1;
  1750. }
  1751. return 0;
  1752. }
  1753. /* returns 0 if it did not find a description block
  1754. ** returns -1 if it found a corrupt commit block
  1755. ** returns 1 if both desc and commit were valid
  1756. ** NOTE: only called during fs mount
  1757. */
  1758. static int journal_transaction_is_valid(struct super_block *sb,
  1759. struct buffer_head *d_bh,
  1760. unsigned int *oldest_invalid_trans_id,
  1761. unsigned long *newest_mount_id)
  1762. {
  1763. struct reiserfs_journal_desc *desc;
  1764. struct reiserfs_journal_commit *commit;
  1765. struct buffer_head *c_bh;
  1766. unsigned long offset;
  1767. if (!d_bh)
  1768. return 0;
  1769. desc = (struct reiserfs_journal_desc *)d_bh->b_data;
  1770. if (get_desc_trans_len(desc) > 0
  1771. && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
  1772. if (oldest_invalid_trans_id && *oldest_invalid_trans_id
  1773. && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
  1774. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1775. "journal-986: transaction "
  1776. "is valid returning because trans_id %d is greater than "
  1777. "oldest_invalid %lu",
  1778. get_desc_trans_id(desc),
  1779. *oldest_invalid_trans_id);
  1780. return 0;
  1781. }
  1782. if (newest_mount_id
  1783. && *newest_mount_id > get_desc_mount_id(desc)) {
  1784. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1785. "journal-1087: transaction "
  1786. "is valid returning because mount_id %d is less than "
  1787. "newest_mount_id %lu",
  1788. get_desc_mount_id(desc),
  1789. *newest_mount_id);
  1790. return -1;
  1791. }
  1792. if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
  1793. reiserfs_warning(sb, "journal-2018",
  1794. "Bad transaction length %d "
  1795. "encountered, ignoring transaction",
  1796. get_desc_trans_len(desc));
  1797. return -1;
  1798. }
  1799. offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
  1800. /* ok, we have a journal description block, lets see if the transaction was valid */
  1801. c_bh =
  1802. journal_bread(sb,
  1803. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  1804. ((offset + get_desc_trans_len(desc) +
  1805. 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
  1806. if (!c_bh)
  1807. return 0;
  1808. commit = (struct reiserfs_journal_commit *)c_bh->b_data;
  1809. if (journal_compare_desc_commit(sb, desc, commit)) {
  1810. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1811. "journal_transaction_is_valid, commit offset %ld had bad "
  1812. "time %d or length %d",
  1813. c_bh->b_blocknr -
  1814. SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  1815. get_commit_trans_id(commit),
  1816. get_commit_trans_len(commit));
  1817. brelse(c_bh);
  1818. if (oldest_invalid_trans_id) {
  1819. *oldest_invalid_trans_id =
  1820. get_desc_trans_id(desc);
  1821. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1822. "journal-1004: "
  1823. "transaction_is_valid setting oldest invalid trans_id "
  1824. "to %d",
  1825. get_desc_trans_id(desc));
  1826. }
  1827. return -1;
  1828. }
  1829. brelse(c_bh);
  1830. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1831. "journal-1006: found valid "
  1832. "transaction start offset %llu, len %d id %d",
  1833. d_bh->b_blocknr -
  1834. SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  1835. get_desc_trans_len(desc),
  1836. get_desc_trans_id(desc));
  1837. return 1;
  1838. } else {
  1839. return 0;
  1840. }
  1841. }
  1842. static void brelse_array(struct buffer_head **heads, int num)
  1843. {
  1844. int i;
  1845. for (i = 0; i < num; i++) {
  1846. brelse(heads[i]);
  1847. }
  1848. }
  1849. /*
  1850. ** given the start, and values for the oldest acceptable transactions,
  1851. ** this either reads in a replays a transaction, or returns because the
  1852. ** transaction is invalid, or too old.
  1853. ** NOTE: only called during fs mount
  1854. */
  1855. static int journal_read_transaction(struct super_block *sb,
  1856. unsigned long cur_dblock,
  1857. unsigned long oldest_start,
  1858. unsigned int oldest_trans_id,
  1859. unsigned long newest_mount_id)
  1860. {
  1861. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  1862. struct reiserfs_journal_desc *desc;
  1863. struct reiserfs_journal_commit *commit;
  1864. unsigned int trans_id = 0;
  1865. struct buffer_head *c_bh;
  1866. struct buffer_head *d_bh;
  1867. struct buffer_head **log_blocks = NULL;
  1868. struct buffer_head **real_blocks = NULL;
  1869. unsigned int trans_offset;
  1870. int i;
  1871. int trans_half;
  1872. d_bh = journal_bread(sb, cur_dblock);
  1873. if (!d_bh)
  1874. return 1;
  1875. desc = (struct reiserfs_journal_desc *)d_bh->b_data;
  1876. trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
  1877. reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
  1878. "journal_read_transaction, offset %llu, len %d mount_id %d",
  1879. d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  1880. get_desc_trans_len(desc), get_desc_mount_id(desc));
  1881. if (get_desc_trans_id(desc) < oldest_trans_id) {
  1882. reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
  1883. "journal_read_trans skipping because %lu is too old",
  1884. cur_dblock -
  1885. SB_ONDISK_JOURNAL_1st_BLOCK(sb));
  1886. brelse(d_bh);
  1887. return 1;
  1888. }
  1889. if (get_desc_mount_id(desc) != newest_mount_id) {
  1890. reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
  1891. "journal_read_trans skipping because %d is != "
  1892. "newest_mount_id %lu", get_desc_mount_id(desc),
  1893. newest_mount_id);
  1894. brelse(d_bh);
  1895. return 1;
  1896. }
  1897. c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  1898. ((trans_offset + get_desc_trans_len(desc) + 1) %
  1899. SB_ONDISK_JOURNAL_SIZE(sb)));
  1900. if (!c_bh) {
  1901. brelse(d_bh);
  1902. return 1;
  1903. }
  1904. commit = (struct reiserfs_journal_commit *)c_bh->b_data;
  1905. if (journal_compare_desc_commit(sb, desc, commit)) {
  1906. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  1907. "journal_read_transaction, "
  1908. "commit offset %llu had bad time %d or length %d",
  1909. c_bh->b_blocknr -
  1910. SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  1911. get_commit_trans_id(commit),
  1912. get_commit_trans_len(commit));
  1913. brelse(c_bh);
  1914. brelse(d_bh);
  1915. return 1;
  1916. }
  1917. if (bdev_read_only(sb->s_bdev)) {
  1918. reiserfs_warning(sb, "clm-2076",
  1919. "device is readonly, unable to replay log");
  1920. brelse(c_bh);
  1921. brelse(d_bh);
  1922. return -EROFS;
  1923. }
  1924. trans_id = get_desc_trans_id(desc);
  1925. /* now we know we've got a good transaction, and it was inside the valid time ranges */
  1926. log_blocks = kmalloc(get_desc_trans_len(desc) *
  1927. sizeof(struct buffer_head *), GFP_NOFS);
  1928. real_blocks = kmalloc(get_desc_trans_len(desc) *
  1929. sizeof(struct buffer_head *), GFP_NOFS);
  1930. if (!log_blocks || !real_blocks) {
  1931. brelse(c_bh);
  1932. brelse(d_bh);
  1933. kfree(log_blocks);
  1934. kfree(real_blocks);
  1935. reiserfs_warning(sb, "journal-1169",
  1936. "kmalloc failed, unable to mount FS");
  1937. return -1;
  1938. }
  1939. /* get all the buffer heads */
  1940. trans_half = journal_trans_half(sb->s_blocksize);
  1941. for (i = 0; i < get_desc_trans_len(desc); i++) {
  1942. log_blocks[i] =
  1943. journal_getblk(sb,
  1944. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  1945. (trans_offset + 1 +
  1946. i) % SB_ONDISK_JOURNAL_SIZE(sb));
  1947. if (i < trans_half) {
  1948. real_blocks[i] =
  1949. sb_getblk(sb,
  1950. le32_to_cpu(desc->j_realblock[i]));
  1951. } else {
  1952. real_blocks[i] =
  1953. sb_getblk(sb,
  1954. le32_to_cpu(commit->
  1955. j_realblock[i - trans_half]));
  1956. }
  1957. if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
  1958. reiserfs_warning(sb, "journal-1207",
  1959. "REPLAY FAILURE fsck required! "
  1960. "Block to replay is outside of "
  1961. "filesystem");
  1962. goto abort_replay;
  1963. }
  1964. /* make sure we don't try to replay onto log or reserved area */
  1965. if (is_block_in_log_or_reserved_area
  1966. (sb, real_blocks[i]->b_blocknr)) {
  1967. reiserfs_warning(sb, "journal-1204",
  1968. "REPLAY FAILURE fsck required! "
  1969. "Trying to replay onto a log block");
  1970. abort_replay:
  1971. brelse_array(log_blocks, i);
  1972. brelse_array(real_blocks, i);
  1973. brelse(c_bh);
  1974. brelse(d_bh);
  1975. kfree(log_blocks);
  1976. kfree(real_blocks);
  1977. return -1;
  1978. }
  1979. }
  1980. /* read in the log blocks, memcpy to the corresponding real block */
  1981. ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
  1982. for (i = 0; i < get_desc_trans_len(desc); i++) {
  1983. wait_on_buffer(log_blocks[i]);
  1984. if (!buffer_uptodate(log_blocks[i])) {
  1985. reiserfs_warning(sb, "journal-1212",
  1986. "REPLAY FAILURE fsck required! "
  1987. "buffer write failed");
  1988. brelse_array(log_blocks + i,
  1989. get_desc_trans_len(desc) - i);
  1990. brelse_array(real_blocks, get_desc_trans_len(desc));
  1991. brelse(c_bh);
  1992. brelse(d_bh);
  1993. kfree(log_blocks);
  1994. kfree(real_blocks);
  1995. return -1;
  1996. }
  1997. memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
  1998. real_blocks[i]->b_size);
  1999. set_buffer_uptodate(real_blocks[i]);
  2000. brelse(log_blocks[i]);
  2001. }
  2002. /* flush out the real blocks */
  2003. for (i = 0; i < get_desc_trans_len(desc); i++) {
  2004. set_buffer_dirty(real_blocks[i]);
  2005. write_dirty_buffer(real_blocks[i], WRITE);
  2006. }
  2007. for (i = 0; i < get_desc_trans_len(desc); i++) {
  2008. wait_on_buffer(real_blocks[i]);
  2009. if (!buffer_uptodate(real_blocks[i])) {
  2010. reiserfs_warning(sb, "journal-1226",
  2011. "REPLAY FAILURE, fsck required! "
  2012. "buffer write failed");
  2013. brelse_array(real_blocks + i,
  2014. get_desc_trans_len(desc) - i);
  2015. brelse(c_bh);
  2016. brelse(d_bh);
  2017. kfree(log_blocks);
  2018. kfree(real_blocks);
  2019. return -1;
  2020. }
  2021. brelse(real_blocks[i]);
  2022. }
  2023. cur_dblock =
  2024. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2025. ((trans_offset + get_desc_trans_len(desc) +
  2026. 2) % SB_ONDISK_JOURNAL_SIZE(sb));
  2027. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2028. "journal-1095: setting journal " "start to offset %ld",
  2029. cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
  2030. /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
  2031. journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
  2032. journal->j_last_flush_trans_id = trans_id;
  2033. journal->j_trans_id = trans_id + 1;
  2034. /* check for trans_id overflow */
  2035. if (journal->j_trans_id == 0)
  2036. journal->j_trans_id = 10;
  2037. brelse(c_bh);
  2038. brelse(d_bh);
  2039. kfree(log_blocks);
  2040. kfree(real_blocks);
  2041. return 0;
  2042. }
  2043. /* This function reads blocks starting from block and to max_block of bufsize
  2044. size (but no more than BUFNR blocks at a time). This proved to improve
  2045. mounting speed on self-rebuilding raid5 arrays at least.
  2046. Right now it is only used from journal code. But later we might use it
  2047. from other places.
  2048. Note: Do not use journal_getblk/sb_getblk functions here! */
  2049. static struct buffer_head *reiserfs_breada(struct block_device *dev,
  2050. b_blocknr_t block, int bufsize,
  2051. b_blocknr_t max_block)
  2052. {
  2053. struct buffer_head *bhlist[BUFNR];
  2054. unsigned int blocks = BUFNR;
  2055. struct buffer_head *bh;
  2056. int i, j;
  2057. bh = __getblk(dev, block, bufsize);
  2058. if (buffer_uptodate(bh))
  2059. return (bh);
  2060. if (block + BUFNR > max_block) {
  2061. blocks = max_block - block;
  2062. }
  2063. bhlist[0] = bh;
  2064. j = 1;
  2065. for (i = 1; i < blocks; i++) {
  2066. bh = __getblk(dev, block + i, bufsize);
  2067. if (buffer_uptodate(bh)) {
  2068. brelse(bh);
  2069. break;
  2070. } else
  2071. bhlist[j++] = bh;
  2072. }
  2073. ll_rw_block(READ, j, bhlist);
  2074. for (i = 1; i < j; i++)
  2075. brelse(bhlist[i]);
  2076. bh = bhlist[0];
  2077. wait_on_buffer(bh);
  2078. if (buffer_uptodate(bh))
  2079. return bh;
  2080. brelse(bh);
  2081. return NULL;
  2082. }
  2083. /*
  2084. ** read and replay the log
  2085. ** on a clean unmount, the journal header's next unflushed pointer will
  2086. ** be to an invalid transaction. This tests that before finding all the
  2087. ** transactions in the log, which makes normal mount times fast.
  2088. ** After a crash, this starts with the next unflushed transaction, and
  2089. ** replays until it finds one too old, or invalid.
  2090. ** On exit, it sets things up so the first transaction will work correctly.
  2091. ** NOTE: only called during fs mount
  2092. */
  2093. static int journal_read(struct super_block *sb)
  2094. {
  2095. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  2096. struct reiserfs_journal_desc *desc;
  2097. unsigned int oldest_trans_id = 0;
  2098. unsigned int oldest_invalid_trans_id = 0;
  2099. time_t start;
  2100. unsigned long oldest_start = 0;
  2101. unsigned long cur_dblock = 0;
  2102. unsigned long newest_mount_id = 9;
  2103. struct buffer_head *d_bh;
  2104. struct reiserfs_journal_header *jh;
  2105. int valid_journal_header = 0;
  2106. int replay_count = 0;
  2107. int continue_replay = 1;
  2108. int ret;
  2109. char b[BDEVNAME_SIZE];
  2110. cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
  2111. reiserfs_info(sb, "checking transaction log (%s)\n",
  2112. bdevname(journal->j_dev_bd, b));
  2113. start = get_seconds();
  2114. /* step 1, read in the journal header block. Check the transaction it says
  2115. ** is the first unflushed, and if that transaction is not valid,
  2116. ** replay is done
  2117. */
  2118. journal->j_header_bh = journal_bread(sb,
  2119. SB_ONDISK_JOURNAL_1st_BLOCK(sb)
  2120. + SB_ONDISK_JOURNAL_SIZE(sb));
  2121. if (!journal->j_header_bh) {
  2122. return 1;
  2123. }
  2124. jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
  2125. if (le32_to_cpu(jh->j_first_unflushed_offset) <
  2126. SB_ONDISK_JOURNAL_SIZE(sb)
  2127. && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
  2128. oldest_start =
  2129. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2130. le32_to_cpu(jh->j_first_unflushed_offset);
  2131. oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
  2132. newest_mount_id = le32_to_cpu(jh->j_mount_id);
  2133. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2134. "journal-1153: found in "
  2135. "header: first_unflushed_offset %d, last_flushed_trans_id "
  2136. "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
  2137. le32_to_cpu(jh->j_last_flush_trans_id));
  2138. valid_journal_header = 1;
  2139. /* now, we try to read the first unflushed offset. If it is not valid,
  2140. ** there is nothing more we can do, and it makes no sense to read
  2141. ** through the whole log.
  2142. */
  2143. d_bh =
  2144. journal_bread(sb,
  2145. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2146. le32_to_cpu(jh->j_first_unflushed_offset));
  2147. ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
  2148. if (!ret) {
  2149. continue_replay = 0;
  2150. }
  2151. brelse(d_bh);
  2152. goto start_log_replay;
  2153. }
  2154. /* ok, there are transactions that need to be replayed. start with the first log block, find
  2155. ** all the valid transactions, and pick out the oldest.
  2156. */
  2157. while (continue_replay
  2158. && cur_dblock <
  2159. (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2160. SB_ONDISK_JOURNAL_SIZE(sb))) {
  2161. /* Note that it is required for blocksize of primary fs device and journal
  2162. device to be the same */
  2163. d_bh =
  2164. reiserfs_breada(journal->j_dev_bd, cur_dblock,
  2165. sb->s_blocksize,
  2166. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2167. SB_ONDISK_JOURNAL_SIZE(sb));
  2168. ret =
  2169. journal_transaction_is_valid(sb, d_bh,
  2170. &oldest_invalid_trans_id,
  2171. &newest_mount_id);
  2172. if (ret == 1) {
  2173. desc = (struct reiserfs_journal_desc *)d_bh->b_data;
  2174. if (oldest_start == 0) { /* init all oldest_ values */
  2175. oldest_trans_id = get_desc_trans_id(desc);
  2176. oldest_start = d_bh->b_blocknr;
  2177. newest_mount_id = get_desc_mount_id(desc);
  2178. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2179. "journal-1179: Setting "
  2180. "oldest_start to offset %llu, trans_id %lu",
  2181. oldest_start -
  2182. SB_ONDISK_JOURNAL_1st_BLOCK
  2183. (sb), oldest_trans_id);
  2184. } else if (oldest_trans_id > get_desc_trans_id(desc)) {
  2185. /* one we just read was older */
  2186. oldest_trans_id = get_desc_trans_id(desc);
  2187. oldest_start = d_bh->b_blocknr;
  2188. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2189. "journal-1180: Resetting "
  2190. "oldest_start to offset %lu, trans_id %lu",
  2191. oldest_start -
  2192. SB_ONDISK_JOURNAL_1st_BLOCK
  2193. (sb), oldest_trans_id);
  2194. }
  2195. if (newest_mount_id < get_desc_mount_id(desc)) {
  2196. newest_mount_id = get_desc_mount_id(desc);
  2197. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2198. "journal-1299: Setting "
  2199. "newest_mount_id to %d",
  2200. get_desc_mount_id(desc));
  2201. }
  2202. cur_dblock += get_desc_trans_len(desc) + 2;
  2203. } else {
  2204. cur_dblock++;
  2205. }
  2206. brelse(d_bh);
  2207. }
  2208. start_log_replay:
  2209. cur_dblock = oldest_start;
  2210. if (oldest_trans_id) {
  2211. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2212. "journal-1206: Starting replay "
  2213. "from offset %llu, trans_id %lu",
  2214. cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  2215. oldest_trans_id);
  2216. }
  2217. replay_count = 0;
  2218. while (continue_replay && oldest_trans_id > 0) {
  2219. ret =
  2220. journal_read_transaction(sb, cur_dblock, oldest_start,
  2221. oldest_trans_id, newest_mount_id);
  2222. if (ret < 0) {
  2223. return ret;
  2224. } else if (ret != 0) {
  2225. break;
  2226. }
  2227. cur_dblock =
  2228. SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
  2229. replay_count++;
  2230. if (cur_dblock == oldest_start)
  2231. break;
  2232. }
  2233. if (oldest_trans_id == 0) {
  2234. reiserfs_debug(sb, REISERFS_DEBUG_CODE,
  2235. "journal-1225: No valid " "transactions found");
  2236. }
  2237. /* j_start does not get set correctly if we don't replay any transactions.
  2238. ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
  2239. ** copy the trans_id from the header
  2240. */
  2241. if (valid_journal_header && replay_count == 0) {
  2242. journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
  2243. journal->j_trans_id =
  2244. le32_to_cpu(jh->j_last_flush_trans_id) + 1;
  2245. /* check for trans_id overflow */
  2246. if (journal->j_trans_id == 0)
  2247. journal->j_trans_id = 10;
  2248. journal->j_last_flush_trans_id =
  2249. le32_to_cpu(jh->j_last_flush_trans_id);
  2250. journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
  2251. } else {
  2252. journal->j_mount_id = newest_mount_id + 1;
  2253. }
  2254. reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
  2255. "newest_mount_id to %lu", journal->j_mount_id);
  2256. journal->j_first_unflushed_offset = journal->j_start;
  2257. if (replay_count > 0) {
  2258. reiserfs_info(sb,
  2259. "replayed %d transactions in %lu seconds\n",
  2260. replay_count, get_seconds() - start);
  2261. }
  2262. /* needed to satisfy the locking in _update_journal_header_block */
  2263. reiserfs_write_lock(sb);
  2264. if (!bdev_read_only(sb->s_bdev) &&
  2265. _update_journal_header_block(sb, journal->j_start,
  2266. journal->j_last_flush_trans_id)) {
  2267. reiserfs_write_unlock(sb);
  2268. /* replay failed, caller must call free_journal_ram and abort
  2269. ** the mount
  2270. */
  2271. return -1;
  2272. }
  2273. reiserfs_write_unlock(sb);
  2274. return 0;
  2275. }
  2276. static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
  2277. {
  2278. struct reiserfs_journal_list *jl;
  2279. jl = kzalloc(sizeof(struct reiserfs_journal_list),
  2280. GFP_NOFS | __GFP_NOFAIL);
  2281. INIT_LIST_HEAD(&jl->j_list);
  2282. INIT_LIST_HEAD(&jl->j_working_list);
  2283. INIT_LIST_HEAD(&jl->j_tail_bh_list);
  2284. INIT_LIST_HEAD(&jl->j_bh_list);
  2285. mutex_init(&jl->j_commit_mutex);
  2286. SB_JOURNAL(s)->j_num_lists++;
  2287. get_journal_list(jl);
  2288. return jl;
  2289. }
  2290. static void journal_list_init(struct super_block *sb)
  2291. {
  2292. SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
  2293. }
  2294. static void release_journal_dev(struct super_block *super,
  2295. struct reiserfs_journal *journal)
  2296. {
  2297. if (journal->j_dev_bd != NULL) {
  2298. blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
  2299. journal->j_dev_bd = NULL;
  2300. }
  2301. }
  2302. static int journal_init_dev(struct super_block *super,
  2303. struct reiserfs_journal *journal,
  2304. const char *jdev_name)
  2305. {
  2306. int result;
  2307. dev_t jdev;
  2308. fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE | FMODE_EXCL;
  2309. char b[BDEVNAME_SIZE];
  2310. result = 0;
  2311. journal->j_dev_bd = NULL;
  2312. jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
  2313. new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
  2314. if (bdev_read_only(super->s_bdev))
  2315. blkdev_mode = FMODE_READ;
  2316. /* there is no "jdev" option and journal is on separate device */
  2317. if ((!jdev_name || !jdev_name[0])) {
  2318. if (jdev == super->s_dev)
  2319. blkdev_mode &= ~FMODE_EXCL;
  2320. journal->j_dev_bd = blkdev_get_by_dev(jdev, blkdev_mode,
  2321. journal);
  2322. journal->j_dev_mode = blkdev_mode;
  2323. if (IS_ERR(journal->j_dev_bd)) {
  2324. result = PTR_ERR(journal->j_dev_bd);
  2325. journal->j_dev_bd = NULL;
  2326. reiserfs_warning(super, "sh-458",
  2327. "cannot init journal device '%s': %i",
  2328. __bdevname(jdev, b), result);
  2329. return result;
  2330. } else if (jdev != super->s_dev)
  2331. set_blocksize(journal->j_dev_bd, super->s_blocksize);
  2332. return 0;
  2333. }
  2334. journal->j_dev_mode = blkdev_mode;
  2335. journal->j_dev_bd = blkdev_get_by_path(jdev_name, blkdev_mode, journal);
  2336. if (IS_ERR(journal->j_dev_bd)) {
  2337. result = PTR_ERR(journal->j_dev_bd);
  2338. journal->j_dev_bd = NULL;
  2339. reiserfs_warning(super,
  2340. "journal_init_dev: Cannot open '%s': %i",
  2341. jdev_name, result);
  2342. return result;
  2343. }
  2344. set_blocksize(journal->j_dev_bd, super->s_blocksize);
  2345. reiserfs_info(super,
  2346. "journal_init_dev: journal device: %s\n",
  2347. bdevname(journal->j_dev_bd, b));
  2348. return 0;
  2349. }
  2350. /**
  2351. * When creating/tuning a file system user can assign some
  2352. * journal params within boundaries which depend on the ratio
  2353. * blocksize/standard_blocksize.
  2354. *
  2355. * For blocks >= standard_blocksize transaction size should
  2356. * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
  2357. * then JOURNAL_TRANS_MAX_DEFAULT.
  2358. *
  2359. * For blocks < standard_blocksize these boundaries should be
  2360. * decreased proportionally.
  2361. */
  2362. #define REISERFS_STANDARD_BLKSIZE (4096)
  2363. static int check_advise_trans_params(struct super_block *sb,
  2364. struct reiserfs_journal *journal)
  2365. {
  2366. if (journal->j_trans_max) {
  2367. /* Non-default journal params.
  2368. Do sanity check for them. */
  2369. int ratio = 1;
  2370. if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
  2371. ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
  2372. if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
  2373. journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
  2374. SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
  2375. JOURNAL_MIN_RATIO) {
  2376. reiserfs_warning(sb, "sh-462",
  2377. "bad transaction max size (%u). "
  2378. "FSCK?", journal->j_trans_max);
  2379. return 1;
  2380. }
  2381. if (journal->j_max_batch != (journal->j_trans_max) *
  2382. JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
  2383. reiserfs_warning(sb, "sh-463",
  2384. "bad transaction max batch (%u). "
  2385. "FSCK?", journal->j_max_batch);
  2386. return 1;
  2387. }
  2388. } else {
  2389. /* Default journal params.
  2390. The file system was created by old version
  2391. of mkreiserfs, so some fields contain zeros,
  2392. and we need to advise proper values for them */
  2393. if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
  2394. reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
  2395. sb->s_blocksize);
  2396. return 1;
  2397. }
  2398. journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
  2399. journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
  2400. journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
  2401. }
  2402. return 0;
  2403. }
  2404. /*
  2405. ** must be called once on fs mount. calls journal_read for you
  2406. */
  2407. int journal_init(struct super_block *sb, const char *j_dev_name,
  2408. int old_format, unsigned int commit_max_age)
  2409. {
  2410. int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
  2411. struct buffer_head *bhjh;
  2412. struct reiserfs_super_block *rs;
  2413. struct reiserfs_journal_header *jh;
  2414. struct reiserfs_journal *journal;
  2415. struct reiserfs_journal_list *jl;
  2416. char b[BDEVNAME_SIZE];
  2417. int ret;
  2418. journal = SB_JOURNAL(sb) = vzalloc(sizeof(struct reiserfs_journal));
  2419. if (!journal) {
  2420. reiserfs_warning(sb, "journal-1256",
  2421. "unable to get memory for journal structure");
  2422. return 1;
  2423. }
  2424. INIT_LIST_HEAD(&journal->j_bitmap_nodes);
  2425. INIT_LIST_HEAD(&journal->j_prealloc_list);
  2426. INIT_LIST_HEAD(&journal->j_working_list);
  2427. INIT_LIST_HEAD(&journal->j_journal_list);
  2428. journal->j_persistent_trans = 0;
  2429. if (reiserfs_allocate_list_bitmaps(sb, journal->j_list_bitmap,
  2430. reiserfs_bmap_count(sb)))
  2431. goto free_and_return;
  2432. allocate_bitmap_nodes(sb);
  2433. /* reserved for journal area support */
  2434. SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
  2435. REISERFS_OLD_DISK_OFFSET_IN_BYTES
  2436. / sb->s_blocksize +
  2437. reiserfs_bmap_count(sb) +
  2438. 1 :
  2439. REISERFS_DISK_OFFSET_IN_BYTES /
  2440. sb->s_blocksize + 2);
  2441. /* Sanity check to see is the standard journal fitting within first bitmap
  2442. (actual for small blocksizes) */
  2443. if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
  2444. (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
  2445. SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
  2446. reiserfs_warning(sb, "journal-1393",
  2447. "journal does not fit for area addressed "
  2448. "by first of bitmap blocks. It starts at "
  2449. "%u and its size is %u. Block size %ld",
  2450. SB_JOURNAL_1st_RESERVED_BLOCK(sb),
  2451. SB_ONDISK_JOURNAL_SIZE(sb),
  2452. sb->s_blocksize);
  2453. goto free_and_return;
  2454. }
  2455. if (journal_init_dev(sb, journal, j_dev_name) != 0) {
  2456. reiserfs_warning(sb, "sh-462",
  2457. "unable to initialize jornal device");
  2458. goto free_and_return;
  2459. }
  2460. rs = SB_DISK_SUPER_BLOCK(sb);
  2461. /* read journal header */
  2462. bhjh = journal_bread(sb,
  2463. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  2464. SB_ONDISK_JOURNAL_SIZE(sb));
  2465. if (!bhjh) {
  2466. reiserfs_warning(sb, "sh-459",
  2467. "unable to read journal header");
  2468. goto free_and_return;
  2469. }
  2470. jh = (struct reiserfs_journal_header *)(bhjh->b_data);
  2471. /* make sure that journal matches to the super block */
  2472. if (is_reiserfs_jr(rs)
  2473. && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
  2474. sb_jp_journal_magic(rs))) {
  2475. reiserfs_warning(sb, "sh-460",
  2476. "journal header magic %x (device %s) does "
  2477. "not match to magic found in super block %x",
  2478. jh->jh_journal.jp_journal_magic,
  2479. bdevname(journal->j_dev_bd, b),
  2480. sb_jp_journal_magic(rs));
  2481. brelse(bhjh);
  2482. goto free_and_return;
  2483. }
  2484. journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
  2485. journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
  2486. journal->j_max_commit_age =
  2487. le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
  2488. journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
  2489. if (check_advise_trans_params(sb, journal) != 0)
  2490. goto free_and_return;
  2491. journal->j_default_max_commit_age = journal->j_max_commit_age;
  2492. if (commit_max_age != 0) {
  2493. journal->j_max_commit_age = commit_max_age;
  2494. journal->j_max_trans_age = commit_max_age;
  2495. }
  2496. reiserfs_info(sb, "journal params: device %s, size %u, "
  2497. "journal first block %u, max trans len %u, max batch %u, "
  2498. "max commit age %u, max trans age %u\n",
  2499. bdevname(journal->j_dev_bd, b),
  2500. SB_ONDISK_JOURNAL_SIZE(sb),
  2501. SB_ONDISK_JOURNAL_1st_BLOCK(sb),
  2502. journal->j_trans_max,
  2503. journal->j_max_batch,
  2504. journal->j_max_commit_age, journal->j_max_trans_age);
  2505. brelse(bhjh);
  2506. journal->j_list_bitmap_index = 0;
  2507. journal_list_init(sb);
  2508. memset(journal->j_list_hash_table, 0,
  2509. JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
  2510. INIT_LIST_HEAD(&journal->j_dirty_buffers);
  2511. spin_lock_init(&journal->j_dirty_buffers_lock);
  2512. journal->j_start = 0;
  2513. journal->j_len = 0;
  2514. journal->j_len_alloc = 0;
  2515. atomic_set(&(journal->j_wcount), 0);
  2516. atomic_set(&(journal->j_async_throttle), 0);
  2517. journal->j_bcount = 0;
  2518. journal->j_trans_start_time = 0;
  2519. journal->j_last = NULL;
  2520. journal->j_first = NULL;
  2521. init_waitqueue_head(&(journal->j_join_wait));
  2522. mutex_init(&journal->j_mutex);
  2523. mutex_init(&journal->j_flush_mutex);
  2524. journal->j_trans_id = 10;
  2525. journal->j_mount_id = 10;
  2526. journal->j_state = 0;
  2527. atomic_set(&(journal->j_jlock), 0);
  2528. journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
  2529. journal->j_cnode_free_orig = journal->j_cnode_free_list;
  2530. journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
  2531. journal->j_cnode_used = 0;
  2532. journal->j_must_wait = 0;
  2533. if (journal->j_cnode_free == 0) {
  2534. reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
  2535. "allocation failed (%ld bytes). Journal is "
  2536. "too large for available memory. Usually "
  2537. "this is due to a journal that is too large.",
  2538. sizeof (struct reiserfs_journal_cnode) * num_cnodes);
  2539. goto free_and_return;
  2540. }
  2541. init_journal_hash(sb);
  2542. jl = journal->j_current_jl;
  2543. /*
  2544. * get_list_bitmap() may call flush_commit_list() which
  2545. * requires the lock. Calling flush_commit_list() shouldn't happen
  2546. * this early but I like to be paranoid.
  2547. */
  2548. reiserfs_write_lock(sb);
  2549. jl->j_list_bitmap = get_list_bitmap(sb, jl);
  2550. reiserfs_write_unlock(sb);
  2551. if (!jl->j_list_bitmap) {
  2552. reiserfs_warning(sb, "journal-2005",
  2553. "get_list_bitmap failed for journal list 0");
  2554. goto free_and_return;
  2555. }
  2556. ret = journal_read(sb);
  2557. if (ret < 0) {
  2558. reiserfs_warning(sb, "reiserfs-2006",
  2559. "Replay Failure, unable to mount");
  2560. goto free_and_return;
  2561. }
  2562. reiserfs_mounted_fs_count++;
  2563. if (reiserfs_mounted_fs_count <= 1)
  2564. commit_wq = alloc_workqueue("reiserfs", WQ_MEM_RECLAIM, 0);
  2565. INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
  2566. journal->j_work_sb = sb;
  2567. return 0;
  2568. free_and_return:
  2569. free_journal_ram(sb);
  2570. return 1;
  2571. }
  2572. /*
  2573. ** test for a polite end of the current transaction. Used by file_write, and should
  2574. ** be used by delete to make sure they don't write more than can fit inside a single
  2575. ** transaction
  2576. */
  2577. int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
  2578. int new_alloc)
  2579. {
  2580. struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
  2581. time_t now = get_seconds();
  2582. /* cannot restart while nested */
  2583. BUG_ON(!th->t_trans_id);
  2584. if (th->t_refcount > 1)
  2585. return 0;
  2586. if (journal->j_must_wait > 0 ||
  2587. (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
  2588. atomic_read(&(journal->j_jlock)) ||
  2589. (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
  2590. journal->j_cnode_free < (journal->j_trans_max * 3)) {
  2591. return 1;
  2592. }
  2593. journal->j_len_alloc += new_alloc;
  2594. th->t_blocks_allocated += new_alloc ;
  2595. return 0;
  2596. }
  2597. /* this must be called inside a transaction
  2598. */
  2599. void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
  2600. {
  2601. struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
  2602. BUG_ON(!th->t_trans_id);
  2603. journal->j_must_wait = 1;
  2604. set_bit(J_WRITERS_BLOCKED, &journal->j_state);
  2605. return;
  2606. }
  2607. /* this must be called without a transaction started
  2608. */
  2609. void reiserfs_allow_writes(struct super_block *s)
  2610. {
  2611. struct reiserfs_journal *journal = SB_JOURNAL(s);
  2612. clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
  2613. wake_up(&journal->j_join_wait);
  2614. }
  2615. /* this must be called without a transaction started
  2616. */
  2617. void reiserfs_wait_on_write_block(struct super_block *s)
  2618. {
  2619. struct reiserfs_journal *journal = SB_JOURNAL(s);
  2620. wait_event(journal->j_join_wait,
  2621. !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
  2622. }
  2623. static void queue_log_writer(struct super_block *s)
  2624. {
  2625. wait_queue_t wait;
  2626. struct reiserfs_journal *journal = SB_JOURNAL(s);
  2627. set_bit(J_WRITERS_QUEUED, &journal->j_state);
  2628. /*
  2629. * we don't want to use wait_event here because
  2630. * we only want to wait once.
  2631. */
  2632. init_waitqueue_entry(&wait, current);
  2633. add_wait_queue(&journal->j_join_wait, &wait);
  2634. set_current_state(TASK_UNINTERRUPTIBLE);
  2635. if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
  2636. int depth = reiserfs_write_unlock_nested(s);
  2637. schedule();
  2638. reiserfs_write_lock_nested(s, depth);
  2639. }
  2640. __set_current_state(TASK_RUNNING);
  2641. remove_wait_queue(&journal->j_join_wait, &wait);
  2642. }
  2643. static void wake_queued_writers(struct super_block *s)
  2644. {
  2645. struct reiserfs_journal *journal = SB_JOURNAL(s);
  2646. if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
  2647. wake_up(&journal->j_join_wait);
  2648. }
  2649. static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
  2650. {
  2651. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  2652. unsigned long bcount = journal->j_bcount;
  2653. while (1) {
  2654. int depth;
  2655. depth = reiserfs_write_unlock_nested(sb);
  2656. schedule_timeout_uninterruptible(1);
  2657. reiserfs_write_lock_nested(sb, depth);
  2658. journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
  2659. while ((atomic_read(&journal->j_wcount) > 0 ||
  2660. atomic_read(&journal->j_jlock)) &&
  2661. journal->j_trans_id == trans_id) {
  2662. queue_log_writer(sb);
  2663. }
  2664. if (journal->j_trans_id != trans_id)
  2665. break;
  2666. if (bcount == journal->j_bcount)
  2667. break;
  2668. bcount = journal->j_bcount;
  2669. }
  2670. }
  2671. /* join == true if you must join an existing transaction.
  2672. ** join == false if you can deal with waiting for others to finish
  2673. **
  2674. ** this will block until the transaction is joinable. send the number of blocks you
  2675. ** expect to use in nblocks.
  2676. */
  2677. static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
  2678. struct super_block *sb, unsigned long nblocks,
  2679. int join)
  2680. {
  2681. time_t now = get_seconds();
  2682. unsigned int old_trans_id;
  2683. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  2684. struct reiserfs_transaction_handle myth;
  2685. int sched_count = 0;
  2686. int retval;
  2687. int depth;
  2688. reiserfs_check_lock_depth(sb, "journal_begin");
  2689. BUG_ON(nblocks > journal->j_trans_max);
  2690. PROC_INFO_INC(sb, journal.journal_being);
  2691. /* set here for journal_join */
  2692. th->t_refcount = 1;
  2693. th->t_super = sb;
  2694. relock:
  2695. lock_journal(sb);
  2696. if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
  2697. unlock_journal(sb);
  2698. retval = journal->j_errno;
  2699. goto out_fail;
  2700. }
  2701. journal->j_bcount++;
  2702. if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
  2703. unlock_journal(sb);
  2704. depth = reiserfs_write_unlock_nested(sb);
  2705. reiserfs_wait_on_write_block(sb);
  2706. reiserfs_write_lock_nested(sb, depth);
  2707. PROC_INFO_INC(sb, journal.journal_relock_writers);
  2708. goto relock;
  2709. }
  2710. now = get_seconds();
  2711. /* if there is no room in the journal OR
  2712. ** if this transaction is too old, and we weren't called joinable, wait for it to finish before beginning
  2713. ** we don't sleep if there aren't other writers
  2714. */
  2715. if ((!join && journal->j_must_wait > 0) ||
  2716. (!join
  2717. && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
  2718. || (!join && atomic_read(&journal->j_wcount) > 0
  2719. && journal->j_trans_start_time > 0
  2720. && (now - journal->j_trans_start_time) >
  2721. journal->j_max_trans_age) || (!join
  2722. && atomic_read(&journal->j_jlock))
  2723. || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
  2724. old_trans_id = journal->j_trans_id;
  2725. unlock_journal(sb); /* allow others to finish this transaction */
  2726. if (!join && (journal->j_len_alloc + nblocks + 2) >=
  2727. journal->j_max_batch &&
  2728. ((journal->j_len + nblocks + 2) * 100) <
  2729. (journal->j_len_alloc * 75)) {
  2730. if (atomic_read(&journal->j_wcount) > 10) {
  2731. sched_count++;
  2732. queue_log_writer(sb);
  2733. goto relock;
  2734. }
  2735. }
  2736. /* don't mess with joining the transaction if all we have to do is
  2737. * wait for someone else to do a commit
  2738. */
  2739. if (atomic_read(&journal->j_jlock)) {
  2740. while (journal->j_trans_id == old_trans_id &&
  2741. atomic_read(&journal->j_jlock)) {
  2742. queue_log_writer(sb);
  2743. }
  2744. goto relock;
  2745. }
  2746. retval = journal_join(&myth, sb, 1);
  2747. if (retval)
  2748. goto out_fail;
  2749. /* someone might have ended the transaction while we joined */
  2750. if (old_trans_id != journal->j_trans_id) {
  2751. retval = do_journal_end(&myth, sb, 1, 0);
  2752. } else {
  2753. retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
  2754. }
  2755. if (retval)
  2756. goto out_fail;
  2757. PROC_INFO_INC(sb, journal.journal_relock_wcount);
  2758. goto relock;
  2759. }
  2760. /* we are the first writer, set trans_id */
  2761. if (journal->j_trans_start_time == 0) {
  2762. journal->j_trans_start_time = get_seconds();
  2763. }
  2764. atomic_inc(&(journal->j_wcount));
  2765. journal->j_len_alloc += nblocks;
  2766. th->t_blocks_logged = 0;
  2767. th->t_blocks_allocated = nblocks;
  2768. th->t_trans_id = journal->j_trans_id;
  2769. unlock_journal(sb);
  2770. INIT_LIST_HEAD(&th->t_list);
  2771. return 0;
  2772. out_fail:
  2773. memset(th, 0, sizeof(*th));
  2774. /* Re-set th->t_super, so we can properly keep track of how many
  2775. * persistent transactions there are. We need to do this so if this
  2776. * call is part of a failed restart_transaction, we can free it later */
  2777. th->t_super = sb;
  2778. return retval;
  2779. }
  2780. struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
  2781. super_block
  2782. *s,
  2783. int nblocks)
  2784. {
  2785. int ret;
  2786. struct reiserfs_transaction_handle *th;
  2787. /* if we're nesting into an existing transaction. It will be
  2788. ** persistent on its own
  2789. */
  2790. if (reiserfs_transaction_running(s)) {
  2791. th = current->journal_info;
  2792. th->t_refcount++;
  2793. BUG_ON(th->t_refcount < 2);
  2794. return th;
  2795. }
  2796. th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
  2797. if (!th)
  2798. return NULL;
  2799. ret = journal_begin(th, s, nblocks);
  2800. if (ret) {
  2801. kfree(th);
  2802. return NULL;
  2803. }
  2804. SB_JOURNAL(s)->j_persistent_trans++;
  2805. return th;
  2806. }
  2807. int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
  2808. {
  2809. struct super_block *s = th->t_super;
  2810. int ret = 0;
  2811. if (th->t_trans_id)
  2812. ret = journal_end(th, th->t_super, th->t_blocks_allocated);
  2813. else
  2814. ret = -EIO;
  2815. if (th->t_refcount == 0) {
  2816. SB_JOURNAL(s)->j_persistent_trans--;
  2817. kfree(th);
  2818. }
  2819. return ret;
  2820. }
  2821. static int journal_join(struct reiserfs_transaction_handle *th,
  2822. struct super_block *sb, unsigned long nblocks)
  2823. {
  2824. struct reiserfs_transaction_handle *cur_th = current->journal_info;
  2825. /* this keeps do_journal_end from NULLing out the current->journal_info
  2826. ** pointer
  2827. */
  2828. th->t_handle_save = cur_th;
  2829. BUG_ON(cur_th && cur_th->t_refcount > 1);
  2830. return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
  2831. }
  2832. int journal_join_abort(struct reiserfs_transaction_handle *th,
  2833. struct super_block *sb, unsigned long nblocks)
  2834. {
  2835. struct reiserfs_transaction_handle *cur_th = current->journal_info;
  2836. /* this keeps do_journal_end from NULLing out the current->journal_info
  2837. ** pointer
  2838. */
  2839. th->t_handle_save = cur_th;
  2840. BUG_ON(cur_th && cur_th->t_refcount > 1);
  2841. return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
  2842. }
  2843. int journal_begin(struct reiserfs_transaction_handle *th,
  2844. struct super_block *sb, unsigned long nblocks)
  2845. {
  2846. struct reiserfs_transaction_handle *cur_th = current->journal_info;
  2847. int ret;
  2848. th->t_handle_save = NULL;
  2849. if (cur_th) {
  2850. /* we are nesting into the current transaction */
  2851. if (cur_th->t_super == sb) {
  2852. BUG_ON(!cur_th->t_refcount);
  2853. cur_th->t_refcount++;
  2854. memcpy(th, cur_th, sizeof(*th));
  2855. if (th->t_refcount <= 1)
  2856. reiserfs_warning(sb, "reiserfs-2005",
  2857. "BAD: refcount <= 1, but "
  2858. "journal_info != 0");
  2859. return 0;
  2860. } else {
  2861. /* we've ended up with a handle from a different filesystem.
  2862. ** save it and restore on journal_end. This should never
  2863. ** really happen...
  2864. */
  2865. reiserfs_warning(sb, "clm-2100",
  2866. "nesting info a different FS");
  2867. th->t_handle_save = current->journal_info;
  2868. current->journal_info = th;
  2869. }
  2870. } else {
  2871. current->journal_info = th;
  2872. }
  2873. ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
  2874. BUG_ON(current->journal_info != th);
  2875. /* I guess this boils down to being the reciprocal of clm-2100 above.
  2876. * If do_journal_begin_r fails, we need to put it back, since journal_end
  2877. * won't be called to do it. */
  2878. if (ret)
  2879. current->journal_info = th->t_handle_save;
  2880. else
  2881. BUG_ON(!th->t_refcount);
  2882. return ret;
  2883. }
  2884. /*
  2885. ** puts bh into the current transaction. If it was already there, reorders removes the
  2886. ** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
  2887. **
  2888. ** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
  2889. ** transaction is committed.
  2890. **
  2891. ** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
  2892. */
  2893. int journal_mark_dirty(struct reiserfs_transaction_handle *th,
  2894. struct super_block *sb, struct buffer_head *bh)
  2895. {
  2896. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  2897. struct reiserfs_journal_cnode *cn = NULL;
  2898. int count_already_incd = 0;
  2899. int prepared = 0;
  2900. BUG_ON(!th->t_trans_id);
  2901. PROC_INFO_INC(sb, journal.mark_dirty);
  2902. if (th->t_trans_id != journal->j_trans_id) {
  2903. reiserfs_panic(th->t_super, "journal-1577",
  2904. "handle trans id %ld != current trans id %ld",
  2905. th->t_trans_id, journal->j_trans_id);
  2906. }
  2907. prepared = test_clear_buffer_journal_prepared(bh);
  2908. clear_buffer_journal_restore_dirty(bh);
  2909. /* already in this transaction, we are done */
  2910. if (buffer_journaled(bh)) {
  2911. PROC_INFO_INC(sb, journal.mark_dirty_already);
  2912. return 0;
  2913. }
  2914. /* this must be turned into a panic instead of a warning. We can't allow
  2915. ** a dirty or journal_dirty or locked buffer to be logged, as some changes
  2916. ** could get to disk too early. NOT GOOD.
  2917. */
  2918. if (!prepared || buffer_dirty(bh)) {
  2919. reiserfs_warning(sb, "journal-1777",
  2920. "buffer %llu bad state "
  2921. "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
  2922. (unsigned long long)bh->b_blocknr,
  2923. prepared ? ' ' : '!',
  2924. buffer_locked(bh) ? ' ' : '!',
  2925. buffer_dirty(bh) ? ' ' : '!',
  2926. buffer_journal_dirty(bh) ? ' ' : '!');
  2927. }
  2928. if (atomic_read(&(journal->j_wcount)) <= 0) {
  2929. reiserfs_warning(sb, "journal-1409",
  2930. "returning because j_wcount was %d",
  2931. atomic_read(&(journal->j_wcount)));
  2932. return 1;
  2933. }
  2934. /* this error means I've screwed up, and we've overflowed the transaction.
  2935. ** Nothing can be done here, except make the FS readonly or panic.
  2936. */
  2937. if (journal->j_len >= journal->j_trans_max) {
  2938. reiserfs_panic(th->t_super, "journal-1413",
  2939. "j_len (%lu) is too big",
  2940. journal->j_len);
  2941. }
  2942. if (buffer_journal_dirty(bh)) {
  2943. count_already_incd = 1;
  2944. PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
  2945. clear_buffer_journal_dirty(bh);
  2946. }
  2947. if (journal->j_len > journal->j_len_alloc) {
  2948. journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
  2949. }
  2950. set_buffer_journaled(bh);
  2951. /* now put this guy on the end */
  2952. if (!cn) {
  2953. cn = get_cnode(sb);
  2954. if (!cn) {
  2955. reiserfs_panic(sb, "journal-4", "get_cnode failed!");
  2956. }
  2957. if (th->t_blocks_logged == th->t_blocks_allocated) {
  2958. th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
  2959. journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
  2960. }
  2961. th->t_blocks_logged++;
  2962. journal->j_len++;
  2963. cn->bh = bh;
  2964. cn->blocknr = bh->b_blocknr;
  2965. cn->sb = sb;
  2966. cn->jlist = NULL;
  2967. insert_journal_hash(journal->j_hash_table, cn);
  2968. if (!count_already_incd) {
  2969. get_bh(bh);
  2970. }
  2971. }
  2972. cn->next = NULL;
  2973. cn->prev = journal->j_last;
  2974. cn->bh = bh;
  2975. if (journal->j_last) {
  2976. journal->j_last->next = cn;
  2977. journal->j_last = cn;
  2978. } else {
  2979. journal->j_first = cn;
  2980. journal->j_last = cn;
  2981. }
  2982. reiserfs_schedule_old_flush(sb);
  2983. return 0;
  2984. }
  2985. int journal_end(struct reiserfs_transaction_handle *th,
  2986. struct super_block *sb, unsigned long nblocks)
  2987. {
  2988. if (!current->journal_info && th->t_refcount > 1)
  2989. reiserfs_warning(sb, "REISER-NESTING",
  2990. "th NULL, refcount %d", th->t_refcount);
  2991. if (!th->t_trans_id) {
  2992. WARN_ON(1);
  2993. return -EIO;
  2994. }
  2995. th->t_refcount--;
  2996. if (th->t_refcount > 0) {
  2997. struct reiserfs_transaction_handle *cur_th =
  2998. current->journal_info;
  2999. /* we aren't allowed to close a nested transaction on a different
  3000. ** filesystem from the one in the task struct
  3001. */
  3002. BUG_ON(cur_th->t_super != th->t_super);
  3003. if (th != cur_th) {
  3004. memcpy(current->journal_info, th, sizeof(*th));
  3005. th->t_trans_id = 0;
  3006. }
  3007. return 0;
  3008. } else {
  3009. return do_journal_end(th, sb, nblocks, 0);
  3010. }
  3011. }
  3012. /* removes from the current transaction, relsing and descrementing any counters.
  3013. ** also files the removed buffer directly onto the clean list
  3014. **
  3015. ** called by journal_mark_freed when a block has been deleted
  3016. **
  3017. ** returns 1 if it cleaned and relsed the buffer. 0 otherwise
  3018. */
  3019. static int remove_from_transaction(struct super_block *sb,
  3020. b_blocknr_t blocknr, int already_cleaned)
  3021. {
  3022. struct buffer_head *bh;
  3023. struct reiserfs_journal_cnode *cn;
  3024. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3025. int ret = 0;
  3026. cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
  3027. if (!cn || !cn->bh) {
  3028. return ret;
  3029. }
  3030. bh = cn->bh;
  3031. if (cn->prev) {
  3032. cn->prev->next = cn->next;
  3033. }
  3034. if (cn->next) {
  3035. cn->next->prev = cn->prev;
  3036. }
  3037. if (cn == journal->j_first) {
  3038. journal->j_first = cn->next;
  3039. }
  3040. if (cn == journal->j_last) {
  3041. journal->j_last = cn->prev;
  3042. }
  3043. if (bh)
  3044. remove_journal_hash(sb, journal->j_hash_table, NULL,
  3045. bh->b_blocknr, 0);
  3046. clear_buffer_journaled(bh); /* don't log this one */
  3047. if (!already_cleaned) {
  3048. clear_buffer_journal_dirty(bh);
  3049. clear_buffer_dirty(bh);
  3050. clear_buffer_journal_test(bh);
  3051. put_bh(bh);
  3052. if (atomic_read(&(bh->b_count)) < 0) {
  3053. reiserfs_warning(sb, "journal-1752",
  3054. "b_count < 0");
  3055. }
  3056. ret = 1;
  3057. }
  3058. journal->j_len--;
  3059. journal->j_len_alloc--;
  3060. free_cnode(sb, cn);
  3061. return ret;
  3062. }
  3063. /*
  3064. ** for any cnode in a journal list, it can only be dirtied of all the
  3065. ** transactions that include it are committed to disk.
  3066. ** this checks through each transaction, and returns 1 if you are allowed to dirty,
  3067. ** and 0 if you aren't
  3068. **
  3069. ** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
  3070. ** blocks for a given transaction on disk
  3071. **
  3072. */
  3073. static int can_dirty(struct reiserfs_journal_cnode *cn)
  3074. {
  3075. struct super_block *sb = cn->sb;
  3076. b_blocknr_t blocknr = cn->blocknr;
  3077. struct reiserfs_journal_cnode *cur = cn->hprev;
  3078. int can_dirty = 1;
  3079. /* first test hprev. These are all newer than cn, so any node here
  3080. ** with the same block number and dev means this node can't be sent
  3081. ** to disk right now.
  3082. */
  3083. while (cur && can_dirty) {
  3084. if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
  3085. cur->blocknr == blocknr) {
  3086. can_dirty = 0;
  3087. }
  3088. cur = cur->hprev;
  3089. }
  3090. /* then test hnext. These are all older than cn. As long as they
  3091. ** are committed to the log, it is safe to write cn to disk
  3092. */
  3093. cur = cn->hnext;
  3094. while (cur && can_dirty) {
  3095. if (cur->jlist && cur->jlist->j_len > 0 &&
  3096. atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
  3097. cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
  3098. can_dirty = 0;
  3099. }
  3100. cur = cur->hnext;
  3101. }
  3102. return can_dirty;
  3103. }
  3104. /* syncs the commit blocks, but does not force the real buffers to disk
  3105. ** will wait until the current transaction is done/committed before returning
  3106. */
  3107. int journal_end_sync(struct reiserfs_transaction_handle *th,
  3108. struct super_block *sb, unsigned long nblocks)
  3109. {
  3110. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3111. BUG_ON(!th->t_trans_id);
  3112. /* you can sync while nested, very, very bad */
  3113. BUG_ON(th->t_refcount > 1);
  3114. if (journal->j_len == 0) {
  3115. reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
  3116. 1);
  3117. journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
  3118. }
  3119. return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
  3120. }
  3121. /*
  3122. ** writeback the pending async commits to disk
  3123. */
  3124. static void flush_async_commits(struct work_struct *work)
  3125. {
  3126. struct reiserfs_journal *journal =
  3127. container_of(work, struct reiserfs_journal, j_work.work);
  3128. struct super_block *sb = journal->j_work_sb;
  3129. struct reiserfs_journal_list *jl;
  3130. struct list_head *entry;
  3131. reiserfs_write_lock(sb);
  3132. if (!list_empty(&journal->j_journal_list)) {
  3133. /* last entry is the youngest, commit it and you get everything */
  3134. entry = journal->j_journal_list.prev;
  3135. jl = JOURNAL_LIST_ENTRY(entry);
  3136. flush_commit_list(sb, jl, 1);
  3137. }
  3138. reiserfs_write_unlock(sb);
  3139. }
  3140. /*
  3141. ** flushes any old transactions to disk
  3142. ** ends the current transaction if it is too old
  3143. */
  3144. void reiserfs_flush_old_commits(struct super_block *sb)
  3145. {
  3146. time_t now;
  3147. struct reiserfs_transaction_handle th;
  3148. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3149. now = get_seconds();
  3150. /* safety check so we don't flush while we are replaying the log during
  3151. * mount
  3152. */
  3153. if (list_empty(&journal->j_journal_list))
  3154. return;
  3155. /* check the current transaction. If there are no writers, and it is
  3156. * too old, finish it, and force the commit blocks to disk
  3157. */
  3158. if (atomic_read(&journal->j_wcount) <= 0 &&
  3159. journal->j_trans_start_time > 0 &&
  3160. journal->j_len > 0 &&
  3161. (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
  3162. if (!journal_join(&th, sb, 1)) {
  3163. reiserfs_prepare_for_journal(sb,
  3164. SB_BUFFER_WITH_SB(sb),
  3165. 1);
  3166. journal_mark_dirty(&th, sb,
  3167. SB_BUFFER_WITH_SB(sb));
  3168. /* we're only being called from kreiserfsd, it makes no sense to do
  3169. ** an async commit so that kreiserfsd can do it later
  3170. */
  3171. do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
  3172. }
  3173. }
  3174. }
  3175. /*
  3176. ** returns 0 if do_journal_end should return right away, returns 1 if do_journal_end should finish the commit
  3177. **
  3178. ** if the current transaction is too old, but still has writers, this will wait on j_join_wait until all
  3179. ** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
  3180. ** flushes the commit list and returns 0.
  3181. **
  3182. ** Won't batch when flush or commit_now is set. Also won't batch when others are waiting on j_join_wait.
  3183. **
  3184. ** Note, we can't allow the journal_end to proceed while there are still writers in the log.
  3185. */
  3186. static int check_journal_end(struct reiserfs_transaction_handle *th,
  3187. struct super_block *sb, unsigned long nblocks,
  3188. int flags)
  3189. {
  3190. time_t now;
  3191. int flush = flags & FLUSH_ALL;
  3192. int commit_now = flags & COMMIT_NOW;
  3193. int wait_on_commit = flags & WAIT;
  3194. struct reiserfs_journal_list *jl;
  3195. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3196. BUG_ON(!th->t_trans_id);
  3197. if (th->t_trans_id != journal->j_trans_id) {
  3198. reiserfs_panic(th->t_super, "journal-1577",
  3199. "handle trans id %ld != current trans id %ld",
  3200. th->t_trans_id, journal->j_trans_id);
  3201. }
  3202. journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
  3203. if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
  3204. atomic_dec(&(journal->j_wcount));
  3205. }
  3206. /* BUG, deal with case where j_len is 0, but people previously freed blocks need to be released
  3207. ** will be dealt with by next transaction that actually writes something, but should be taken
  3208. ** care of in this trans
  3209. */
  3210. BUG_ON(journal->j_len == 0);
  3211. /* if wcount > 0, and we are called to with flush or commit_now,
  3212. ** we wait on j_join_wait. We will wake up when the last writer has
  3213. ** finished the transaction, and started it on its way to the disk.
  3214. ** Then, we flush the commit or journal list, and just return 0
  3215. ** because the rest of journal end was already done for this transaction.
  3216. */
  3217. if (atomic_read(&(journal->j_wcount)) > 0) {
  3218. if (flush || commit_now) {
  3219. unsigned trans_id;
  3220. jl = journal->j_current_jl;
  3221. trans_id = jl->j_trans_id;
  3222. if (wait_on_commit)
  3223. jl->j_state |= LIST_COMMIT_PENDING;
  3224. atomic_set(&(journal->j_jlock), 1);
  3225. if (flush) {
  3226. journal->j_next_full_flush = 1;
  3227. }
  3228. unlock_journal(sb);
  3229. /* sleep while the current transaction is still j_jlocked */
  3230. while (journal->j_trans_id == trans_id) {
  3231. if (atomic_read(&journal->j_jlock)) {
  3232. queue_log_writer(sb);
  3233. } else {
  3234. lock_journal(sb);
  3235. if (journal->j_trans_id == trans_id) {
  3236. atomic_set(&(journal->j_jlock),
  3237. 1);
  3238. }
  3239. unlock_journal(sb);
  3240. }
  3241. }
  3242. BUG_ON(journal->j_trans_id == trans_id);
  3243. if (commit_now
  3244. && journal_list_still_alive(sb, trans_id)
  3245. && wait_on_commit) {
  3246. flush_commit_list(sb, jl, 1);
  3247. }
  3248. return 0;
  3249. }
  3250. unlock_journal(sb);
  3251. return 0;
  3252. }
  3253. /* deal with old transactions where we are the last writers */
  3254. now = get_seconds();
  3255. if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
  3256. commit_now = 1;
  3257. journal->j_next_async_flush = 1;
  3258. }
  3259. /* don't batch when someone is waiting on j_join_wait */
  3260. /* don't batch when syncing the commit or flushing the whole trans */
  3261. if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
  3262. && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
  3263. && journal->j_len_alloc < journal->j_max_batch
  3264. && journal->j_cnode_free > (journal->j_trans_max * 3)) {
  3265. journal->j_bcount++;
  3266. unlock_journal(sb);
  3267. return 0;
  3268. }
  3269. if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
  3270. reiserfs_panic(sb, "journal-003",
  3271. "j_start (%ld) is too high",
  3272. journal->j_start);
  3273. }
  3274. return 1;
  3275. }
  3276. /*
  3277. ** Does all the work that makes deleting blocks safe.
  3278. ** when deleting a block mark BH_JNew, just remove it from the current transaction, clean it's buffer_head and move on.
  3279. **
  3280. ** otherwise:
  3281. ** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
  3282. ** before this transaction has finished.
  3283. **
  3284. ** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
  3285. ** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
  3286. ** the block can't be reallocated yet.
  3287. **
  3288. ** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
  3289. */
  3290. int journal_mark_freed(struct reiserfs_transaction_handle *th,
  3291. struct super_block *sb, b_blocknr_t blocknr)
  3292. {
  3293. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3294. struct reiserfs_journal_cnode *cn = NULL;
  3295. struct buffer_head *bh = NULL;
  3296. struct reiserfs_list_bitmap *jb = NULL;
  3297. int cleaned = 0;
  3298. BUG_ON(!th->t_trans_id);
  3299. cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
  3300. if (cn && cn->bh) {
  3301. bh = cn->bh;
  3302. get_bh(bh);
  3303. }
  3304. /* if it is journal new, we just remove it from this transaction */
  3305. if (bh && buffer_journal_new(bh)) {
  3306. clear_buffer_journal_new(bh);
  3307. clear_prepared_bits(bh);
  3308. reiserfs_clean_and_file_buffer(bh);
  3309. cleaned = remove_from_transaction(sb, blocknr, cleaned);
  3310. } else {
  3311. /* set the bit for this block in the journal bitmap for this transaction */
  3312. jb = journal->j_current_jl->j_list_bitmap;
  3313. if (!jb) {
  3314. reiserfs_panic(sb, "journal-1702",
  3315. "journal_list_bitmap is NULL");
  3316. }
  3317. set_bit_in_list_bitmap(sb, blocknr, jb);
  3318. /* Note, the entire while loop is not allowed to schedule. */
  3319. if (bh) {
  3320. clear_prepared_bits(bh);
  3321. reiserfs_clean_and_file_buffer(bh);
  3322. }
  3323. cleaned = remove_from_transaction(sb, blocknr, cleaned);
  3324. /* find all older transactions with this block, make sure they don't try to write it out */
  3325. cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
  3326. blocknr);
  3327. while (cn) {
  3328. if (sb == cn->sb && blocknr == cn->blocknr) {
  3329. set_bit(BLOCK_FREED, &cn->state);
  3330. if (cn->bh) {
  3331. if (!cleaned) {
  3332. /* remove_from_transaction will brelse the buffer if it was
  3333. ** in the current trans
  3334. */
  3335. clear_buffer_journal_dirty(cn->
  3336. bh);
  3337. clear_buffer_dirty(cn->bh);
  3338. clear_buffer_journal_test(cn->
  3339. bh);
  3340. cleaned = 1;
  3341. put_bh(cn->bh);
  3342. if (atomic_read
  3343. (&(cn->bh->b_count)) < 0) {
  3344. reiserfs_warning(sb,
  3345. "journal-2138",
  3346. "cn->bh->b_count < 0");
  3347. }
  3348. }
  3349. if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
  3350. atomic_dec(&
  3351. (cn->jlist->
  3352. j_nonzerolen));
  3353. }
  3354. cn->bh = NULL;
  3355. }
  3356. }
  3357. cn = cn->hnext;
  3358. }
  3359. }
  3360. if (bh)
  3361. release_buffer_page(bh); /* get_hash grabs the buffer */
  3362. return 0;
  3363. }
  3364. void reiserfs_update_inode_transaction(struct inode *inode)
  3365. {
  3366. struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
  3367. REISERFS_I(inode)->i_jl = journal->j_current_jl;
  3368. REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
  3369. }
  3370. /*
  3371. * returns -1 on error, 0 if no commits/barriers were done and 1
  3372. * if a transaction was actually committed and the barrier was done
  3373. */
  3374. static int __commit_trans_jl(struct inode *inode, unsigned long id,
  3375. struct reiserfs_journal_list *jl)
  3376. {
  3377. struct reiserfs_transaction_handle th;
  3378. struct super_block *sb = inode->i_sb;
  3379. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3380. int ret = 0;
  3381. /* is it from the current transaction, or from an unknown transaction? */
  3382. if (id == journal->j_trans_id) {
  3383. jl = journal->j_current_jl;
  3384. /* try to let other writers come in and grow this transaction */
  3385. let_transaction_grow(sb, id);
  3386. if (journal->j_trans_id != id) {
  3387. goto flush_commit_only;
  3388. }
  3389. ret = journal_begin(&th, sb, 1);
  3390. if (ret)
  3391. return ret;
  3392. /* someone might have ended this transaction while we joined */
  3393. if (journal->j_trans_id != id) {
  3394. reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
  3395. 1);
  3396. journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
  3397. ret = journal_end(&th, sb, 1);
  3398. goto flush_commit_only;
  3399. }
  3400. ret = journal_end_sync(&th, sb, 1);
  3401. if (!ret)
  3402. ret = 1;
  3403. } else {
  3404. /* this gets tricky, we have to make sure the journal list in
  3405. * the inode still exists. We know the list is still around
  3406. * if we've got a larger transaction id than the oldest list
  3407. */
  3408. flush_commit_only:
  3409. if (journal_list_still_alive(inode->i_sb, id)) {
  3410. /*
  3411. * we only set ret to 1 when we know for sure
  3412. * the barrier hasn't been started yet on the commit
  3413. * block.
  3414. */
  3415. if (atomic_read(&jl->j_commit_left) > 1)
  3416. ret = 1;
  3417. flush_commit_list(sb, jl, 1);
  3418. if (journal->j_errno)
  3419. ret = journal->j_errno;
  3420. }
  3421. }
  3422. /* otherwise the list is gone, and long since committed */
  3423. return ret;
  3424. }
  3425. int reiserfs_commit_for_inode(struct inode *inode)
  3426. {
  3427. unsigned int id = REISERFS_I(inode)->i_trans_id;
  3428. struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
  3429. /* for the whole inode, assume unset id means it was
  3430. * changed in the current transaction. More conservative
  3431. */
  3432. if (!id || !jl) {
  3433. reiserfs_update_inode_transaction(inode);
  3434. id = REISERFS_I(inode)->i_trans_id;
  3435. /* jl will be updated in __commit_trans_jl */
  3436. }
  3437. return __commit_trans_jl(inode, id, jl);
  3438. }
  3439. void reiserfs_restore_prepared_buffer(struct super_block *sb,
  3440. struct buffer_head *bh)
  3441. {
  3442. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3443. PROC_INFO_INC(sb, journal.restore_prepared);
  3444. if (!bh) {
  3445. return;
  3446. }
  3447. if (test_clear_buffer_journal_restore_dirty(bh) &&
  3448. buffer_journal_dirty(bh)) {
  3449. struct reiserfs_journal_cnode *cn;
  3450. reiserfs_write_lock(sb);
  3451. cn = get_journal_hash_dev(sb,
  3452. journal->j_list_hash_table,
  3453. bh->b_blocknr);
  3454. if (cn && can_dirty(cn)) {
  3455. set_buffer_journal_test(bh);
  3456. mark_buffer_dirty(bh);
  3457. }
  3458. reiserfs_write_unlock(sb);
  3459. }
  3460. clear_buffer_journal_prepared(bh);
  3461. }
  3462. extern struct tree_balance *cur_tb;
  3463. /*
  3464. ** before we can change a metadata block, we have to make sure it won't
  3465. ** be written to disk while we are altering it. So, we must:
  3466. ** clean it
  3467. ** wait on it.
  3468. **
  3469. */
  3470. int reiserfs_prepare_for_journal(struct super_block *sb,
  3471. struct buffer_head *bh, int wait)
  3472. {
  3473. PROC_INFO_INC(sb, journal.prepare);
  3474. if (!trylock_buffer(bh)) {
  3475. if (!wait)
  3476. return 0;
  3477. lock_buffer(bh);
  3478. }
  3479. set_buffer_journal_prepared(bh);
  3480. if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
  3481. clear_buffer_journal_test(bh);
  3482. set_buffer_journal_restore_dirty(bh);
  3483. }
  3484. unlock_buffer(bh);
  3485. return 1;
  3486. }
  3487. /*
  3488. ** long and ugly. If flush, will not return until all commit
  3489. ** blocks and all real buffers in the trans are on disk.
  3490. ** If no_async, won't return until all commit blocks are on disk.
  3491. **
  3492. ** keep reading, there are comments as you go along
  3493. **
  3494. ** If the journal is aborted, we just clean up. Things like flushing
  3495. ** journal lists, etc just won't happen.
  3496. */
  3497. static int do_journal_end(struct reiserfs_transaction_handle *th,
  3498. struct super_block *sb, unsigned long nblocks,
  3499. int flags)
  3500. {
  3501. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3502. struct reiserfs_journal_cnode *cn, *next, *jl_cn;
  3503. struct reiserfs_journal_cnode *last_cn = NULL;
  3504. struct reiserfs_journal_desc *desc;
  3505. struct reiserfs_journal_commit *commit;
  3506. struct buffer_head *c_bh; /* commit bh */
  3507. struct buffer_head *d_bh; /* desc bh */
  3508. int cur_write_start = 0; /* start index of current log write */
  3509. int old_start;
  3510. int i;
  3511. int flush;
  3512. int wait_on_commit;
  3513. struct reiserfs_journal_list *jl, *temp_jl;
  3514. struct list_head *entry, *safe;
  3515. unsigned long jindex;
  3516. unsigned int commit_trans_id;
  3517. int trans_half;
  3518. int depth;
  3519. BUG_ON(th->t_refcount > 1);
  3520. BUG_ON(!th->t_trans_id);
  3521. /* protect flush_older_commits from doing mistakes if the
  3522. transaction ID counter gets overflowed. */
  3523. if (th->t_trans_id == ~0U)
  3524. flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
  3525. flush = flags & FLUSH_ALL;
  3526. wait_on_commit = flags & WAIT;
  3527. current->journal_info = th->t_handle_save;
  3528. reiserfs_check_lock_depth(sb, "journal end");
  3529. if (journal->j_len == 0) {
  3530. reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
  3531. 1);
  3532. journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
  3533. }
  3534. lock_journal(sb);
  3535. if (journal->j_next_full_flush) {
  3536. flags |= FLUSH_ALL;
  3537. flush = 1;
  3538. }
  3539. if (journal->j_next_async_flush) {
  3540. flags |= COMMIT_NOW | WAIT;
  3541. wait_on_commit = 1;
  3542. }
  3543. /* check_journal_end locks the journal, and unlocks if it does not return 1
  3544. ** it tells us if we should continue with the journal_end, or just return
  3545. */
  3546. if (!check_journal_end(th, sb, nblocks, flags)) {
  3547. reiserfs_schedule_old_flush(sb);
  3548. wake_queued_writers(sb);
  3549. reiserfs_async_progress_wait(sb);
  3550. goto out;
  3551. }
  3552. /* check_journal_end might set these, check again */
  3553. if (journal->j_next_full_flush) {
  3554. flush = 1;
  3555. }
  3556. /*
  3557. ** j must wait means we have to flush the log blocks, and the real blocks for
  3558. ** this transaction
  3559. */
  3560. if (journal->j_must_wait > 0) {
  3561. flush = 1;
  3562. }
  3563. #ifdef REISERFS_PREALLOCATE
  3564. /* quota ops might need to nest, setup the journal_info pointer for them
  3565. * and raise the refcount so that it is > 0. */
  3566. current->journal_info = th;
  3567. th->t_refcount++;
  3568. reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
  3569. * the transaction */
  3570. th->t_refcount--;
  3571. current->journal_info = th->t_handle_save;
  3572. #endif
  3573. /* setup description block */
  3574. d_bh =
  3575. journal_getblk(sb,
  3576. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  3577. journal->j_start);
  3578. set_buffer_uptodate(d_bh);
  3579. desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
  3580. memset(d_bh->b_data, 0, d_bh->b_size);
  3581. memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
  3582. set_desc_trans_id(desc, journal->j_trans_id);
  3583. /* setup commit block. Don't write (keep it clean too) this one until after everyone else is written */
  3584. c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  3585. ((journal->j_start + journal->j_len +
  3586. 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
  3587. commit = (struct reiserfs_journal_commit *)c_bh->b_data;
  3588. memset(c_bh->b_data, 0, c_bh->b_size);
  3589. set_commit_trans_id(commit, journal->j_trans_id);
  3590. set_buffer_uptodate(c_bh);
  3591. /* init this journal list */
  3592. jl = journal->j_current_jl;
  3593. /* we lock the commit before doing anything because
  3594. * we want to make sure nobody tries to run flush_commit_list until
  3595. * the new transaction is fully setup, and we've already flushed the
  3596. * ordered bh list
  3597. */
  3598. reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
  3599. /* save the transaction id in case we need to commit it later */
  3600. commit_trans_id = jl->j_trans_id;
  3601. atomic_set(&jl->j_older_commits_done, 0);
  3602. jl->j_trans_id = journal->j_trans_id;
  3603. jl->j_timestamp = journal->j_trans_start_time;
  3604. jl->j_commit_bh = c_bh;
  3605. jl->j_start = journal->j_start;
  3606. jl->j_len = journal->j_len;
  3607. atomic_set(&jl->j_nonzerolen, journal->j_len);
  3608. atomic_set(&jl->j_commit_left, journal->j_len + 2);
  3609. jl->j_realblock = NULL;
  3610. /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
  3611. ** for each real block, add it to the journal list hash,
  3612. ** copy into real block index array in the commit or desc block
  3613. */
  3614. trans_half = journal_trans_half(sb->s_blocksize);
  3615. for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
  3616. if (buffer_journaled(cn->bh)) {
  3617. jl_cn = get_cnode(sb);
  3618. if (!jl_cn) {
  3619. reiserfs_panic(sb, "journal-1676",
  3620. "get_cnode returned NULL");
  3621. }
  3622. if (i == 0) {
  3623. jl->j_realblock = jl_cn;
  3624. }
  3625. jl_cn->prev = last_cn;
  3626. jl_cn->next = NULL;
  3627. if (last_cn) {
  3628. last_cn->next = jl_cn;
  3629. }
  3630. last_cn = jl_cn;
  3631. /* make sure the block we are trying to log is not a block
  3632. of journal or reserved area */
  3633. if (is_block_in_log_or_reserved_area
  3634. (sb, cn->bh->b_blocknr)) {
  3635. reiserfs_panic(sb, "journal-2332",
  3636. "Trying to log block %lu, "
  3637. "which is a log block",
  3638. cn->bh->b_blocknr);
  3639. }
  3640. jl_cn->blocknr = cn->bh->b_blocknr;
  3641. jl_cn->state = 0;
  3642. jl_cn->sb = sb;
  3643. jl_cn->bh = cn->bh;
  3644. jl_cn->jlist = jl;
  3645. insert_journal_hash(journal->j_list_hash_table, jl_cn);
  3646. if (i < trans_half) {
  3647. desc->j_realblock[i] =
  3648. cpu_to_le32(cn->bh->b_blocknr);
  3649. } else {
  3650. commit->j_realblock[i - trans_half] =
  3651. cpu_to_le32(cn->bh->b_blocknr);
  3652. }
  3653. } else {
  3654. i--;
  3655. }
  3656. }
  3657. set_desc_trans_len(desc, journal->j_len);
  3658. set_desc_mount_id(desc, journal->j_mount_id);
  3659. set_desc_trans_id(desc, journal->j_trans_id);
  3660. set_commit_trans_len(commit, journal->j_len);
  3661. /* special check in case all buffers in the journal were marked for not logging */
  3662. BUG_ON(journal->j_len == 0);
  3663. /* we're about to dirty all the log blocks, mark the description block
  3664. * dirty now too. Don't mark the commit block dirty until all the
  3665. * others are on disk
  3666. */
  3667. mark_buffer_dirty(d_bh);
  3668. /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
  3669. cur_write_start = journal->j_start;
  3670. cn = journal->j_first;
  3671. jindex = 1; /* start at one so we don't get the desc again */
  3672. while (cn) {
  3673. clear_buffer_journal_new(cn->bh);
  3674. /* copy all the real blocks into log area. dirty log blocks */
  3675. if (buffer_journaled(cn->bh)) {
  3676. struct buffer_head *tmp_bh;
  3677. char *addr;
  3678. struct page *page;
  3679. tmp_bh =
  3680. journal_getblk(sb,
  3681. SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
  3682. ((cur_write_start +
  3683. jindex) %
  3684. SB_ONDISK_JOURNAL_SIZE(sb)));
  3685. set_buffer_uptodate(tmp_bh);
  3686. page = cn->bh->b_page;
  3687. addr = kmap(page);
  3688. memcpy(tmp_bh->b_data,
  3689. addr + offset_in_page(cn->bh->b_data),
  3690. cn->bh->b_size);
  3691. kunmap(page);
  3692. mark_buffer_dirty(tmp_bh);
  3693. jindex++;
  3694. set_buffer_journal_dirty(cn->bh);
  3695. clear_buffer_journaled(cn->bh);
  3696. } else {
  3697. /* JDirty cleared sometime during transaction. don't log this one */
  3698. reiserfs_warning(sb, "journal-2048",
  3699. "BAD, buffer in journal hash, "
  3700. "but not JDirty!");
  3701. brelse(cn->bh);
  3702. }
  3703. next = cn->next;
  3704. free_cnode(sb, cn);
  3705. cn = next;
  3706. reiserfs_cond_resched(sb);
  3707. }
  3708. /* we are done with both the c_bh and d_bh, but
  3709. ** c_bh must be written after all other commit blocks,
  3710. ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
  3711. */
  3712. journal->j_current_jl = alloc_journal_list(sb);
  3713. /* now it is safe to insert this transaction on the main list */
  3714. list_add_tail(&jl->j_list, &journal->j_journal_list);
  3715. list_add_tail(&jl->j_working_list, &journal->j_working_list);
  3716. journal->j_num_work_lists++;
  3717. /* reset journal values for the next transaction */
  3718. old_start = journal->j_start;
  3719. journal->j_start =
  3720. (journal->j_start + journal->j_len +
  3721. 2) % SB_ONDISK_JOURNAL_SIZE(sb);
  3722. atomic_set(&(journal->j_wcount), 0);
  3723. journal->j_bcount = 0;
  3724. journal->j_last = NULL;
  3725. journal->j_first = NULL;
  3726. journal->j_len = 0;
  3727. journal->j_trans_start_time = 0;
  3728. /* check for trans_id overflow */
  3729. if (++journal->j_trans_id == 0)
  3730. journal->j_trans_id = 10;
  3731. journal->j_current_jl->j_trans_id = journal->j_trans_id;
  3732. journal->j_must_wait = 0;
  3733. journal->j_len_alloc = 0;
  3734. journal->j_next_full_flush = 0;
  3735. journal->j_next_async_flush = 0;
  3736. init_journal_hash(sb);
  3737. // make sure reiserfs_add_jh sees the new current_jl before we
  3738. // write out the tails
  3739. smp_mb();
  3740. /* tail conversion targets have to hit the disk before we end the
  3741. * transaction. Otherwise a later transaction might repack the tail
  3742. * before this transaction commits, leaving the data block unflushed and
  3743. * clean, if we crash before the later transaction commits, the data block
  3744. * is lost.
  3745. */
  3746. if (!list_empty(&jl->j_tail_bh_list)) {
  3747. depth = reiserfs_write_unlock_nested(sb);
  3748. write_ordered_buffers(&journal->j_dirty_buffers_lock,
  3749. journal, jl, &jl->j_tail_bh_list);
  3750. reiserfs_write_lock_nested(sb, depth);
  3751. }
  3752. BUG_ON(!list_empty(&jl->j_tail_bh_list));
  3753. mutex_unlock(&jl->j_commit_mutex);
  3754. /* honor the flush wishes from the caller, simple commits can
  3755. ** be done outside the journal lock, they are done below
  3756. **
  3757. ** if we don't flush the commit list right now, we put it into
  3758. ** the work queue so the people waiting on the async progress work
  3759. ** queue don't wait for this proc to flush journal lists and such.
  3760. */
  3761. if (flush) {
  3762. flush_commit_list(sb, jl, 1);
  3763. flush_journal_list(sb, jl, 1);
  3764. } else if (!(jl->j_state & LIST_COMMIT_PENDING))
  3765. queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
  3766. /* if the next transaction has any chance of wrapping, flush
  3767. ** transactions that might get overwritten. If any journal lists are very
  3768. ** old flush them as well.
  3769. */
  3770. first_jl:
  3771. list_for_each_safe(entry, safe, &journal->j_journal_list) {
  3772. temp_jl = JOURNAL_LIST_ENTRY(entry);
  3773. if (journal->j_start <= temp_jl->j_start) {
  3774. if ((journal->j_start + journal->j_trans_max + 1) >=
  3775. temp_jl->j_start) {
  3776. flush_used_journal_lists(sb, temp_jl);
  3777. goto first_jl;
  3778. } else if ((journal->j_start +
  3779. journal->j_trans_max + 1) <
  3780. SB_ONDISK_JOURNAL_SIZE(sb)) {
  3781. /* if we don't cross into the next transaction and we don't
  3782. * wrap, there is no way we can overlap any later transactions
  3783. * break now
  3784. */
  3785. break;
  3786. }
  3787. } else if ((journal->j_start +
  3788. journal->j_trans_max + 1) >
  3789. SB_ONDISK_JOURNAL_SIZE(sb)) {
  3790. if (((journal->j_start + journal->j_trans_max + 1) %
  3791. SB_ONDISK_JOURNAL_SIZE(sb)) >=
  3792. temp_jl->j_start) {
  3793. flush_used_journal_lists(sb, temp_jl);
  3794. goto first_jl;
  3795. } else {
  3796. /* we don't overlap anything from out start to the end of the
  3797. * log, and our wrapped portion doesn't overlap anything at
  3798. * the start of the log. We can break
  3799. */
  3800. break;
  3801. }
  3802. }
  3803. }
  3804. journal->j_current_jl->j_list_bitmap =
  3805. get_list_bitmap(sb, journal->j_current_jl);
  3806. if (!(journal->j_current_jl->j_list_bitmap)) {
  3807. reiserfs_panic(sb, "journal-1996",
  3808. "could not get a list bitmap");
  3809. }
  3810. atomic_set(&(journal->j_jlock), 0);
  3811. unlock_journal(sb);
  3812. /* wake up any body waiting to join. */
  3813. clear_bit(J_WRITERS_QUEUED, &journal->j_state);
  3814. wake_up(&(journal->j_join_wait));
  3815. if (!flush && wait_on_commit &&
  3816. journal_list_still_alive(sb, commit_trans_id)) {
  3817. flush_commit_list(sb, jl, 1);
  3818. }
  3819. out:
  3820. reiserfs_check_lock_depth(sb, "journal end2");
  3821. memset(th, 0, sizeof(*th));
  3822. /* Re-set th->t_super, so we can properly keep track of how many
  3823. * persistent transactions there are. We need to do this so if this
  3824. * call is part of a failed restart_transaction, we can free it later */
  3825. th->t_super = sb;
  3826. return journal->j_errno;
  3827. }
  3828. /* Send the file system read only and refuse new transactions */
  3829. void reiserfs_abort_journal(struct super_block *sb, int errno)
  3830. {
  3831. struct reiserfs_journal *journal = SB_JOURNAL(sb);
  3832. if (test_bit(J_ABORTED, &journal->j_state))
  3833. return;
  3834. if (!journal->j_errno)
  3835. journal->j_errno = errno;
  3836. sb->s_flags |= MS_RDONLY;
  3837. set_bit(J_ABORTED, &journal->j_state);
  3838. #ifdef CONFIG_REISERFS_CHECK
  3839. dump_stack();
  3840. #endif
  3841. }