journal.c 122 KB

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