journal.c 122 KB

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