journal.c 122 KB

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