journal.c 122 KB

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