journal.c 122 KB

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