journal.c 122 KB

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