journal.c 123 KB

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