mballoc.c 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872
  1. /*
  2. * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
  3. * Written by Alex Tomas <alex@clusterfs.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public Licens
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
  17. */
  18. /*
  19. * mballoc.c contains the multiblocks allocation routines
  20. */
  21. #include "mballoc.h"
  22. #include <linux/debugfs.h>
  23. #include <linux/slab.h>
  24. #include <trace/events/ext4.h>
  25. /*
  26. * MUSTDO:
  27. * - test ext4_ext_search_left() and ext4_ext_search_right()
  28. * - search for metadata in few groups
  29. *
  30. * TODO v4:
  31. * - normalization should take into account whether file is still open
  32. * - discard preallocations if no free space left (policy?)
  33. * - don't normalize tails
  34. * - quota
  35. * - reservation for superuser
  36. *
  37. * TODO v3:
  38. * - bitmap read-ahead (proposed by Oleg Drokin aka green)
  39. * - track min/max extents in each group for better group selection
  40. * - mb_mark_used() may allocate chunk right after splitting buddy
  41. * - tree of groups sorted by number of free blocks
  42. * - error handling
  43. */
  44. /*
  45. * The allocation request involve request for multiple number of blocks
  46. * near to the goal(block) value specified.
  47. *
  48. * During initialization phase of the allocator we decide to use the
  49. * group preallocation or inode preallocation depending on the size of
  50. * the file. The size of the file could be the resulting file size we
  51. * would have after allocation, or the current file size, which ever
  52. * is larger. If the size is less than sbi->s_mb_stream_request we
  53. * select to use the group preallocation. The default value of
  54. * s_mb_stream_request is 16 blocks. This can also be tuned via
  55. * /sys/fs/ext4/<partition>/mb_stream_req. The value is represented in
  56. * terms of number of blocks.
  57. *
  58. * The main motivation for having small file use group preallocation is to
  59. * ensure that we have small files closer together on the disk.
  60. *
  61. * First stage the allocator looks at the inode prealloc list,
  62. * ext4_inode_info->i_prealloc_list, which contains list of prealloc
  63. * spaces for this particular inode. The inode prealloc space is
  64. * represented as:
  65. *
  66. * pa_lstart -> the logical start block for this prealloc space
  67. * pa_pstart -> the physical start block for this prealloc space
  68. * pa_len -> length for this prealloc space
  69. * pa_free -> free space available in this prealloc space
  70. *
  71. * The inode preallocation space is used looking at the _logical_ start
  72. * block. If only the logical file block falls within the range of prealloc
  73. * space we will consume the particular prealloc space. This make sure that
  74. * that the we have contiguous physical blocks representing the file blocks
  75. *
  76. * The important thing to be noted in case of inode prealloc space is that
  77. * we don't modify the values associated to inode prealloc space except
  78. * pa_free.
  79. *
  80. * If we are not able to find blocks in the inode prealloc space and if we
  81. * have the group allocation flag set then we look at the locality group
  82. * prealloc space. These are per CPU prealloc list repreasented as
  83. *
  84. * ext4_sb_info.s_locality_groups[smp_processor_id()]
  85. *
  86. * The reason for having a per cpu locality group is to reduce the contention
  87. * between CPUs. It is possible to get scheduled at this point.
  88. *
  89. * The locality group prealloc space is used looking at whether we have
  90. * enough free space (pa_free) withing the prealloc space.
  91. *
  92. * If we can't allocate blocks via inode prealloc or/and locality group
  93. * prealloc then we look at the buddy cache. The buddy cache is represented
  94. * by ext4_sb_info.s_buddy_cache (struct inode) whose file offset gets
  95. * mapped to the buddy and bitmap information regarding different
  96. * groups. The buddy information is attached to buddy cache inode so that
  97. * we can access them through the page cache. The information regarding
  98. * each group is loaded via ext4_mb_load_buddy. The information involve
  99. * block bitmap and buddy information. The information are stored in the
  100. * inode as:
  101. *
  102. * { page }
  103. * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
  104. *
  105. *
  106. * one block each for bitmap and buddy information. So for each group we
  107. * take up 2 blocks. A page can contain blocks_per_page (PAGE_CACHE_SIZE /
  108. * blocksize) blocks. So it can have information regarding groups_per_page
  109. * which is blocks_per_page/2
  110. *
  111. * The buddy cache inode is not stored on disk. The inode is thrown
  112. * away when the filesystem is unmounted.
  113. *
  114. * We look for count number of blocks in the buddy cache. If we were able
  115. * to locate that many free blocks we return with additional information
  116. * regarding rest of the contiguous physical block available
  117. *
  118. * Before allocating blocks via buddy cache we normalize the request
  119. * blocks. This ensure we ask for more blocks that we needed. The extra
  120. * blocks that we get after allocation is added to the respective prealloc
  121. * list. In case of inode preallocation we follow a list of heuristics
  122. * based on file size. This can be found in ext4_mb_normalize_request. If
  123. * we are doing a group prealloc we try to normalize the request to
  124. * sbi->s_mb_group_prealloc. Default value of s_mb_group_prealloc is
  125. * 512 blocks. This can be tuned via
  126. * /sys/fs/ext4/<partition/mb_group_prealloc. The value is represented in
  127. * terms of number of blocks. If we have mounted the file system with -O
  128. * stripe=<value> option the group prealloc request is normalized to the
  129. * stripe value (sbi->s_stripe)
  130. *
  131. * The regular allocator(using the buddy cache) supports few tunables.
  132. *
  133. * /sys/fs/ext4/<partition>/mb_min_to_scan
  134. * /sys/fs/ext4/<partition>/mb_max_to_scan
  135. * /sys/fs/ext4/<partition>/mb_order2_req
  136. *
  137. * The regular allocator uses buddy scan only if the request len is power of
  138. * 2 blocks and the order of allocation is >= sbi->s_mb_order2_reqs. The
  139. * value of s_mb_order2_reqs can be tuned via
  140. * /sys/fs/ext4/<partition>/mb_order2_req. If the request len is equal to
  141. * stripe size (sbi->s_stripe), we try to search for contiguous block in
  142. * stripe size. This should result in better allocation on RAID setups. If
  143. * not, we search in the specific group using bitmap for best extents. The
  144. * tunable min_to_scan and max_to_scan control the behaviour here.
  145. * min_to_scan indicate how long the mballoc __must__ look for a best
  146. * extent and max_to_scan indicates how long the mballoc __can__ look for a
  147. * best extent in the found extents. Searching for the blocks starts with
  148. * the group specified as the goal value in allocation context via
  149. * ac_g_ex. Each group is first checked based on the criteria whether it
  150. * can used for allocation. ext4_mb_good_group explains how the groups are
  151. * checked.
  152. *
  153. * Both the prealloc space are getting populated as above. So for the first
  154. * request we will hit the buddy cache which will result in this prealloc
  155. * space getting filled. The prealloc space is then later used for the
  156. * subsequent request.
  157. */
  158. /*
  159. * mballoc operates on the following data:
  160. * - on-disk bitmap
  161. * - in-core buddy (actually includes buddy and bitmap)
  162. * - preallocation descriptors (PAs)
  163. *
  164. * there are two types of preallocations:
  165. * - inode
  166. * assiged to specific inode and can be used for this inode only.
  167. * it describes part of inode's space preallocated to specific
  168. * physical blocks. any block from that preallocated can be used
  169. * independent. the descriptor just tracks number of blocks left
  170. * unused. so, before taking some block from descriptor, one must
  171. * make sure corresponded logical block isn't allocated yet. this
  172. * also means that freeing any block within descriptor's range
  173. * must discard all preallocated blocks.
  174. * - locality group
  175. * assigned to specific locality group which does not translate to
  176. * permanent set of inodes: inode can join and leave group. space
  177. * from this type of preallocation can be used for any inode. thus
  178. * it's consumed from the beginning to the end.
  179. *
  180. * relation between them can be expressed as:
  181. * in-core buddy = on-disk bitmap + preallocation descriptors
  182. *
  183. * this mean blocks mballoc considers used are:
  184. * - allocated blocks (persistent)
  185. * - preallocated blocks (non-persistent)
  186. *
  187. * consistency in mballoc world means that at any time a block is either
  188. * free or used in ALL structures. notice: "any time" should not be read
  189. * literally -- time is discrete and delimited by locks.
  190. *
  191. * to keep it simple, we don't use block numbers, instead we count number of
  192. * blocks: how many blocks marked used/free in on-disk bitmap, buddy and PA.
  193. *
  194. * all operations can be expressed as:
  195. * - init buddy: buddy = on-disk + PAs
  196. * - new PA: buddy += N; PA = N
  197. * - use inode PA: on-disk += N; PA -= N
  198. * - discard inode PA buddy -= on-disk - PA; PA = 0
  199. * - use locality group PA on-disk += N; PA -= N
  200. * - discard locality group PA buddy -= PA; PA = 0
  201. * note: 'buddy -= on-disk - PA' is used to show that on-disk bitmap
  202. * is used in real operation because we can't know actual used
  203. * bits from PA, only from on-disk bitmap
  204. *
  205. * if we follow this strict logic, then all operations above should be atomic.
  206. * given some of them can block, we'd have to use something like semaphores
  207. * killing performance on high-end SMP hardware. let's try to relax it using
  208. * the following knowledge:
  209. * 1) if buddy is referenced, it's already initialized
  210. * 2) while block is used in buddy and the buddy is referenced,
  211. * nobody can re-allocate that block
  212. * 3) we work on bitmaps and '+' actually means 'set bits'. if on-disk has
  213. * bit set and PA claims same block, it's OK. IOW, one can set bit in
  214. * on-disk bitmap if buddy has same bit set or/and PA covers corresponded
  215. * block
  216. *
  217. * so, now we're building a concurrency table:
  218. * - init buddy vs.
  219. * - new PA
  220. * blocks for PA are allocated in the buddy, buddy must be referenced
  221. * until PA is linked to allocation group to avoid concurrent buddy init
  222. * - use inode PA
  223. * we need to make sure that either on-disk bitmap or PA has uptodate data
  224. * given (3) we care that PA-=N operation doesn't interfere with init
  225. * - discard inode PA
  226. * the simplest way would be to have buddy initialized by the discard
  227. * - use locality group PA
  228. * again PA-=N must be serialized with init
  229. * - discard locality group PA
  230. * the simplest way would be to have buddy initialized by the discard
  231. * - new PA vs.
  232. * - use inode PA
  233. * i_data_sem serializes them
  234. * - discard inode PA
  235. * discard process must wait until PA isn't used by another process
  236. * - use locality group PA
  237. * some mutex should serialize them
  238. * - discard locality group PA
  239. * discard process must wait until PA isn't used by another process
  240. * - use inode PA
  241. * - use inode PA
  242. * i_data_sem or another mutex should serializes them
  243. * - discard inode PA
  244. * discard process must wait until PA isn't used by another process
  245. * - use locality group PA
  246. * nothing wrong here -- they're different PAs covering different blocks
  247. * - discard locality group PA
  248. * discard process must wait until PA isn't used by another process
  249. *
  250. * now we're ready to make few consequences:
  251. * - PA is referenced and while it is no discard is possible
  252. * - PA is referenced until block isn't marked in on-disk bitmap
  253. * - PA changes only after on-disk bitmap
  254. * - discard must not compete with init. either init is done before
  255. * any discard or they're serialized somehow
  256. * - buddy init as sum of on-disk bitmap and PAs is done atomically
  257. *
  258. * a special case when we've used PA to emptiness. no need to modify buddy
  259. * in this case, but we should care about concurrent init
  260. *
  261. */
  262. /*
  263. * Logic in few words:
  264. *
  265. * - allocation:
  266. * load group
  267. * find blocks
  268. * mark bits in on-disk bitmap
  269. * release group
  270. *
  271. * - use preallocation:
  272. * find proper PA (per-inode or group)
  273. * load group
  274. * mark bits in on-disk bitmap
  275. * release group
  276. * release PA
  277. *
  278. * - free:
  279. * load group
  280. * mark bits in on-disk bitmap
  281. * release group
  282. *
  283. * - discard preallocations in group:
  284. * mark PAs deleted
  285. * move them onto local list
  286. * load on-disk bitmap
  287. * load group
  288. * remove PA from object (inode or locality group)
  289. * mark free blocks in-core
  290. *
  291. * - discard inode's preallocations:
  292. */
  293. /*
  294. * Locking rules
  295. *
  296. * Locks:
  297. * - bitlock on a group (group)
  298. * - object (inode/locality) (object)
  299. * - per-pa lock (pa)
  300. *
  301. * Paths:
  302. * - new pa
  303. * object
  304. * group
  305. *
  306. * - find and use pa:
  307. * pa
  308. *
  309. * - release consumed pa:
  310. * pa
  311. * group
  312. * object
  313. *
  314. * - generate in-core bitmap:
  315. * group
  316. * pa
  317. *
  318. * - discard all for given object (inode, locality group):
  319. * object
  320. * pa
  321. * group
  322. *
  323. * - discard all for given group:
  324. * group
  325. * pa
  326. * group
  327. * object
  328. *
  329. */
  330. static struct kmem_cache *ext4_pspace_cachep;
  331. static struct kmem_cache *ext4_ac_cachep;
  332. static struct kmem_cache *ext4_free_ext_cachep;
  333. /* We create slab caches for groupinfo data structures based on the
  334. * superblock block size. There will be one per mounted filesystem for
  335. * each unique s_blocksize_bits */
  336. #define NR_GRPINFO_CACHES \
  337. (EXT4_MAX_BLOCK_LOG_SIZE - EXT4_MIN_BLOCK_LOG_SIZE + 1)
  338. static struct kmem_cache *ext4_groupinfo_caches[NR_GRPINFO_CACHES];
  339. static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
  340. ext4_group_t group);
  341. static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
  342. ext4_group_t group);
  343. static void release_blocks_on_commit(journal_t *journal, transaction_t *txn);
  344. static inline void *mb_correct_addr_and_bit(int *bit, void *addr)
  345. {
  346. #if BITS_PER_LONG == 64
  347. *bit += ((unsigned long) addr & 7UL) << 3;
  348. addr = (void *) ((unsigned long) addr & ~7UL);
  349. #elif BITS_PER_LONG == 32
  350. *bit += ((unsigned long) addr & 3UL) << 3;
  351. addr = (void *) ((unsigned long) addr & ~3UL);
  352. #else
  353. #error "how many bits you are?!"
  354. #endif
  355. return addr;
  356. }
  357. static inline int mb_test_bit(int bit, void *addr)
  358. {
  359. /*
  360. * ext4_test_bit on architecture like powerpc
  361. * needs unsigned long aligned address
  362. */
  363. addr = mb_correct_addr_and_bit(&bit, addr);
  364. return ext4_test_bit(bit, addr);
  365. }
  366. static inline void mb_set_bit(int bit, void *addr)
  367. {
  368. addr = mb_correct_addr_and_bit(&bit, addr);
  369. ext4_set_bit(bit, addr);
  370. }
  371. static inline void mb_clear_bit(int bit, void *addr)
  372. {
  373. addr = mb_correct_addr_and_bit(&bit, addr);
  374. ext4_clear_bit(bit, addr);
  375. }
  376. static inline int mb_find_next_zero_bit(void *addr, int max, int start)
  377. {
  378. int fix = 0, ret, tmpmax;
  379. addr = mb_correct_addr_and_bit(&fix, addr);
  380. tmpmax = max + fix;
  381. start += fix;
  382. ret = ext4_find_next_zero_bit(addr, tmpmax, start) - fix;
  383. if (ret > max)
  384. return max;
  385. return ret;
  386. }
  387. static inline int mb_find_next_bit(void *addr, int max, int start)
  388. {
  389. int fix = 0, ret, tmpmax;
  390. addr = mb_correct_addr_and_bit(&fix, addr);
  391. tmpmax = max + fix;
  392. start += fix;
  393. ret = ext4_find_next_bit(addr, tmpmax, start) - fix;
  394. if (ret > max)
  395. return max;
  396. return ret;
  397. }
  398. static void *mb_find_buddy(struct ext4_buddy *e4b, int order, int *max)
  399. {
  400. char *bb;
  401. BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
  402. BUG_ON(max == NULL);
  403. if (order > e4b->bd_blkbits + 1) {
  404. *max = 0;
  405. return NULL;
  406. }
  407. /* at order 0 we see each particular block */
  408. *max = 1 << (e4b->bd_blkbits + 3);
  409. if (order == 0)
  410. return EXT4_MB_BITMAP(e4b);
  411. bb = EXT4_MB_BUDDY(e4b) + EXT4_SB(e4b->bd_sb)->s_mb_offsets[order];
  412. *max = EXT4_SB(e4b->bd_sb)->s_mb_maxs[order];
  413. return bb;
  414. }
  415. #ifdef DOUBLE_CHECK
  416. static void mb_free_blocks_double(struct inode *inode, struct ext4_buddy *e4b,
  417. int first, int count)
  418. {
  419. int i;
  420. struct super_block *sb = e4b->bd_sb;
  421. if (unlikely(e4b->bd_info->bb_bitmap == NULL))
  422. return;
  423. assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
  424. for (i = 0; i < count; i++) {
  425. if (!mb_test_bit(first + i, e4b->bd_info->bb_bitmap)) {
  426. ext4_fsblk_t blocknr;
  427. blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
  428. blocknr += first + i;
  429. ext4_grp_locked_error(sb, e4b->bd_group,
  430. inode ? inode->i_ino : 0,
  431. blocknr,
  432. "freeing block already freed "
  433. "(bit %u)",
  434. first + i);
  435. }
  436. mb_clear_bit(first + i, e4b->bd_info->bb_bitmap);
  437. }
  438. }
  439. static void mb_mark_used_double(struct ext4_buddy *e4b, int first, int count)
  440. {
  441. int i;
  442. if (unlikely(e4b->bd_info->bb_bitmap == NULL))
  443. return;
  444. assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
  445. for (i = 0; i < count; i++) {
  446. BUG_ON(mb_test_bit(first + i, e4b->bd_info->bb_bitmap));
  447. mb_set_bit(first + i, e4b->bd_info->bb_bitmap);
  448. }
  449. }
  450. static void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
  451. {
  452. if (memcmp(e4b->bd_info->bb_bitmap, bitmap, e4b->bd_sb->s_blocksize)) {
  453. unsigned char *b1, *b2;
  454. int i;
  455. b1 = (unsigned char *) e4b->bd_info->bb_bitmap;
  456. b2 = (unsigned char *) bitmap;
  457. for (i = 0; i < e4b->bd_sb->s_blocksize; i++) {
  458. if (b1[i] != b2[i]) {
  459. printk(KERN_ERR "corruption in group %u "
  460. "at byte %u(%u): %x in copy != %x "
  461. "on disk/prealloc\n",
  462. e4b->bd_group, i, i * 8, b1[i], b2[i]);
  463. BUG();
  464. }
  465. }
  466. }
  467. }
  468. #else
  469. static inline void mb_free_blocks_double(struct inode *inode,
  470. struct ext4_buddy *e4b, int first, int count)
  471. {
  472. return;
  473. }
  474. static inline void mb_mark_used_double(struct ext4_buddy *e4b,
  475. int first, int count)
  476. {
  477. return;
  478. }
  479. static inline void mb_cmp_bitmaps(struct ext4_buddy *e4b, void *bitmap)
  480. {
  481. return;
  482. }
  483. #endif
  484. #ifdef AGGRESSIVE_CHECK
  485. #define MB_CHECK_ASSERT(assert) \
  486. do { \
  487. if (!(assert)) { \
  488. printk(KERN_EMERG \
  489. "Assertion failure in %s() at %s:%d: \"%s\"\n", \
  490. function, file, line, # assert); \
  491. BUG(); \
  492. } \
  493. } while (0)
  494. static int __mb_check_buddy(struct ext4_buddy *e4b, char *file,
  495. const char *function, int line)
  496. {
  497. struct super_block *sb = e4b->bd_sb;
  498. int order = e4b->bd_blkbits + 1;
  499. int max;
  500. int max2;
  501. int i;
  502. int j;
  503. int k;
  504. int count;
  505. struct ext4_group_info *grp;
  506. int fragments = 0;
  507. int fstart;
  508. struct list_head *cur;
  509. void *buddy;
  510. void *buddy2;
  511. {
  512. static int mb_check_counter;
  513. if (mb_check_counter++ % 100 != 0)
  514. return 0;
  515. }
  516. while (order > 1) {
  517. buddy = mb_find_buddy(e4b, order, &max);
  518. MB_CHECK_ASSERT(buddy);
  519. buddy2 = mb_find_buddy(e4b, order - 1, &max2);
  520. MB_CHECK_ASSERT(buddy2);
  521. MB_CHECK_ASSERT(buddy != buddy2);
  522. MB_CHECK_ASSERT(max * 2 == max2);
  523. count = 0;
  524. for (i = 0; i < max; i++) {
  525. if (mb_test_bit(i, buddy)) {
  526. /* only single bit in buddy2 may be 1 */
  527. if (!mb_test_bit(i << 1, buddy2)) {
  528. MB_CHECK_ASSERT(
  529. mb_test_bit((i<<1)+1, buddy2));
  530. } else if (!mb_test_bit((i << 1) + 1, buddy2)) {
  531. MB_CHECK_ASSERT(
  532. mb_test_bit(i << 1, buddy2));
  533. }
  534. continue;
  535. }
  536. /* both bits in buddy2 must be 0 */
  537. MB_CHECK_ASSERT(mb_test_bit(i << 1, buddy2));
  538. MB_CHECK_ASSERT(mb_test_bit((i << 1) + 1, buddy2));
  539. for (j = 0; j < (1 << order); j++) {
  540. k = (i * (1 << order)) + j;
  541. MB_CHECK_ASSERT(
  542. !mb_test_bit(k, EXT4_MB_BITMAP(e4b)));
  543. }
  544. count++;
  545. }
  546. MB_CHECK_ASSERT(e4b->bd_info->bb_counters[order] == count);
  547. order--;
  548. }
  549. fstart = -1;
  550. buddy = mb_find_buddy(e4b, 0, &max);
  551. for (i = 0; i < max; i++) {
  552. if (!mb_test_bit(i, buddy)) {
  553. MB_CHECK_ASSERT(i >= e4b->bd_info->bb_first_free);
  554. if (fstart == -1) {
  555. fragments++;
  556. fstart = i;
  557. }
  558. continue;
  559. }
  560. fstart = -1;
  561. /* check used bits only */
  562. for (j = 0; j < e4b->bd_blkbits + 1; j++) {
  563. buddy2 = mb_find_buddy(e4b, j, &max2);
  564. k = i >> j;
  565. MB_CHECK_ASSERT(k < max2);
  566. MB_CHECK_ASSERT(mb_test_bit(k, buddy2));
  567. }
  568. }
  569. MB_CHECK_ASSERT(!EXT4_MB_GRP_NEED_INIT(e4b->bd_info));
  570. MB_CHECK_ASSERT(e4b->bd_info->bb_fragments == fragments);
  571. grp = ext4_get_group_info(sb, e4b->bd_group);
  572. buddy = mb_find_buddy(e4b, 0, &max);
  573. list_for_each(cur, &grp->bb_prealloc_list) {
  574. ext4_group_t groupnr;
  575. struct ext4_prealloc_space *pa;
  576. pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
  577. ext4_get_group_no_and_offset(sb, pa->pa_pstart, &groupnr, &k);
  578. MB_CHECK_ASSERT(groupnr == e4b->bd_group);
  579. for (i = 0; i < pa->pa_len; i++)
  580. MB_CHECK_ASSERT(mb_test_bit(k + i, buddy));
  581. }
  582. return 0;
  583. }
  584. #undef MB_CHECK_ASSERT
  585. #define mb_check_buddy(e4b) __mb_check_buddy(e4b, \
  586. __FILE__, __func__, __LINE__)
  587. #else
  588. #define mb_check_buddy(e4b)
  589. #endif
  590. /* FIXME!! need more doc */
  591. static void ext4_mb_mark_free_simple(struct super_block *sb,
  592. void *buddy, ext4_grpblk_t first, ext4_grpblk_t len,
  593. struct ext4_group_info *grp)
  594. {
  595. struct ext4_sb_info *sbi = EXT4_SB(sb);
  596. ext4_grpblk_t min;
  597. ext4_grpblk_t max;
  598. ext4_grpblk_t chunk;
  599. unsigned short border;
  600. BUG_ON(len > EXT4_BLOCKS_PER_GROUP(sb));
  601. border = 2 << sb->s_blocksize_bits;
  602. while (len > 0) {
  603. /* find how many blocks can be covered since this position */
  604. max = ffs(first | border) - 1;
  605. /* find how many blocks of power 2 we need to mark */
  606. min = fls(len) - 1;
  607. if (max < min)
  608. min = max;
  609. chunk = 1 << min;
  610. /* mark multiblock chunks only */
  611. grp->bb_counters[min]++;
  612. if (min > 0)
  613. mb_clear_bit(first >> min,
  614. buddy + sbi->s_mb_offsets[min]);
  615. len -= chunk;
  616. first += chunk;
  617. }
  618. }
  619. /*
  620. * Cache the order of the largest free extent we have available in this block
  621. * group.
  622. */
  623. static void
  624. mb_set_largest_free_order(struct super_block *sb, struct ext4_group_info *grp)
  625. {
  626. int i;
  627. int bits;
  628. grp->bb_largest_free_order = -1; /* uninit */
  629. bits = sb->s_blocksize_bits + 1;
  630. for (i = bits; i >= 0; i--) {
  631. if (grp->bb_counters[i] > 0) {
  632. grp->bb_largest_free_order = i;
  633. break;
  634. }
  635. }
  636. }
  637. static noinline_for_stack
  638. void ext4_mb_generate_buddy(struct super_block *sb,
  639. void *buddy, void *bitmap, ext4_group_t group)
  640. {
  641. struct ext4_group_info *grp = ext4_get_group_info(sb, group);
  642. ext4_grpblk_t max = EXT4_BLOCKS_PER_GROUP(sb);
  643. ext4_grpblk_t i = 0;
  644. ext4_grpblk_t first;
  645. ext4_grpblk_t len;
  646. unsigned free = 0;
  647. unsigned fragments = 0;
  648. unsigned long long period = get_cycles();
  649. /* initialize buddy from bitmap which is aggregation
  650. * of on-disk bitmap and preallocations */
  651. i = mb_find_next_zero_bit(bitmap, max, 0);
  652. grp->bb_first_free = i;
  653. while (i < max) {
  654. fragments++;
  655. first = i;
  656. i = mb_find_next_bit(bitmap, max, i);
  657. len = i - first;
  658. free += len;
  659. if (len > 1)
  660. ext4_mb_mark_free_simple(sb, buddy, first, len, grp);
  661. else
  662. grp->bb_counters[0]++;
  663. if (i < max)
  664. i = mb_find_next_zero_bit(bitmap, max, i);
  665. }
  666. grp->bb_fragments = fragments;
  667. if (free != grp->bb_free) {
  668. ext4_grp_locked_error(sb, group, 0, 0,
  669. "%u blocks in bitmap, %u in gd",
  670. free, grp->bb_free);
  671. /*
  672. * If we intent to continue, we consider group descritor
  673. * corrupt and update bb_free using bitmap value
  674. */
  675. grp->bb_free = free;
  676. }
  677. mb_set_largest_free_order(sb, grp);
  678. clear_bit(EXT4_GROUP_INFO_NEED_INIT_BIT, &(grp->bb_state));
  679. period = get_cycles() - period;
  680. spin_lock(&EXT4_SB(sb)->s_bal_lock);
  681. EXT4_SB(sb)->s_mb_buddies_generated++;
  682. EXT4_SB(sb)->s_mb_generation_time += period;
  683. spin_unlock(&EXT4_SB(sb)->s_bal_lock);
  684. }
  685. /* The buddy information is attached the buddy cache inode
  686. * for convenience. The information regarding each group
  687. * is loaded via ext4_mb_load_buddy. The information involve
  688. * block bitmap and buddy information. The information are
  689. * stored in the inode as
  690. *
  691. * { page }
  692. * [ group 0 bitmap][ group 0 buddy] [group 1][ group 1]...
  693. *
  694. *
  695. * one block each for bitmap and buddy information.
  696. * So for each group we take up 2 blocks. A page can
  697. * contain blocks_per_page (PAGE_CACHE_SIZE / blocksize) blocks.
  698. * So it can have information regarding groups_per_page which
  699. * is blocks_per_page/2
  700. *
  701. * Locking note: This routine takes the block group lock of all groups
  702. * for this page; do not hold this lock when calling this routine!
  703. */
  704. static int ext4_mb_init_cache(struct page *page, char *incore)
  705. {
  706. ext4_group_t ngroups;
  707. int blocksize;
  708. int blocks_per_page;
  709. int groups_per_page;
  710. int err = 0;
  711. int i;
  712. ext4_group_t first_group;
  713. int first_block;
  714. struct super_block *sb;
  715. struct buffer_head *bhs;
  716. struct buffer_head **bh;
  717. struct inode *inode;
  718. char *data;
  719. char *bitmap;
  720. mb_debug(1, "init page %lu\n", page->index);
  721. inode = page->mapping->host;
  722. sb = inode->i_sb;
  723. ngroups = ext4_get_groups_count(sb);
  724. blocksize = 1 << inode->i_blkbits;
  725. blocks_per_page = PAGE_CACHE_SIZE / blocksize;
  726. groups_per_page = blocks_per_page >> 1;
  727. if (groups_per_page == 0)
  728. groups_per_page = 1;
  729. /* allocate buffer_heads to read bitmaps */
  730. if (groups_per_page > 1) {
  731. err = -ENOMEM;
  732. i = sizeof(struct buffer_head *) * groups_per_page;
  733. bh = kzalloc(i, GFP_NOFS);
  734. if (bh == NULL)
  735. goto out;
  736. } else
  737. bh = &bhs;
  738. first_group = page->index * blocks_per_page / 2;
  739. /* read all groups the page covers into the cache */
  740. for (i = 0; i < groups_per_page; i++) {
  741. struct ext4_group_desc *desc;
  742. if (first_group + i >= ngroups)
  743. break;
  744. err = -EIO;
  745. desc = ext4_get_group_desc(sb, first_group + i, NULL);
  746. if (desc == NULL)
  747. goto out;
  748. err = -ENOMEM;
  749. bh[i] = sb_getblk(sb, ext4_block_bitmap(sb, desc));
  750. if (bh[i] == NULL)
  751. goto out;
  752. if (bitmap_uptodate(bh[i]))
  753. continue;
  754. lock_buffer(bh[i]);
  755. if (bitmap_uptodate(bh[i])) {
  756. unlock_buffer(bh[i]);
  757. continue;
  758. }
  759. ext4_lock_group(sb, first_group + i);
  760. if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
  761. ext4_init_block_bitmap(sb, bh[i],
  762. first_group + i, desc);
  763. set_bitmap_uptodate(bh[i]);
  764. set_buffer_uptodate(bh[i]);
  765. ext4_unlock_group(sb, first_group + i);
  766. unlock_buffer(bh[i]);
  767. continue;
  768. }
  769. ext4_unlock_group(sb, first_group + i);
  770. if (buffer_uptodate(bh[i])) {
  771. /*
  772. * if not uninit if bh is uptodate,
  773. * bitmap is also uptodate
  774. */
  775. set_bitmap_uptodate(bh[i]);
  776. unlock_buffer(bh[i]);
  777. continue;
  778. }
  779. get_bh(bh[i]);
  780. /*
  781. * submit the buffer_head for read. We can
  782. * safely mark the bitmap as uptodate now.
  783. * We do it here so the bitmap uptodate bit
  784. * get set with buffer lock held.
  785. */
  786. set_bitmap_uptodate(bh[i]);
  787. bh[i]->b_end_io = end_buffer_read_sync;
  788. submit_bh(READ, bh[i]);
  789. mb_debug(1, "read bitmap for group %u\n", first_group + i);
  790. }
  791. /* wait for I/O completion */
  792. for (i = 0; i < groups_per_page && bh[i]; i++)
  793. wait_on_buffer(bh[i]);
  794. err = -EIO;
  795. for (i = 0; i < groups_per_page && bh[i]; i++)
  796. if (!buffer_uptodate(bh[i]))
  797. goto out;
  798. err = 0;
  799. first_block = page->index * blocks_per_page;
  800. /* init the page */
  801. memset(page_address(page), 0xff, PAGE_CACHE_SIZE);
  802. for (i = 0; i < blocks_per_page; i++) {
  803. int group;
  804. struct ext4_group_info *grinfo;
  805. group = (first_block + i) >> 1;
  806. if (group >= ngroups)
  807. break;
  808. /*
  809. * data carry information regarding this
  810. * particular group in the format specified
  811. * above
  812. *
  813. */
  814. data = page_address(page) + (i * blocksize);
  815. bitmap = bh[group - first_group]->b_data;
  816. /*
  817. * We place the buddy block and bitmap block
  818. * close together
  819. */
  820. if ((first_block + i) & 1) {
  821. /* this is block of buddy */
  822. BUG_ON(incore == NULL);
  823. mb_debug(1, "put buddy for group %u in page %lu/%x\n",
  824. group, page->index, i * blocksize);
  825. trace_ext4_mb_buddy_bitmap_load(sb, group);
  826. grinfo = ext4_get_group_info(sb, group);
  827. grinfo->bb_fragments = 0;
  828. memset(grinfo->bb_counters, 0,
  829. sizeof(*grinfo->bb_counters) *
  830. (sb->s_blocksize_bits+2));
  831. /*
  832. * incore got set to the group block bitmap below
  833. */
  834. ext4_lock_group(sb, group);
  835. ext4_mb_generate_buddy(sb, data, incore, group);
  836. ext4_unlock_group(sb, group);
  837. incore = NULL;
  838. } else {
  839. /* this is block of bitmap */
  840. BUG_ON(incore != NULL);
  841. mb_debug(1, "put bitmap for group %u in page %lu/%x\n",
  842. group, page->index, i * blocksize);
  843. trace_ext4_mb_bitmap_load(sb, group);
  844. /* see comments in ext4_mb_put_pa() */
  845. ext4_lock_group(sb, group);
  846. memcpy(data, bitmap, blocksize);
  847. /* mark all preallocated blks used in in-core bitmap */
  848. ext4_mb_generate_from_pa(sb, data, group);
  849. ext4_mb_generate_from_freelist(sb, data, group);
  850. ext4_unlock_group(sb, group);
  851. /* set incore so that the buddy information can be
  852. * generated using this
  853. */
  854. incore = data;
  855. }
  856. }
  857. SetPageUptodate(page);
  858. out:
  859. if (bh) {
  860. for (i = 0; i < groups_per_page && bh[i]; i++)
  861. brelse(bh[i]);
  862. if (bh != &bhs)
  863. kfree(bh);
  864. }
  865. return err;
  866. }
  867. /*
  868. * Locking note: This routine calls ext4_mb_init_cache(), which takes the
  869. * block group lock of all groups for this page; do not hold the BG lock when
  870. * calling this routine!
  871. */
  872. static noinline_for_stack
  873. int ext4_mb_init_group(struct super_block *sb, ext4_group_t group)
  874. {
  875. int ret = 0;
  876. void *bitmap;
  877. int blocks_per_page;
  878. int block, pnum, poff;
  879. int num_grp_locked = 0;
  880. struct ext4_group_info *this_grp;
  881. struct ext4_sb_info *sbi = EXT4_SB(sb);
  882. struct inode *inode = sbi->s_buddy_cache;
  883. struct page *page = NULL, *bitmap_page = NULL;
  884. mb_debug(1, "init group %u\n", group);
  885. blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
  886. this_grp = ext4_get_group_info(sb, group);
  887. /*
  888. * This ensures that we don't reinit the buddy cache
  889. * page which map to the group from which we are already
  890. * allocating. If we are looking at the buddy cache we would
  891. * have taken a reference using ext4_mb_load_buddy and that
  892. * would have taken the alloc_sem lock.
  893. */
  894. num_grp_locked = ext4_mb_get_buddy_cache_lock(sb, group);
  895. if (!EXT4_MB_GRP_NEED_INIT(this_grp)) {
  896. /*
  897. * somebody initialized the group
  898. * return without doing anything
  899. */
  900. ret = 0;
  901. goto err;
  902. }
  903. /*
  904. * the buddy cache inode stores the block bitmap
  905. * and buddy information in consecutive blocks.
  906. * So for each group we need two blocks.
  907. */
  908. block = group * 2;
  909. pnum = block / blocks_per_page;
  910. poff = block % blocks_per_page;
  911. page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
  912. if (page) {
  913. BUG_ON(page->mapping != inode->i_mapping);
  914. ret = ext4_mb_init_cache(page, NULL);
  915. if (ret) {
  916. unlock_page(page);
  917. goto err;
  918. }
  919. unlock_page(page);
  920. }
  921. if (page == NULL || !PageUptodate(page)) {
  922. ret = -EIO;
  923. goto err;
  924. }
  925. mark_page_accessed(page);
  926. bitmap_page = page;
  927. bitmap = page_address(page) + (poff * sb->s_blocksize);
  928. /* init buddy cache */
  929. block++;
  930. pnum = block / blocks_per_page;
  931. poff = block % blocks_per_page;
  932. page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
  933. if (page == bitmap_page) {
  934. /*
  935. * If both the bitmap and buddy are in
  936. * the same page we don't need to force
  937. * init the buddy
  938. */
  939. unlock_page(page);
  940. } else if (page) {
  941. BUG_ON(page->mapping != inode->i_mapping);
  942. ret = ext4_mb_init_cache(page, bitmap);
  943. if (ret) {
  944. unlock_page(page);
  945. goto err;
  946. }
  947. unlock_page(page);
  948. }
  949. if (page == NULL || !PageUptodate(page)) {
  950. ret = -EIO;
  951. goto err;
  952. }
  953. mark_page_accessed(page);
  954. err:
  955. ext4_mb_put_buddy_cache_lock(sb, group, num_grp_locked);
  956. if (bitmap_page)
  957. page_cache_release(bitmap_page);
  958. if (page)
  959. page_cache_release(page);
  960. return ret;
  961. }
  962. /*
  963. * Locking note: This routine calls ext4_mb_init_cache(), which takes the
  964. * block group lock of all groups for this page; do not hold the BG lock when
  965. * calling this routine!
  966. */
  967. static noinline_for_stack int
  968. ext4_mb_load_buddy(struct super_block *sb, ext4_group_t group,
  969. struct ext4_buddy *e4b)
  970. {
  971. int blocks_per_page;
  972. int block;
  973. int pnum;
  974. int poff;
  975. struct page *page;
  976. int ret;
  977. struct ext4_group_info *grp;
  978. struct ext4_sb_info *sbi = EXT4_SB(sb);
  979. struct inode *inode = sbi->s_buddy_cache;
  980. mb_debug(1, "load group %u\n", group);
  981. blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
  982. grp = ext4_get_group_info(sb, group);
  983. e4b->bd_blkbits = sb->s_blocksize_bits;
  984. e4b->bd_info = ext4_get_group_info(sb, group);
  985. e4b->bd_sb = sb;
  986. e4b->bd_group = group;
  987. e4b->bd_buddy_page = NULL;
  988. e4b->bd_bitmap_page = NULL;
  989. e4b->alloc_semp = &grp->alloc_sem;
  990. /* Take the read lock on the group alloc
  991. * sem. This would make sure a parallel
  992. * ext4_mb_init_group happening on other
  993. * groups mapped by the page is blocked
  994. * till we are done with allocation
  995. */
  996. repeat_load_buddy:
  997. down_read(e4b->alloc_semp);
  998. if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
  999. /* we need to check for group need init flag
  1000. * with alloc_semp held so that we can be sure
  1001. * that new blocks didn't get added to the group
  1002. * when we are loading the buddy cache
  1003. */
  1004. up_read(e4b->alloc_semp);
  1005. /*
  1006. * we need full data about the group
  1007. * to make a good selection
  1008. */
  1009. ret = ext4_mb_init_group(sb, group);
  1010. if (ret)
  1011. return ret;
  1012. goto repeat_load_buddy;
  1013. }
  1014. /*
  1015. * the buddy cache inode stores the block bitmap
  1016. * and buddy information in consecutive blocks.
  1017. * So for each group we need two blocks.
  1018. */
  1019. block = group * 2;
  1020. pnum = block / blocks_per_page;
  1021. poff = block % blocks_per_page;
  1022. /* we could use find_or_create_page(), but it locks page
  1023. * what we'd like to avoid in fast path ... */
  1024. page = find_get_page(inode->i_mapping, pnum);
  1025. if (page == NULL || !PageUptodate(page)) {
  1026. if (page)
  1027. /*
  1028. * drop the page reference and try
  1029. * to get the page with lock. If we
  1030. * are not uptodate that implies
  1031. * somebody just created the page but
  1032. * is yet to initialize the same. So
  1033. * wait for it to initialize.
  1034. */
  1035. page_cache_release(page);
  1036. page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
  1037. if (page) {
  1038. BUG_ON(page->mapping != inode->i_mapping);
  1039. if (!PageUptodate(page)) {
  1040. ret = ext4_mb_init_cache(page, NULL);
  1041. if (ret) {
  1042. unlock_page(page);
  1043. goto err;
  1044. }
  1045. mb_cmp_bitmaps(e4b, page_address(page) +
  1046. (poff * sb->s_blocksize));
  1047. }
  1048. unlock_page(page);
  1049. }
  1050. }
  1051. if (page == NULL || !PageUptodate(page)) {
  1052. ret = -EIO;
  1053. goto err;
  1054. }
  1055. e4b->bd_bitmap_page = page;
  1056. e4b->bd_bitmap = page_address(page) + (poff * sb->s_blocksize);
  1057. mark_page_accessed(page);
  1058. block++;
  1059. pnum = block / blocks_per_page;
  1060. poff = block % blocks_per_page;
  1061. page = find_get_page(inode->i_mapping, pnum);
  1062. if (page == NULL || !PageUptodate(page)) {
  1063. if (page)
  1064. page_cache_release(page);
  1065. page = find_or_create_page(inode->i_mapping, pnum, GFP_NOFS);
  1066. if (page) {
  1067. BUG_ON(page->mapping != inode->i_mapping);
  1068. if (!PageUptodate(page)) {
  1069. ret = ext4_mb_init_cache(page, e4b->bd_bitmap);
  1070. if (ret) {
  1071. unlock_page(page);
  1072. goto err;
  1073. }
  1074. }
  1075. unlock_page(page);
  1076. }
  1077. }
  1078. if (page == NULL || !PageUptodate(page)) {
  1079. ret = -EIO;
  1080. goto err;
  1081. }
  1082. e4b->bd_buddy_page = page;
  1083. e4b->bd_buddy = page_address(page) + (poff * sb->s_blocksize);
  1084. mark_page_accessed(page);
  1085. BUG_ON(e4b->bd_bitmap_page == NULL);
  1086. BUG_ON(e4b->bd_buddy_page == NULL);
  1087. return 0;
  1088. err:
  1089. if (e4b->bd_bitmap_page)
  1090. page_cache_release(e4b->bd_bitmap_page);
  1091. if (e4b->bd_buddy_page)
  1092. page_cache_release(e4b->bd_buddy_page);
  1093. e4b->bd_buddy = NULL;
  1094. e4b->bd_bitmap = NULL;
  1095. /* Done with the buddy cache */
  1096. up_read(e4b->alloc_semp);
  1097. return ret;
  1098. }
  1099. static void ext4_mb_unload_buddy(struct ext4_buddy *e4b)
  1100. {
  1101. if (e4b->bd_bitmap_page)
  1102. page_cache_release(e4b->bd_bitmap_page);
  1103. if (e4b->bd_buddy_page)
  1104. page_cache_release(e4b->bd_buddy_page);
  1105. /* Done with the buddy cache */
  1106. if (e4b->alloc_semp)
  1107. up_read(e4b->alloc_semp);
  1108. }
  1109. static int mb_find_order_for_block(struct ext4_buddy *e4b, int block)
  1110. {
  1111. int order = 1;
  1112. void *bb;
  1113. BUG_ON(EXT4_MB_BITMAP(e4b) == EXT4_MB_BUDDY(e4b));
  1114. BUG_ON(block >= (1 << (e4b->bd_blkbits + 3)));
  1115. bb = EXT4_MB_BUDDY(e4b);
  1116. while (order <= e4b->bd_blkbits + 1) {
  1117. block = block >> 1;
  1118. if (!mb_test_bit(block, bb)) {
  1119. /* this block is part of buddy of order 'order' */
  1120. return order;
  1121. }
  1122. bb += 1 << (e4b->bd_blkbits - order);
  1123. order++;
  1124. }
  1125. return 0;
  1126. }
  1127. static void mb_clear_bits(void *bm, int cur, int len)
  1128. {
  1129. __u32 *addr;
  1130. len = cur + len;
  1131. while (cur < len) {
  1132. if ((cur & 31) == 0 && (len - cur) >= 32) {
  1133. /* fast path: clear whole word at once */
  1134. addr = bm + (cur >> 3);
  1135. *addr = 0;
  1136. cur += 32;
  1137. continue;
  1138. }
  1139. mb_clear_bit(cur, bm);
  1140. cur++;
  1141. }
  1142. }
  1143. static void mb_set_bits(void *bm, int cur, int len)
  1144. {
  1145. __u32 *addr;
  1146. len = cur + len;
  1147. while (cur < len) {
  1148. if ((cur & 31) == 0 && (len - cur) >= 32) {
  1149. /* fast path: set whole word at once */
  1150. addr = bm + (cur >> 3);
  1151. *addr = 0xffffffff;
  1152. cur += 32;
  1153. continue;
  1154. }
  1155. mb_set_bit(cur, bm);
  1156. cur++;
  1157. }
  1158. }
  1159. static void mb_free_blocks(struct inode *inode, struct ext4_buddy *e4b,
  1160. int first, int count)
  1161. {
  1162. int block = 0;
  1163. int max = 0;
  1164. int order;
  1165. void *buddy;
  1166. void *buddy2;
  1167. struct super_block *sb = e4b->bd_sb;
  1168. BUG_ON(first + count > (sb->s_blocksize << 3));
  1169. assert_spin_locked(ext4_group_lock_ptr(sb, e4b->bd_group));
  1170. mb_check_buddy(e4b);
  1171. mb_free_blocks_double(inode, e4b, first, count);
  1172. e4b->bd_info->bb_free += count;
  1173. if (first < e4b->bd_info->bb_first_free)
  1174. e4b->bd_info->bb_first_free = first;
  1175. /* let's maintain fragments counter */
  1176. if (first != 0)
  1177. block = !mb_test_bit(first - 1, EXT4_MB_BITMAP(e4b));
  1178. if (first + count < EXT4_SB(sb)->s_mb_maxs[0])
  1179. max = !mb_test_bit(first + count, EXT4_MB_BITMAP(e4b));
  1180. if (block && max)
  1181. e4b->bd_info->bb_fragments--;
  1182. else if (!block && !max)
  1183. e4b->bd_info->bb_fragments++;
  1184. /* let's maintain buddy itself */
  1185. while (count-- > 0) {
  1186. block = first++;
  1187. order = 0;
  1188. if (!mb_test_bit(block, EXT4_MB_BITMAP(e4b))) {
  1189. ext4_fsblk_t blocknr;
  1190. blocknr = ext4_group_first_block_no(sb, e4b->bd_group);
  1191. blocknr += block;
  1192. ext4_grp_locked_error(sb, e4b->bd_group,
  1193. inode ? inode->i_ino : 0,
  1194. blocknr,
  1195. "freeing already freed block "
  1196. "(bit %u)", block);
  1197. }
  1198. mb_clear_bit(block, EXT4_MB_BITMAP(e4b));
  1199. e4b->bd_info->bb_counters[order]++;
  1200. /* start of the buddy */
  1201. buddy = mb_find_buddy(e4b, order, &max);
  1202. do {
  1203. block &= ~1UL;
  1204. if (mb_test_bit(block, buddy) ||
  1205. mb_test_bit(block + 1, buddy))
  1206. break;
  1207. /* both the buddies are free, try to coalesce them */
  1208. buddy2 = mb_find_buddy(e4b, order + 1, &max);
  1209. if (!buddy2)
  1210. break;
  1211. if (order > 0) {
  1212. /* for special purposes, we don't set
  1213. * free bits in bitmap */
  1214. mb_set_bit(block, buddy);
  1215. mb_set_bit(block + 1, buddy);
  1216. }
  1217. e4b->bd_info->bb_counters[order]--;
  1218. e4b->bd_info->bb_counters[order]--;
  1219. block = block >> 1;
  1220. order++;
  1221. e4b->bd_info->bb_counters[order]++;
  1222. mb_clear_bit(block, buddy2);
  1223. buddy = buddy2;
  1224. } while (1);
  1225. }
  1226. mb_set_largest_free_order(sb, e4b->bd_info);
  1227. mb_check_buddy(e4b);
  1228. }
  1229. static int mb_find_extent(struct ext4_buddy *e4b, int order, int block,
  1230. int needed, struct ext4_free_extent *ex)
  1231. {
  1232. int next = block;
  1233. int max;
  1234. int ord;
  1235. void *buddy;
  1236. assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
  1237. BUG_ON(ex == NULL);
  1238. buddy = mb_find_buddy(e4b, order, &max);
  1239. BUG_ON(buddy == NULL);
  1240. BUG_ON(block >= max);
  1241. if (mb_test_bit(block, buddy)) {
  1242. ex->fe_len = 0;
  1243. ex->fe_start = 0;
  1244. ex->fe_group = 0;
  1245. return 0;
  1246. }
  1247. /* FIXME dorp order completely ? */
  1248. if (likely(order == 0)) {
  1249. /* find actual order */
  1250. order = mb_find_order_for_block(e4b, block);
  1251. block = block >> order;
  1252. }
  1253. ex->fe_len = 1 << order;
  1254. ex->fe_start = block << order;
  1255. ex->fe_group = e4b->bd_group;
  1256. /* calc difference from given start */
  1257. next = next - ex->fe_start;
  1258. ex->fe_len -= next;
  1259. ex->fe_start += next;
  1260. while (needed > ex->fe_len &&
  1261. (buddy = mb_find_buddy(e4b, order, &max))) {
  1262. if (block + 1 >= max)
  1263. break;
  1264. next = (block + 1) * (1 << order);
  1265. if (mb_test_bit(next, EXT4_MB_BITMAP(e4b)))
  1266. break;
  1267. ord = mb_find_order_for_block(e4b, next);
  1268. order = ord;
  1269. block = next >> order;
  1270. ex->fe_len += 1 << order;
  1271. }
  1272. BUG_ON(ex->fe_start + ex->fe_len > (1 << (e4b->bd_blkbits + 3)));
  1273. return ex->fe_len;
  1274. }
  1275. static int mb_mark_used(struct ext4_buddy *e4b, struct ext4_free_extent *ex)
  1276. {
  1277. int ord;
  1278. int mlen = 0;
  1279. int max = 0;
  1280. int cur;
  1281. int start = ex->fe_start;
  1282. int len = ex->fe_len;
  1283. unsigned ret = 0;
  1284. int len0 = len;
  1285. void *buddy;
  1286. BUG_ON(start + len > (e4b->bd_sb->s_blocksize << 3));
  1287. BUG_ON(e4b->bd_group != ex->fe_group);
  1288. assert_spin_locked(ext4_group_lock_ptr(e4b->bd_sb, e4b->bd_group));
  1289. mb_check_buddy(e4b);
  1290. mb_mark_used_double(e4b, start, len);
  1291. e4b->bd_info->bb_free -= len;
  1292. if (e4b->bd_info->bb_first_free == start)
  1293. e4b->bd_info->bb_first_free += len;
  1294. /* let's maintain fragments counter */
  1295. if (start != 0)
  1296. mlen = !mb_test_bit(start - 1, EXT4_MB_BITMAP(e4b));
  1297. if (start + len < EXT4_SB(e4b->bd_sb)->s_mb_maxs[0])
  1298. max = !mb_test_bit(start + len, EXT4_MB_BITMAP(e4b));
  1299. if (mlen && max)
  1300. e4b->bd_info->bb_fragments++;
  1301. else if (!mlen && !max)
  1302. e4b->bd_info->bb_fragments--;
  1303. /* let's maintain buddy itself */
  1304. while (len) {
  1305. ord = mb_find_order_for_block(e4b, start);
  1306. if (((start >> ord) << ord) == start && len >= (1 << ord)) {
  1307. /* the whole chunk may be allocated at once! */
  1308. mlen = 1 << ord;
  1309. buddy = mb_find_buddy(e4b, ord, &max);
  1310. BUG_ON((start >> ord) >= max);
  1311. mb_set_bit(start >> ord, buddy);
  1312. e4b->bd_info->bb_counters[ord]--;
  1313. start += mlen;
  1314. len -= mlen;
  1315. BUG_ON(len < 0);
  1316. continue;
  1317. }
  1318. /* store for history */
  1319. if (ret == 0)
  1320. ret = len | (ord << 16);
  1321. /* we have to split large buddy */
  1322. BUG_ON(ord <= 0);
  1323. buddy = mb_find_buddy(e4b, ord, &max);
  1324. mb_set_bit(start >> ord, buddy);
  1325. e4b->bd_info->bb_counters[ord]--;
  1326. ord--;
  1327. cur = (start >> ord) & ~1U;
  1328. buddy = mb_find_buddy(e4b, ord, &max);
  1329. mb_clear_bit(cur, buddy);
  1330. mb_clear_bit(cur + 1, buddy);
  1331. e4b->bd_info->bb_counters[ord]++;
  1332. e4b->bd_info->bb_counters[ord]++;
  1333. }
  1334. mb_set_largest_free_order(e4b->bd_sb, e4b->bd_info);
  1335. mb_set_bits(EXT4_MB_BITMAP(e4b), ex->fe_start, len0);
  1336. mb_check_buddy(e4b);
  1337. return ret;
  1338. }
  1339. /*
  1340. * Must be called under group lock!
  1341. */
  1342. static void ext4_mb_use_best_found(struct ext4_allocation_context *ac,
  1343. struct ext4_buddy *e4b)
  1344. {
  1345. struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  1346. int ret;
  1347. BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group);
  1348. BUG_ON(ac->ac_status == AC_STATUS_FOUND);
  1349. ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len);
  1350. ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical;
  1351. ret = mb_mark_used(e4b, &ac->ac_b_ex);
  1352. /* preallocation can change ac_b_ex, thus we store actually
  1353. * allocated blocks for history */
  1354. ac->ac_f_ex = ac->ac_b_ex;
  1355. ac->ac_status = AC_STATUS_FOUND;
  1356. ac->ac_tail = ret & 0xffff;
  1357. ac->ac_buddy = ret >> 16;
  1358. /*
  1359. * take the page reference. We want the page to be pinned
  1360. * so that we don't get a ext4_mb_init_cache_call for this
  1361. * group until we update the bitmap. That would mean we
  1362. * double allocate blocks. The reference is dropped
  1363. * in ext4_mb_release_context
  1364. */
  1365. ac->ac_bitmap_page = e4b->bd_bitmap_page;
  1366. get_page(ac->ac_bitmap_page);
  1367. ac->ac_buddy_page = e4b->bd_buddy_page;
  1368. get_page(ac->ac_buddy_page);
  1369. /* on allocation we use ac to track the held semaphore */
  1370. ac->alloc_semp = e4b->alloc_semp;
  1371. e4b->alloc_semp = NULL;
  1372. /* store last allocated for subsequent stream allocation */
  1373. if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
  1374. spin_lock(&sbi->s_md_lock);
  1375. sbi->s_mb_last_group = ac->ac_f_ex.fe_group;
  1376. sbi->s_mb_last_start = ac->ac_f_ex.fe_start;
  1377. spin_unlock(&sbi->s_md_lock);
  1378. }
  1379. }
  1380. /*
  1381. * regular allocator, for general purposes allocation
  1382. */
  1383. static void ext4_mb_check_limits(struct ext4_allocation_context *ac,
  1384. struct ext4_buddy *e4b,
  1385. int finish_group)
  1386. {
  1387. struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  1388. struct ext4_free_extent *bex = &ac->ac_b_ex;
  1389. struct ext4_free_extent *gex = &ac->ac_g_ex;
  1390. struct ext4_free_extent ex;
  1391. int max;
  1392. if (ac->ac_status == AC_STATUS_FOUND)
  1393. return;
  1394. /*
  1395. * We don't want to scan for a whole year
  1396. */
  1397. if (ac->ac_found > sbi->s_mb_max_to_scan &&
  1398. !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
  1399. ac->ac_status = AC_STATUS_BREAK;
  1400. return;
  1401. }
  1402. /*
  1403. * Haven't found good chunk so far, let's continue
  1404. */
  1405. if (bex->fe_len < gex->fe_len)
  1406. return;
  1407. if ((finish_group || ac->ac_found > sbi->s_mb_min_to_scan)
  1408. && bex->fe_group == e4b->bd_group) {
  1409. /* recheck chunk's availability - we don't know
  1410. * when it was found (within this lock-unlock
  1411. * period or not) */
  1412. max = mb_find_extent(e4b, 0, bex->fe_start, gex->fe_len, &ex);
  1413. if (max >= gex->fe_len) {
  1414. ext4_mb_use_best_found(ac, e4b);
  1415. return;
  1416. }
  1417. }
  1418. }
  1419. /*
  1420. * The routine checks whether found extent is good enough. If it is,
  1421. * then the extent gets marked used and flag is set to the context
  1422. * to stop scanning. Otherwise, the extent is compared with the
  1423. * previous found extent and if new one is better, then it's stored
  1424. * in the context. Later, the best found extent will be used, if
  1425. * mballoc can't find good enough extent.
  1426. *
  1427. * FIXME: real allocation policy is to be designed yet!
  1428. */
  1429. static void ext4_mb_measure_extent(struct ext4_allocation_context *ac,
  1430. struct ext4_free_extent *ex,
  1431. struct ext4_buddy *e4b)
  1432. {
  1433. struct ext4_free_extent *bex = &ac->ac_b_ex;
  1434. struct ext4_free_extent *gex = &ac->ac_g_ex;
  1435. BUG_ON(ex->fe_len <= 0);
  1436. BUG_ON(ex->fe_len > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
  1437. BUG_ON(ex->fe_start >= EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
  1438. BUG_ON(ac->ac_status != AC_STATUS_CONTINUE);
  1439. ac->ac_found++;
  1440. /*
  1441. * The special case - take what you catch first
  1442. */
  1443. if (unlikely(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
  1444. *bex = *ex;
  1445. ext4_mb_use_best_found(ac, e4b);
  1446. return;
  1447. }
  1448. /*
  1449. * Let's check whether the chuck is good enough
  1450. */
  1451. if (ex->fe_len == gex->fe_len) {
  1452. *bex = *ex;
  1453. ext4_mb_use_best_found(ac, e4b);
  1454. return;
  1455. }
  1456. /*
  1457. * If this is first found extent, just store it in the context
  1458. */
  1459. if (bex->fe_len == 0) {
  1460. *bex = *ex;
  1461. return;
  1462. }
  1463. /*
  1464. * If new found extent is better, store it in the context
  1465. */
  1466. if (bex->fe_len < gex->fe_len) {
  1467. /* if the request isn't satisfied, any found extent
  1468. * larger than previous best one is better */
  1469. if (ex->fe_len > bex->fe_len)
  1470. *bex = *ex;
  1471. } else if (ex->fe_len > gex->fe_len) {
  1472. /* if the request is satisfied, then we try to find
  1473. * an extent that still satisfy the request, but is
  1474. * smaller than previous one */
  1475. if (ex->fe_len < bex->fe_len)
  1476. *bex = *ex;
  1477. }
  1478. ext4_mb_check_limits(ac, e4b, 0);
  1479. }
  1480. static noinline_for_stack
  1481. int ext4_mb_try_best_found(struct ext4_allocation_context *ac,
  1482. struct ext4_buddy *e4b)
  1483. {
  1484. struct ext4_free_extent ex = ac->ac_b_ex;
  1485. ext4_group_t group = ex.fe_group;
  1486. int max;
  1487. int err;
  1488. BUG_ON(ex.fe_len <= 0);
  1489. err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
  1490. if (err)
  1491. return err;
  1492. ext4_lock_group(ac->ac_sb, group);
  1493. max = mb_find_extent(e4b, 0, ex.fe_start, ex.fe_len, &ex);
  1494. if (max > 0) {
  1495. ac->ac_b_ex = ex;
  1496. ext4_mb_use_best_found(ac, e4b);
  1497. }
  1498. ext4_unlock_group(ac->ac_sb, group);
  1499. ext4_mb_unload_buddy(e4b);
  1500. return 0;
  1501. }
  1502. static noinline_for_stack
  1503. int ext4_mb_find_by_goal(struct ext4_allocation_context *ac,
  1504. struct ext4_buddy *e4b)
  1505. {
  1506. ext4_group_t group = ac->ac_g_ex.fe_group;
  1507. int max;
  1508. int err;
  1509. struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  1510. struct ext4_free_extent ex;
  1511. if (!(ac->ac_flags & EXT4_MB_HINT_TRY_GOAL))
  1512. return 0;
  1513. err = ext4_mb_load_buddy(ac->ac_sb, group, e4b);
  1514. if (err)
  1515. return err;
  1516. ext4_lock_group(ac->ac_sb, group);
  1517. max = mb_find_extent(e4b, 0, ac->ac_g_ex.fe_start,
  1518. ac->ac_g_ex.fe_len, &ex);
  1519. if (max >= ac->ac_g_ex.fe_len && ac->ac_g_ex.fe_len == sbi->s_stripe) {
  1520. ext4_fsblk_t start;
  1521. start = ext4_group_first_block_no(ac->ac_sb, e4b->bd_group) +
  1522. ex.fe_start;
  1523. /* use do_div to get remainder (would be 64-bit modulo) */
  1524. if (do_div(start, sbi->s_stripe) == 0) {
  1525. ac->ac_found++;
  1526. ac->ac_b_ex = ex;
  1527. ext4_mb_use_best_found(ac, e4b);
  1528. }
  1529. } else if (max >= ac->ac_g_ex.fe_len) {
  1530. BUG_ON(ex.fe_len <= 0);
  1531. BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
  1532. BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
  1533. ac->ac_found++;
  1534. ac->ac_b_ex = ex;
  1535. ext4_mb_use_best_found(ac, e4b);
  1536. } else if (max > 0 && (ac->ac_flags & EXT4_MB_HINT_MERGE)) {
  1537. /* Sometimes, caller may want to merge even small
  1538. * number of blocks to an existing extent */
  1539. BUG_ON(ex.fe_len <= 0);
  1540. BUG_ON(ex.fe_group != ac->ac_g_ex.fe_group);
  1541. BUG_ON(ex.fe_start != ac->ac_g_ex.fe_start);
  1542. ac->ac_found++;
  1543. ac->ac_b_ex = ex;
  1544. ext4_mb_use_best_found(ac, e4b);
  1545. }
  1546. ext4_unlock_group(ac->ac_sb, group);
  1547. ext4_mb_unload_buddy(e4b);
  1548. return 0;
  1549. }
  1550. /*
  1551. * The routine scans buddy structures (not bitmap!) from given order
  1552. * to max order and tries to find big enough chunk to satisfy the req
  1553. */
  1554. static noinline_for_stack
  1555. void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
  1556. struct ext4_buddy *e4b)
  1557. {
  1558. struct super_block *sb = ac->ac_sb;
  1559. struct ext4_group_info *grp = e4b->bd_info;
  1560. void *buddy;
  1561. int i;
  1562. int k;
  1563. int max;
  1564. BUG_ON(ac->ac_2order <= 0);
  1565. for (i = ac->ac_2order; i <= sb->s_blocksize_bits + 1; i++) {
  1566. if (grp->bb_counters[i] == 0)
  1567. continue;
  1568. buddy = mb_find_buddy(e4b, i, &max);
  1569. BUG_ON(buddy == NULL);
  1570. k = mb_find_next_zero_bit(buddy, max, 0);
  1571. BUG_ON(k >= max);
  1572. ac->ac_found++;
  1573. ac->ac_b_ex.fe_len = 1 << i;
  1574. ac->ac_b_ex.fe_start = k << i;
  1575. ac->ac_b_ex.fe_group = e4b->bd_group;
  1576. ext4_mb_use_best_found(ac, e4b);
  1577. BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
  1578. if (EXT4_SB(sb)->s_mb_stats)
  1579. atomic_inc(&EXT4_SB(sb)->s_bal_2orders);
  1580. break;
  1581. }
  1582. }
  1583. /*
  1584. * The routine scans the group and measures all found extents.
  1585. * In order to optimize scanning, caller must pass number of
  1586. * free blocks in the group, so the routine can know upper limit.
  1587. */
  1588. static noinline_for_stack
  1589. void ext4_mb_complex_scan_group(struct ext4_allocation_context *ac,
  1590. struct ext4_buddy *e4b)
  1591. {
  1592. struct super_block *sb = ac->ac_sb;
  1593. void *bitmap = EXT4_MB_BITMAP(e4b);
  1594. struct ext4_free_extent ex;
  1595. int i;
  1596. int free;
  1597. free = e4b->bd_info->bb_free;
  1598. BUG_ON(free <= 0);
  1599. i = e4b->bd_info->bb_first_free;
  1600. while (free && ac->ac_status == AC_STATUS_CONTINUE) {
  1601. i = mb_find_next_zero_bit(bitmap,
  1602. EXT4_BLOCKS_PER_GROUP(sb), i);
  1603. if (i >= EXT4_BLOCKS_PER_GROUP(sb)) {
  1604. /*
  1605. * IF we have corrupt bitmap, we won't find any
  1606. * free blocks even though group info says we
  1607. * we have free blocks
  1608. */
  1609. ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
  1610. "%d free blocks as per "
  1611. "group info. But bitmap says 0",
  1612. free);
  1613. break;
  1614. }
  1615. mb_find_extent(e4b, 0, i, ac->ac_g_ex.fe_len, &ex);
  1616. BUG_ON(ex.fe_len <= 0);
  1617. if (free < ex.fe_len) {
  1618. ext4_grp_locked_error(sb, e4b->bd_group, 0, 0,
  1619. "%d free blocks as per "
  1620. "group info. But got %d blocks",
  1621. free, ex.fe_len);
  1622. /*
  1623. * The number of free blocks differs. This mostly
  1624. * indicate that the bitmap is corrupt. So exit
  1625. * without claiming the space.
  1626. */
  1627. break;
  1628. }
  1629. ext4_mb_measure_extent(ac, &ex, e4b);
  1630. i += ex.fe_len;
  1631. free -= ex.fe_len;
  1632. }
  1633. ext4_mb_check_limits(ac, e4b, 1);
  1634. }
  1635. /*
  1636. * This is a special case for storages like raid5
  1637. * we try to find stripe-aligned chunks for stripe-size-multiple requests
  1638. */
  1639. static noinline_for_stack
  1640. void ext4_mb_scan_aligned(struct ext4_allocation_context *ac,
  1641. struct ext4_buddy *e4b)
  1642. {
  1643. struct super_block *sb = ac->ac_sb;
  1644. struct ext4_sb_info *sbi = EXT4_SB(sb);
  1645. void *bitmap = EXT4_MB_BITMAP(e4b);
  1646. struct ext4_free_extent ex;
  1647. ext4_fsblk_t first_group_block;
  1648. ext4_fsblk_t a;
  1649. ext4_grpblk_t i;
  1650. int max;
  1651. BUG_ON(sbi->s_stripe == 0);
  1652. /* find first stripe-aligned block in group */
  1653. first_group_block = ext4_group_first_block_no(sb, e4b->bd_group);
  1654. a = first_group_block + sbi->s_stripe - 1;
  1655. do_div(a, sbi->s_stripe);
  1656. i = (a * sbi->s_stripe) - first_group_block;
  1657. while (i < EXT4_BLOCKS_PER_GROUP(sb)) {
  1658. if (!mb_test_bit(i, bitmap)) {
  1659. max = mb_find_extent(e4b, 0, i, sbi->s_stripe, &ex);
  1660. if (max >= sbi->s_stripe) {
  1661. ac->ac_found++;
  1662. ac->ac_b_ex = ex;
  1663. ext4_mb_use_best_found(ac, e4b);
  1664. break;
  1665. }
  1666. }
  1667. i += sbi->s_stripe;
  1668. }
  1669. }
  1670. /* This is now called BEFORE we load the buddy bitmap. */
  1671. static int ext4_mb_good_group(struct ext4_allocation_context *ac,
  1672. ext4_group_t group, int cr)
  1673. {
  1674. unsigned free, fragments;
  1675. int flex_size = ext4_flex_bg_size(EXT4_SB(ac->ac_sb));
  1676. struct ext4_group_info *grp = ext4_get_group_info(ac->ac_sb, group);
  1677. BUG_ON(cr < 0 || cr >= 4);
  1678. /* We only do this if the grp has never been initialized */
  1679. if (unlikely(EXT4_MB_GRP_NEED_INIT(grp))) {
  1680. int ret = ext4_mb_init_group(ac->ac_sb, group);
  1681. if (ret)
  1682. return 0;
  1683. }
  1684. free = grp->bb_free;
  1685. fragments = grp->bb_fragments;
  1686. if (free == 0)
  1687. return 0;
  1688. if (fragments == 0)
  1689. return 0;
  1690. switch (cr) {
  1691. case 0:
  1692. BUG_ON(ac->ac_2order == 0);
  1693. if (grp->bb_largest_free_order < ac->ac_2order)
  1694. return 0;
  1695. /* Avoid using the first bg of a flexgroup for data files */
  1696. if ((ac->ac_flags & EXT4_MB_HINT_DATA) &&
  1697. (flex_size >= EXT4_FLEX_SIZE_DIR_ALLOC_SCHEME) &&
  1698. ((group % flex_size) == 0))
  1699. return 0;
  1700. return 1;
  1701. case 1:
  1702. if ((free / fragments) >= ac->ac_g_ex.fe_len)
  1703. return 1;
  1704. break;
  1705. case 2:
  1706. if (free >= ac->ac_g_ex.fe_len)
  1707. return 1;
  1708. break;
  1709. case 3:
  1710. return 1;
  1711. default:
  1712. BUG();
  1713. }
  1714. return 0;
  1715. }
  1716. /*
  1717. * lock the group_info alloc_sem of all the groups
  1718. * belonging to the same buddy cache page. This
  1719. * make sure other parallel operation on the buddy
  1720. * cache doesn't happen whild holding the buddy cache
  1721. * lock
  1722. */
  1723. int ext4_mb_get_buddy_cache_lock(struct super_block *sb, ext4_group_t group)
  1724. {
  1725. int i;
  1726. int block, pnum;
  1727. int blocks_per_page;
  1728. int groups_per_page;
  1729. ext4_group_t ngroups = ext4_get_groups_count(sb);
  1730. ext4_group_t first_group;
  1731. struct ext4_group_info *grp;
  1732. blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
  1733. /*
  1734. * the buddy cache inode stores the block bitmap
  1735. * and buddy information in consecutive blocks.
  1736. * So for each group we need two blocks.
  1737. */
  1738. block = group * 2;
  1739. pnum = block / blocks_per_page;
  1740. first_group = pnum * blocks_per_page / 2;
  1741. groups_per_page = blocks_per_page >> 1;
  1742. if (groups_per_page == 0)
  1743. groups_per_page = 1;
  1744. /* read all groups the page covers into the cache */
  1745. for (i = 0; i < groups_per_page; i++) {
  1746. if ((first_group + i) >= ngroups)
  1747. break;
  1748. grp = ext4_get_group_info(sb, first_group + i);
  1749. /* take all groups write allocation
  1750. * semaphore. This make sure there is
  1751. * no block allocation going on in any
  1752. * of that groups
  1753. */
  1754. down_write_nested(&grp->alloc_sem, i);
  1755. }
  1756. return i;
  1757. }
  1758. void ext4_mb_put_buddy_cache_lock(struct super_block *sb,
  1759. ext4_group_t group, int locked_group)
  1760. {
  1761. int i;
  1762. int block, pnum;
  1763. int blocks_per_page;
  1764. ext4_group_t first_group;
  1765. struct ext4_group_info *grp;
  1766. blocks_per_page = PAGE_CACHE_SIZE / sb->s_blocksize;
  1767. /*
  1768. * the buddy cache inode stores the block bitmap
  1769. * and buddy information in consecutive blocks.
  1770. * So for each group we need two blocks.
  1771. */
  1772. block = group * 2;
  1773. pnum = block / blocks_per_page;
  1774. first_group = pnum * blocks_per_page / 2;
  1775. /* release locks on all the groups */
  1776. for (i = 0; i < locked_group; i++) {
  1777. grp = ext4_get_group_info(sb, first_group + i);
  1778. /* take all groups write allocation
  1779. * semaphore. This make sure there is
  1780. * no block allocation going on in any
  1781. * of that groups
  1782. */
  1783. up_write(&grp->alloc_sem);
  1784. }
  1785. }
  1786. static noinline_for_stack int
  1787. ext4_mb_regular_allocator(struct ext4_allocation_context *ac)
  1788. {
  1789. ext4_group_t ngroups, group, i;
  1790. int cr;
  1791. int err = 0;
  1792. struct ext4_sb_info *sbi;
  1793. struct super_block *sb;
  1794. struct ext4_buddy e4b;
  1795. sb = ac->ac_sb;
  1796. sbi = EXT4_SB(sb);
  1797. ngroups = ext4_get_groups_count(sb);
  1798. /* non-extent files are limited to low blocks/groups */
  1799. if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)))
  1800. ngroups = sbi->s_blockfile_groups;
  1801. BUG_ON(ac->ac_status == AC_STATUS_FOUND);
  1802. /* first, try the goal */
  1803. err = ext4_mb_find_by_goal(ac, &e4b);
  1804. if (err || ac->ac_status == AC_STATUS_FOUND)
  1805. goto out;
  1806. if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
  1807. goto out;
  1808. /*
  1809. * ac->ac2_order is set only if the fe_len is a power of 2
  1810. * if ac2_order is set we also set criteria to 0 so that we
  1811. * try exact allocation using buddy.
  1812. */
  1813. i = fls(ac->ac_g_ex.fe_len);
  1814. ac->ac_2order = 0;
  1815. /*
  1816. * We search using buddy data only if the order of the request
  1817. * is greater than equal to the sbi_s_mb_order2_reqs
  1818. * You can tune it via /sys/fs/ext4/<partition>/mb_order2_req
  1819. */
  1820. if (i >= sbi->s_mb_order2_reqs) {
  1821. /*
  1822. * This should tell if fe_len is exactly power of 2
  1823. */
  1824. if ((ac->ac_g_ex.fe_len & (~(1 << (i - 1)))) == 0)
  1825. ac->ac_2order = i - 1;
  1826. }
  1827. /* if stream allocation is enabled, use global goal */
  1828. if (ac->ac_flags & EXT4_MB_STREAM_ALLOC) {
  1829. /* TBD: may be hot point */
  1830. spin_lock(&sbi->s_md_lock);
  1831. ac->ac_g_ex.fe_group = sbi->s_mb_last_group;
  1832. ac->ac_g_ex.fe_start = sbi->s_mb_last_start;
  1833. spin_unlock(&sbi->s_md_lock);
  1834. }
  1835. /* Let's just scan groups to find more-less suitable blocks */
  1836. cr = ac->ac_2order ? 0 : 1;
  1837. /*
  1838. * cr == 0 try to get exact allocation,
  1839. * cr == 3 try to get anything
  1840. */
  1841. repeat:
  1842. for (; cr < 4 && ac->ac_status == AC_STATUS_CONTINUE; cr++) {
  1843. ac->ac_criteria = cr;
  1844. /*
  1845. * searching for the right group start
  1846. * from the goal value specified
  1847. */
  1848. group = ac->ac_g_ex.fe_group;
  1849. for (i = 0; i < ngroups; group++, i++) {
  1850. if (group == ngroups)
  1851. group = 0;
  1852. /* This now checks without needing the buddy page */
  1853. if (!ext4_mb_good_group(ac, group, cr))
  1854. continue;
  1855. err = ext4_mb_load_buddy(sb, group, &e4b);
  1856. if (err)
  1857. goto out;
  1858. ext4_lock_group(sb, group);
  1859. /*
  1860. * We need to check again after locking the
  1861. * block group
  1862. */
  1863. if (!ext4_mb_good_group(ac, group, cr)) {
  1864. ext4_unlock_group(sb, group);
  1865. ext4_mb_unload_buddy(&e4b);
  1866. continue;
  1867. }
  1868. ac->ac_groups_scanned++;
  1869. if (cr == 0)
  1870. ext4_mb_simple_scan_group(ac, &e4b);
  1871. else if (cr == 1 && sbi->s_stripe &&
  1872. !(ac->ac_g_ex.fe_len % sbi->s_stripe))
  1873. ext4_mb_scan_aligned(ac, &e4b);
  1874. else
  1875. ext4_mb_complex_scan_group(ac, &e4b);
  1876. ext4_unlock_group(sb, group);
  1877. ext4_mb_unload_buddy(&e4b);
  1878. if (ac->ac_status != AC_STATUS_CONTINUE)
  1879. break;
  1880. }
  1881. }
  1882. if (ac->ac_b_ex.fe_len > 0 && ac->ac_status != AC_STATUS_FOUND &&
  1883. !(ac->ac_flags & EXT4_MB_HINT_FIRST)) {
  1884. /*
  1885. * We've been searching too long. Let's try to allocate
  1886. * the best chunk we've found so far
  1887. */
  1888. ext4_mb_try_best_found(ac, &e4b);
  1889. if (ac->ac_status != AC_STATUS_FOUND) {
  1890. /*
  1891. * Someone more lucky has already allocated it.
  1892. * The only thing we can do is just take first
  1893. * found block(s)
  1894. printk(KERN_DEBUG "EXT4-fs: someone won our chunk\n");
  1895. */
  1896. ac->ac_b_ex.fe_group = 0;
  1897. ac->ac_b_ex.fe_start = 0;
  1898. ac->ac_b_ex.fe_len = 0;
  1899. ac->ac_status = AC_STATUS_CONTINUE;
  1900. ac->ac_flags |= EXT4_MB_HINT_FIRST;
  1901. cr = 3;
  1902. atomic_inc(&sbi->s_mb_lost_chunks);
  1903. goto repeat;
  1904. }
  1905. }
  1906. out:
  1907. return err;
  1908. }
  1909. static void *ext4_mb_seq_groups_start(struct seq_file *seq, loff_t *pos)
  1910. {
  1911. struct super_block *sb = seq->private;
  1912. ext4_group_t group;
  1913. if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
  1914. return NULL;
  1915. group = *pos + 1;
  1916. return (void *) ((unsigned long) group);
  1917. }
  1918. static void *ext4_mb_seq_groups_next(struct seq_file *seq, void *v, loff_t *pos)
  1919. {
  1920. struct super_block *sb = seq->private;
  1921. ext4_group_t group;
  1922. ++*pos;
  1923. if (*pos < 0 || *pos >= ext4_get_groups_count(sb))
  1924. return NULL;
  1925. group = *pos + 1;
  1926. return (void *) ((unsigned long) group);
  1927. }
  1928. static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
  1929. {
  1930. struct super_block *sb = seq->private;
  1931. ext4_group_t group = (ext4_group_t) ((unsigned long) v);
  1932. int i;
  1933. int err;
  1934. struct ext4_buddy e4b;
  1935. struct sg {
  1936. struct ext4_group_info info;
  1937. ext4_grpblk_t counters[16];
  1938. } sg;
  1939. group--;
  1940. if (group == 0)
  1941. seq_printf(seq, "#%-5s: %-5s %-5s %-5s "
  1942. "[ %-5s %-5s %-5s %-5s %-5s %-5s %-5s "
  1943. "%-5s %-5s %-5s %-5s %-5s %-5s %-5s ]\n",
  1944. "group", "free", "frags", "first",
  1945. "2^0", "2^1", "2^2", "2^3", "2^4", "2^5", "2^6",
  1946. "2^7", "2^8", "2^9", "2^10", "2^11", "2^12", "2^13");
  1947. i = (sb->s_blocksize_bits + 2) * sizeof(sg.info.bb_counters[0]) +
  1948. sizeof(struct ext4_group_info);
  1949. err = ext4_mb_load_buddy(sb, group, &e4b);
  1950. if (err) {
  1951. seq_printf(seq, "#%-5u: I/O error\n", group);
  1952. return 0;
  1953. }
  1954. ext4_lock_group(sb, group);
  1955. memcpy(&sg, ext4_get_group_info(sb, group), i);
  1956. ext4_unlock_group(sb, group);
  1957. ext4_mb_unload_buddy(&e4b);
  1958. seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
  1959. sg.info.bb_fragments, sg.info.bb_first_free);
  1960. for (i = 0; i <= 13; i++)
  1961. seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
  1962. sg.info.bb_counters[i] : 0);
  1963. seq_printf(seq, " ]\n");
  1964. return 0;
  1965. }
  1966. static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
  1967. {
  1968. }
  1969. static const struct seq_operations ext4_mb_seq_groups_ops = {
  1970. .start = ext4_mb_seq_groups_start,
  1971. .next = ext4_mb_seq_groups_next,
  1972. .stop = ext4_mb_seq_groups_stop,
  1973. .show = ext4_mb_seq_groups_show,
  1974. };
  1975. static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
  1976. {
  1977. struct super_block *sb = PDE(inode)->data;
  1978. int rc;
  1979. rc = seq_open(file, &ext4_mb_seq_groups_ops);
  1980. if (rc == 0) {
  1981. struct seq_file *m = file->private_data;
  1982. m->private = sb;
  1983. }
  1984. return rc;
  1985. }
  1986. static const struct file_operations ext4_mb_seq_groups_fops = {
  1987. .owner = THIS_MODULE,
  1988. .open = ext4_mb_seq_groups_open,
  1989. .read = seq_read,
  1990. .llseek = seq_lseek,
  1991. .release = seq_release,
  1992. };
  1993. static struct kmem_cache *get_groupinfo_cache(int blocksize_bits)
  1994. {
  1995. int cache_index = blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
  1996. struct kmem_cache *cachep = ext4_groupinfo_caches[cache_index];
  1997. BUG_ON(!cachep);
  1998. return cachep;
  1999. }
  2000. /* Create and initialize ext4_group_info data for the given group. */
  2001. int ext4_mb_add_groupinfo(struct super_block *sb, ext4_group_t group,
  2002. struct ext4_group_desc *desc)
  2003. {
  2004. int i;
  2005. int metalen = 0;
  2006. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2007. struct ext4_group_info **meta_group_info;
  2008. struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
  2009. /*
  2010. * First check if this group is the first of a reserved block.
  2011. * If it's true, we have to allocate a new table of pointers
  2012. * to ext4_group_info structures
  2013. */
  2014. if (group % EXT4_DESC_PER_BLOCK(sb) == 0) {
  2015. metalen = sizeof(*meta_group_info) <<
  2016. EXT4_DESC_PER_BLOCK_BITS(sb);
  2017. meta_group_info = kmalloc(metalen, GFP_KERNEL);
  2018. if (meta_group_info == NULL) {
  2019. printk(KERN_ERR "EXT4-fs: can't allocate mem for a "
  2020. "buddy group\n");
  2021. goto exit_meta_group_info;
  2022. }
  2023. sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)] =
  2024. meta_group_info;
  2025. }
  2026. meta_group_info =
  2027. sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)];
  2028. i = group & (EXT4_DESC_PER_BLOCK(sb) - 1);
  2029. meta_group_info[i] = kmem_cache_alloc(cachep, GFP_KERNEL);
  2030. if (meta_group_info[i] == NULL) {
  2031. printk(KERN_ERR "EXT4-fs: can't allocate buddy mem\n");
  2032. goto exit_group_info;
  2033. }
  2034. memset(meta_group_info[i], 0, kmem_cache_size(cachep));
  2035. set_bit(EXT4_GROUP_INFO_NEED_INIT_BIT,
  2036. &(meta_group_info[i]->bb_state));
  2037. /*
  2038. * initialize bb_free to be able to skip
  2039. * empty groups without initialization
  2040. */
  2041. if (desc->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
  2042. meta_group_info[i]->bb_free =
  2043. ext4_free_blocks_after_init(sb, group, desc);
  2044. } else {
  2045. meta_group_info[i]->bb_free =
  2046. ext4_free_blks_count(sb, desc);
  2047. }
  2048. INIT_LIST_HEAD(&meta_group_info[i]->bb_prealloc_list);
  2049. init_rwsem(&meta_group_info[i]->alloc_sem);
  2050. meta_group_info[i]->bb_free_root = RB_ROOT;
  2051. meta_group_info[i]->bb_largest_free_order = -1; /* uninit */
  2052. #ifdef DOUBLE_CHECK
  2053. {
  2054. struct buffer_head *bh;
  2055. meta_group_info[i]->bb_bitmap =
  2056. kmalloc(sb->s_blocksize, GFP_KERNEL);
  2057. BUG_ON(meta_group_info[i]->bb_bitmap == NULL);
  2058. bh = ext4_read_block_bitmap(sb, group);
  2059. BUG_ON(bh == NULL);
  2060. memcpy(meta_group_info[i]->bb_bitmap, bh->b_data,
  2061. sb->s_blocksize);
  2062. put_bh(bh);
  2063. }
  2064. #endif
  2065. return 0;
  2066. exit_group_info:
  2067. /* If a meta_group_info table has been allocated, release it now */
  2068. if (group % EXT4_DESC_PER_BLOCK(sb) == 0)
  2069. kfree(sbi->s_group_info[group >> EXT4_DESC_PER_BLOCK_BITS(sb)]);
  2070. exit_meta_group_info:
  2071. return -ENOMEM;
  2072. } /* ext4_mb_add_groupinfo */
  2073. static int ext4_mb_init_backend(struct super_block *sb)
  2074. {
  2075. ext4_group_t ngroups = ext4_get_groups_count(sb);
  2076. ext4_group_t i;
  2077. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2078. struct ext4_super_block *es = sbi->s_es;
  2079. int num_meta_group_infos;
  2080. int num_meta_group_infos_max;
  2081. int array_size;
  2082. struct ext4_group_desc *desc;
  2083. struct kmem_cache *cachep;
  2084. /* This is the number of blocks used by GDT */
  2085. num_meta_group_infos = (ngroups + EXT4_DESC_PER_BLOCK(sb) -
  2086. 1) >> EXT4_DESC_PER_BLOCK_BITS(sb);
  2087. /*
  2088. * This is the total number of blocks used by GDT including
  2089. * the number of reserved blocks for GDT.
  2090. * The s_group_info array is allocated with this value
  2091. * to allow a clean online resize without a complex
  2092. * manipulation of pointer.
  2093. * The drawback is the unused memory when no resize
  2094. * occurs but it's very low in terms of pages
  2095. * (see comments below)
  2096. * Need to handle this properly when META_BG resizing is allowed
  2097. */
  2098. num_meta_group_infos_max = num_meta_group_infos +
  2099. le16_to_cpu(es->s_reserved_gdt_blocks);
  2100. /*
  2101. * array_size is the size of s_group_info array. We round it
  2102. * to the next power of two because this approximation is done
  2103. * internally by kmalloc so we can have some more memory
  2104. * for free here (e.g. may be used for META_BG resize).
  2105. */
  2106. array_size = 1;
  2107. while (array_size < sizeof(*sbi->s_group_info) *
  2108. num_meta_group_infos_max)
  2109. array_size = array_size << 1;
  2110. /* An 8TB filesystem with 64-bit pointers requires a 4096 byte
  2111. * kmalloc. A 128kb malloc should suffice for a 256TB filesystem.
  2112. * So a two level scheme suffices for now. */
  2113. sbi->s_group_info = kmalloc(array_size, GFP_KERNEL);
  2114. if (sbi->s_group_info == NULL) {
  2115. printk(KERN_ERR "EXT4-fs: can't allocate buddy meta group\n");
  2116. return -ENOMEM;
  2117. }
  2118. sbi->s_buddy_cache = new_inode(sb);
  2119. if (sbi->s_buddy_cache == NULL) {
  2120. printk(KERN_ERR "EXT4-fs: can't get new inode\n");
  2121. goto err_freesgi;
  2122. }
  2123. EXT4_I(sbi->s_buddy_cache)->i_disksize = 0;
  2124. for (i = 0; i < ngroups; i++) {
  2125. desc = ext4_get_group_desc(sb, i, NULL);
  2126. if (desc == NULL) {
  2127. printk(KERN_ERR
  2128. "EXT4-fs: can't read descriptor %u\n", i);
  2129. goto err_freebuddy;
  2130. }
  2131. if (ext4_mb_add_groupinfo(sb, i, desc) != 0)
  2132. goto err_freebuddy;
  2133. }
  2134. return 0;
  2135. err_freebuddy:
  2136. cachep = get_groupinfo_cache(sb->s_blocksize_bits);
  2137. while (i-- > 0)
  2138. kmem_cache_free(cachep, ext4_get_group_info(sb, i));
  2139. i = num_meta_group_infos;
  2140. while (i-- > 0)
  2141. kfree(sbi->s_group_info[i]);
  2142. iput(sbi->s_buddy_cache);
  2143. err_freesgi:
  2144. kfree(sbi->s_group_info);
  2145. return -ENOMEM;
  2146. }
  2147. int ext4_mb_init(struct super_block *sb, int needs_recovery)
  2148. {
  2149. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2150. unsigned i, j;
  2151. unsigned offset;
  2152. unsigned max;
  2153. int ret;
  2154. int cache_index;
  2155. struct kmem_cache *cachep;
  2156. char *namep = NULL;
  2157. i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_offsets);
  2158. sbi->s_mb_offsets = kmalloc(i, GFP_KERNEL);
  2159. if (sbi->s_mb_offsets == NULL) {
  2160. ret = -ENOMEM;
  2161. goto out;
  2162. }
  2163. i = (sb->s_blocksize_bits + 2) * sizeof(*sbi->s_mb_maxs);
  2164. sbi->s_mb_maxs = kmalloc(i, GFP_KERNEL);
  2165. if (sbi->s_mb_maxs == NULL) {
  2166. ret = -ENOMEM;
  2167. goto out;
  2168. }
  2169. cache_index = sb->s_blocksize_bits - EXT4_MIN_BLOCK_LOG_SIZE;
  2170. cachep = ext4_groupinfo_caches[cache_index];
  2171. if (!cachep) {
  2172. char name[32];
  2173. int len = offsetof(struct ext4_group_info,
  2174. bb_counters[sb->s_blocksize_bits + 2]);
  2175. sprintf(name, "ext4_groupinfo_%d", sb->s_blocksize_bits);
  2176. namep = kstrdup(name, GFP_KERNEL);
  2177. if (!namep) {
  2178. ret = -ENOMEM;
  2179. goto out;
  2180. }
  2181. /* Need to free the kmem_cache_name() when we
  2182. * destroy the slab */
  2183. cachep = kmem_cache_create(namep, len, 0,
  2184. SLAB_RECLAIM_ACCOUNT, NULL);
  2185. if (!cachep) {
  2186. ret = -ENOMEM;
  2187. goto out;
  2188. }
  2189. ext4_groupinfo_caches[cache_index] = cachep;
  2190. }
  2191. /* order 0 is regular bitmap */
  2192. sbi->s_mb_maxs[0] = sb->s_blocksize << 3;
  2193. sbi->s_mb_offsets[0] = 0;
  2194. i = 1;
  2195. offset = 0;
  2196. max = sb->s_blocksize << 2;
  2197. do {
  2198. sbi->s_mb_offsets[i] = offset;
  2199. sbi->s_mb_maxs[i] = max;
  2200. offset += 1 << (sb->s_blocksize_bits - i);
  2201. max = max >> 1;
  2202. i++;
  2203. } while (i <= sb->s_blocksize_bits + 1);
  2204. /* init file for buddy data */
  2205. ret = ext4_mb_init_backend(sb);
  2206. if (ret != 0) {
  2207. goto out;
  2208. }
  2209. spin_lock_init(&sbi->s_md_lock);
  2210. spin_lock_init(&sbi->s_bal_lock);
  2211. sbi->s_mb_max_to_scan = MB_DEFAULT_MAX_TO_SCAN;
  2212. sbi->s_mb_min_to_scan = MB_DEFAULT_MIN_TO_SCAN;
  2213. sbi->s_mb_stats = MB_DEFAULT_STATS;
  2214. sbi->s_mb_stream_request = MB_DEFAULT_STREAM_THRESHOLD;
  2215. sbi->s_mb_order2_reqs = MB_DEFAULT_ORDER2_REQS;
  2216. sbi->s_mb_group_prealloc = MB_DEFAULT_GROUP_PREALLOC;
  2217. sbi->s_locality_groups = alloc_percpu(struct ext4_locality_group);
  2218. if (sbi->s_locality_groups == NULL) {
  2219. ret = -ENOMEM;
  2220. goto out;
  2221. }
  2222. for_each_possible_cpu(i) {
  2223. struct ext4_locality_group *lg;
  2224. lg = per_cpu_ptr(sbi->s_locality_groups, i);
  2225. mutex_init(&lg->lg_mutex);
  2226. for (j = 0; j < PREALLOC_TB_SIZE; j++)
  2227. INIT_LIST_HEAD(&lg->lg_prealloc_list[j]);
  2228. spin_lock_init(&lg->lg_prealloc_lock);
  2229. }
  2230. if (sbi->s_proc)
  2231. proc_create_data("mb_groups", S_IRUGO, sbi->s_proc,
  2232. &ext4_mb_seq_groups_fops, sb);
  2233. if (sbi->s_journal)
  2234. sbi->s_journal->j_commit_callback = release_blocks_on_commit;
  2235. out:
  2236. if (ret) {
  2237. kfree(sbi->s_mb_offsets);
  2238. kfree(sbi->s_mb_maxs);
  2239. kfree(namep);
  2240. }
  2241. return ret;
  2242. }
  2243. /* need to called with the ext4 group lock held */
  2244. static void ext4_mb_cleanup_pa(struct ext4_group_info *grp)
  2245. {
  2246. struct ext4_prealloc_space *pa;
  2247. struct list_head *cur, *tmp;
  2248. int count = 0;
  2249. list_for_each_safe(cur, tmp, &grp->bb_prealloc_list) {
  2250. pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
  2251. list_del(&pa->pa_group_list);
  2252. count++;
  2253. kmem_cache_free(ext4_pspace_cachep, pa);
  2254. }
  2255. if (count)
  2256. mb_debug(1, "mballoc: %u PAs left\n", count);
  2257. }
  2258. int ext4_mb_release(struct super_block *sb)
  2259. {
  2260. ext4_group_t ngroups = ext4_get_groups_count(sb);
  2261. ext4_group_t i;
  2262. int num_meta_group_infos;
  2263. struct ext4_group_info *grinfo;
  2264. struct ext4_sb_info *sbi = EXT4_SB(sb);
  2265. struct kmem_cache *cachep = get_groupinfo_cache(sb->s_blocksize_bits);
  2266. if (sbi->s_group_info) {
  2267. for (i = 0; i < ngroups; i++) {
  2268. grinfo = ext4_get_group_info(sb, i);
  2269. #ifdef DOUBLE_CHECK
  2270. kfree(grinfo->bb_bitmap);
  2271. #endif
  2272. ext4_lock_group(sb, i);
  2273. ext4_mb_cleanup_pa(grinfo);
  2274. ext4_unlock_group(sb, i);
  2275. kmem_cache_free(cachep, grinfo);
  2276. }
  2277. num_meta_group_infos = (ngroups +
  2278. EXT4_DESC_PER_BLOCK(sb) - 1) >>
  2279. EXT4_DESC_PER_BLOCK_BITS(sb);
  2280. for (i = 0; i < num_meta_group_infos; i++)
  2281. kfree(sbi->s_group_info[i]);
  2282. kfree(sbi->s_group_info);
  2283. }
  2284. kfree(sbi->s_mb_offsets);
  2285. kfree(sbi->s_mb_maxs);
  2286. if (sbi->s_buddy_cache)
  2287. iput(sbi->s_buddy_cache);
  2288. if (sbi->s_mb_stats) {
  2289. printk(KERN_INFO
  2290. "EXT4-fs: mballoc: %u blocks %u reqs (%u success)\n",
  2291. atomic_read(&sbi->s_bal_allocated),
  2292. atomic_read(&sbi->s_bal_reqs),
  2293. atomic_read(&sbi->s_bal_success));
  2294. printk(KERN_INFO
  2295. "EXT4-fs: mballoc: %u extents scanned, %u goal hits, "
  2296. "%u 2^N hits, %u breaks, %u lost\n",
  2297. atomic_read(&sbi->s_bal_ex_scanned),
  2298. atomic_read(&sbi->s_bal_goals),
  2299. atomic_read(&sbi->s_bal_2orders),
  2300. atomic_read(&sbi->s_bal_breaks),
  2301. atomic_read(&sbi->s_mb_lost_chunks));
  2302. printk(KERN_INFO
  2303. "EXT4-fs: mballoc: %lu generated and it took %Lu\n",
  2304. sbi->s_mb_buddies_generated++,
  2305. sbi->s_mb_generation_time);
  2306. printk(KERN_INFO
  2307. "EXT4-fs: mballoc: %u preallocated, %u discarded\n",
  2308. atomic_read(&sbi->s_mb_preallocated),
  2309. atomic_read(&sbi->s_mb_discarded));
  2310. }
  2311. free_percpu(sbi->s_locality_groups);
  2312. if (sbi->s_proc)
  2313. remove_proc_entry("mb_groups", sbi->s_proc);
  2314. return 0;
  2315. }
  2316. static inline int ext4_issue_discard(struct super_block *sb,
  2317. ext4_group_t block_group, ext4_grpblk_t block, int count)
  2318. {
  2319. int ret;
  2320. ext4_fsblk_t discard_block;
  2321. discard_block = block + ext4_group_first_block_no(sb, block_group);
  2322. trace_ext4_discard_blocks(sb,
  2323. (unsigned long long) discard_block, count);
  2324. ret = sb_issue_discard(sb, discard_block, count);
  2325. if (ret == -EOPNOTSUPP) {
  2326. ext4_warning(sb, "discard not supported, disabling");
  2327. clear_opt(EXT4_SB(sb)->s_mount_opt, DISCARD);
  2328. }
  2329. return ret;
  2330. }
  2331. /*
  2332. * This function is called by the jbd2 layer once the commit has finished,
  2333. * so we know we can free the blocks that were released with that commit.
  2334. */
  2335. static void release_blocks_on_commit(journal_t *journal, transaction_t *txn)
  2336. {
  2337. struct super_block *sb = journal->j_private;
  2338. struct ext4_buddy e4b;
  2339. struct ext4_group_info *db;
  2340. int err, count = 0, count2 = 0;
  2341. struct ext4_free_data *entry;
  2342. struct list_head *l, *ltmp;
  2343. list_for_each_safe(l, ltmp, &txn->t_private_list) {
  2344. entry = list_entry(l, struct ext4_free_data, list);
  2345. mb_debug(1, "gonna free %u blocks in group %u (0x%p):",
  2346. entry->count, entry->group, entry);
  2347. if (test_opt(sb, DISCARD))
  2348. ext4_issue_discard(sb, entry->group,
  2349. entry->start_blk, entry->count);
  2350. err = ext4_mb_load_buddy(sb, entry->group, &e4b);
  2351. /* we expect to find existing buddy because it's pinned */
  2352. BUG_ON(err != 0);
  2353. db = e4b.bd_info;
  2354. /* there are blocks to put in buddy to make them really free */
  2355. count += entry->count;
  2356. count2++;
  2357. ext4_lock_group(sb, entry->group);
  2358. /* Take it out of per group rb tree */
  2359. rb_erase(&entry->node, &(db->bb_free_root));
  2360. mb_free_blocks(NULL, &e4b, entry->start_blk, entry->count);
  2361. if (!db->bb_free_root.rb_node) {
  2362. /* No more items in the per group rb tree
  2363. * balance refcounts from ext4_mb_free_metadata()
  2364. */
  2365. page_cache_release(e4b.bd_buddy_page);
  2366. page_cache_release(e4b.bd_bitmap_page);
  2367. }
  2368. ext4_unlock_group(sb, entry->group);
  2369. kmem_cache_free(ext4_free_ext_cachep, entry);
  2370. ext4_mb_unload_buddy(&e4b);
  2371. }
  2372. mb_debug(1, "freed %u blocks in %u structures\n", count, count2);
  2373. }
  2374. #ifdef CONFIG_EXT4_DEBUG
  2375. u8 mb_enable_debug __read_mostly;
  2376. static struct dentry *debugfs_dir;
  2377. static struct dentry *debugfs_debug;
  2378. static void __init ext4_create_debugfs_entry(void)
  2379. {
  2380. debugfs_dir = debugfs_create_dir("ext4", NULL);
  2381. if (debugfs_dir)
  2382. debugfs_debug = debugfs_create_u8("mballoc-debug",
  2383. S_IRUGO | S_IWUSR,
  2384. debugfs_dir,
  2385. &mb_enable_debug);
  2386. }
  2387. static void ext4_remove_debugfs_entry(void)
  2388. {
  2389. debugfs_remove(debugfs_debug);
  2390. debugfs_remove(debugfs_dir);
  2391. }
  2392. #else
  2393. static void __init ext4_create_debugfs_entry(void)
  2394. {
  2395. }
  2396. static void ext4_remove_debugfs_entry(void)
  2397. {
  2398. }
  2399. #endif
  2400. int __init init_ext4_mballoc(void)
  2401. {
  2402. ext4_pspace_cachep = KMEM_CACHE(ext4_prealloc_space,
  2403. SLAB_RECLAIM_ACCOUNT);
  2404. if (ext4_pspace_cachep == NULL)
  2405. return -ENOMEM;
  2406. ext4_ac_cachep = KMEM_CACHE(ext4_allocation_context,
  2407. SLAB_RECLAIM_ACCOUNT);
  2408. if (ext4_ac_cachep == NULL) {
  2409. kmem_cache_destroy(ext4_pspace_cachep);
  2410. return -ENOMEM;
  2411. }
  2412. ext4_free_ext_cachep = KMEM_CACHE(ext4_free_data,
  2413. SLAB_RECLAIM_ACCOUNT);
  2414. if (ext4_free_ext_cachep == NULL) {
  2415. kmem_cache_destroy(ext4_pspace_cachep);
  2416. kmem_cache_destroy(ext4_ac_cachep);
  2417. return -ENOMEM;
  2418. }
  2419. ext4_create_debugfs_entry();
  2420. return 0;
  2421. }
  2422. void exit_ext4_mballoc(void)
  2423. {
  2424. int i;
  2425. /*
  2426. * Wait for completion of call_rcu()'s on ext4_pspace_cachep
  2427. * before destroying the slab cache.
  2428. */
  2429. rcu_barrier();
  2430. kmem_cache_destroy(ext4_pspace_cachep);
  2431. kmem_cache_destroy(ext4_ac_cachep);
  2432. kmem_cache_destroy(ext4_free_ext_cachep);
  2433. for (i = 0; i < NR_GRPINFO_CACHES; i++) {
  2434. struct kmem_cache *cachep = ext4_groupinfo_caches[i];
  2435. if (cachep) {
  2436. char *name = (char *)kmem_cache_name(cachep);
  2437. kmem_cache_destroy(cachep);
  2438. kfree(name);
  2439. }
  2440. }
  2441. ext4_remove_debugfs_entry();
  2442. }
  2443. /*
  2444. * Check quota and mark chosen space (ac->ac_b_ex) non-free in bitmaps
  2445. * Returns 0 if success or error code
  2446. */
  2447. static noinline_for_stack int
  2448. ext4_mb_mark_diskspace_used(struct ext4_allocation_context *ac,
  2449. handle_t *handle, unsigned int reserv_blks)
  2450. {
  2451. struct buffer_head *bitmap_bh = NULL;
  2452. struct ext4_group_desc *gdp;
  2453. struct buffer_head *gdp_bh;
  2454. struct ext4_sb_info *sbi;
  2455. struct super_block *sb;
  2456. ext4_fsblk_t block;
  2457. int err, len;
  2458. BUG_ON(ac->ac_status != AC_STATUS_FOUND);
  2459. BUG_ON(ac->ac_b_ex.fe_len <= 0);
  2460. sb = ac->ac_sb;
  2461. sbi = EXT4_SB(sb);
  2462. err = -EIO;
  2463. bitmap_bh = ext4_read_block_bitmap(sb, ac->ac_b_ex.fe_group);
  2464. if (!bitmap_bh)
  2465. goto out_err;
  2466. err = ext4_journal_get_write_access(handle, bitmap_bh);
  2467. if (err)
  2468. goto out_err;
  2469. err = -EIO;
  2470. gdp = ext4_get_group_desc(sb, ac->ac_b_ex.fe_group, &gdp_bh);
  2471. if (!gdp)
  2472. goto out_err;
  2473. ext4_debug("using block group %u(%d)\n", ac->ac_b_ex.fe_group,
  2474. ext4_free_blks_count(sb, gdp));
  2475. err = ext4_journal_get_write_access(handle, gdp_bh);
  2476. if (err)
  2477. goto out_err;
  2478. block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
  2479. len = ac->ac_b_ex.fe_len;
  2480. if (!ext4_data_block_valid(sbi, block, len)) {
  2481. ext4_error(sb, "Allocating blocks %llu-%llu which overlap "
  2482. "fs metadata\n", block, block+len);
  2483. /* File system mounted not to panic on error
  2484. * Fix the bitmap and repeat the block allocation
  2485. * We leak some of the blocks here.
  2486. */
  2487. ext4_lock_group(sb, ac->ac_b_ex.fe_group);
  2488. mb_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,
  2489. ac->ac_b_ex.fe_len);
  2490. ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
  2491. err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
  2492. if (!err)
  2493. err = -EAGAIN;
  2494. goto out_err;
  2495. }
  2496. ext4_lock_group(sb, ac->ac_b_ex.fe_group);
  2497. #ifdef AGGRESSIVE_CHECK
  2498. {
  2499. int i;
  2500. for (i = 0; i < ac->ac_b_ex.fe_len; i++) {
  2501. BUG_ON(mb_test_bit(ac->ac_b_ex.fe_start + i,
  2502. bitmap_bh->b_data));
  2503. }
  2504. }
  2505. #endif
  2506. mb_set_bits(bitmap_bh->b_data, ac->ac_b_ex.fe_start,ac->ac_b_ex.fe_len);
  2507. if (gdp->bg_flags & cpu_to_le16(EXT4_BG_BLOCK_UNINIT)) {
  2508. gdp->bg_flags &= cpu_to_le16(~EXT4_BG_BLOCK_UNINIT);
  2509. ext4_free_blks_set(sb, gdp,
  2510. ext4_free_blocks_after_init(sb,
  2511. ac->ac_b_ex.fe_group, gdp));
  2512. }
  2513. len = ext4_free_blks_count(sb, gdp) - ac->ac_b_ex.fe_len;
  2514. ext4_free_blks_set(sb, gdp, len);
  2515. gdp->bg_checksum = ext4_group_desc_csum(sbi, ac->ac_b_ex.fe_group, gdp);
  2516. ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
  2517. percpu_counter_sub(&sbi->s_freeblocks_counter, ac->ac_b_ex.fe_len);
  2518. /*
  2519. * Now reduce the dirty block count also. Should not go negative
  2520. */
  2521. if (!(ac->ac_flags & EXT4_MB_DELALLOC_RESERVED))
  2522. /* release all the reserved blocks if non delalloc */
  2523. percpu_counter_sub(&sbi->s_dirtyblocks_counter, reserv_blks);
  2524. if (sbi->s_log_groups_per_flex) {
  2525. ext4_group_t flex_group = ext4_flex_group(sbi,
  2526. ac->ac_b_ex.fe_group);
  2527. atomic_sub(ac->ac_b_ex.fe_len,
  2528. &sbi->s_flex_groups[flex_group].free_blocks);
  2529. }
  2530. err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
  2531. if (err)
  2532. goto out_err;
  2533. err = ext4_handle_dirty_metadata(handle, NULL, gdp_bh);
  2534. out_err:
  2535. ext4_mark_super_dirty(sb);
  2536. brelse(bitmap_bh);
  2537. return err;
  2538. }
  2539. /*
  2540. * here we normalize request for locality group
  2541. * Group request are normalized to s_strip size if we set the same via mount
  2542. * option. If not we set it to s_mb_group_prealloc which can be configured via
  2543. * /sys/fs/ext4/<partition>/mb_group_prealloc
  2544. *
  2545. * XXX: should we try to preallocate more than the group has now?
  2546. */
  2547. static void ext4_mb_normalize_group_request(struct ext4_allocation_context *ac)
  2548. {
  2549. struct super_block *sb = ac->ac_sb;
  2550. struct ext4_locality_group *lg = ac->ac_lg;
  2551. BUG_ON(lg == NULL);
  2552. if (EXT4_SB(sb)->s_stripe)
  2553. ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_stripe;
  2554. else
  2555. ac->ac_g_ex.fe_len = EXT4_SB(sb)->s_mb_group_prealloc;
  2556. mb_debug(1, "#%u: goal %u blocks for locality group\n",
  2557. current->pid, ac->ac_g_ex.fe_len);
  2558. }
  2559. /*
  2560. * Normalization means making request better in terms of
  2561. * size and alignment
  2562. */
  2563. static noinline_for_stack void
  2564. ext4_mb_normalize_request(struct ext4_allocation_context *ac,
  2565. struct ext4_allocation_request *ar)
  2566. {
  2567. int bsbits, max;
  2568. ext4_lblk_t end;
  2569. loff_t size, orig_size, start_off;
  2570. ext4_lblk_t start;
  2571. struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
  2572. struct ext4_prealloc_space *pa;
  2573. /* do normalize only data requests, metadata requests
  2574. do not need preallocation */
  2575. if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
  2576. return;
  2577. /* sometime caller may want exact blocks */
  2578. if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
  2579. return;
  2580. /* caller may indicate that preallocation isn't
  2581. * required (it's a tail, for example) */
  2582. if (ac->ac_flags & EXT4_MB_HINT_NOPREALLOC)
  2583. return;
  2584. if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC) {
  2585. ext4_mb_normalize_group_request(ac);
  2586. return ;
  2587. }
  2588. bsbits = ac->ac_sb->s_blocksize_bits;
  2589. /* first, let's learn actual file size
  2590. * given current request is allocated */
  2591. size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
  2592. size = size << bsbits;
  2593. if (size < i_size_read(ac->ac_inode))
  2594. size = i_size_read(ac->ac_inode);
  2595. orig_size = size;
  2596. /* max size of free chunks */
  2597. max = 2 << bsbits;
  2598. #define NRL_CHECK_SIZE(req, size, max, chunk_size) \
  2599. (req <= (size) || max <= (chunk_size))
  2600. /* first, try to predict filesize */
  2601. /* XXX: should this table be tunable? */
  2602. start_off = 0;
  2603. if (size <= 16 * 1024) {
  2604. size = 16 * 1024;
  2605. } else if (size <= 32 * 1024) {
  2606. size = 32 * 1024;
  2607. } else if (size <= 64 * 1024) {
  2608. size = 64 * 1024;
  2609. } else if (size <= 128 * 1024) {
  2610. size = 128 * 1024;
  2611. } else if (size <= 256 * 1024) {
  2612. size = 256 * 1024;
  2613. } else if (size <= 512 * 1024) {
  2614. size = 512 * 1024;
  2615. } else if (size <= 1024 * 1024) {
  2616. size = 1024 * 1024;
  2617. } else if (NRL_CHECK_SIZE(size, 4 * 1024 * 1024, max, 2 * 1024)) {
  2618. start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
  2619. (21 - bsbits)) << 21;
  2620. size = 2 * 1024 * 1024;
  2621. } else if (NRL_CHECK_SIZE(size, 8 * 1024 * 1024, max, 4 * 1024)) {
  2622. start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
  2623. (22 - bsbits)) << 22;
  2624. size = 4 * 1024 * 1024;
  2625. } else if (NRL_CHECK_SIZE(ac->ac_o_ex.fe_len,
  2626. (8<<20)>>bsbits, max, 8 * 1024)) {
  2627. start_off = ((loff_t)ac->ac_o_ex.fe_logical >>
  2628. (23 - bsbits)) << 23;
  2629. size = 8 * 1024 * 1024;
  2630. } else {
  2631. start_off = (loff_t)ac->ac_o_ex.fe_logical << bsbits;
  2632. size = ac->ac_o_ex.fe_len << bsbits;
  2633. }
  2634. size = size >> bsbits;
  2635. start = start_off >> bsbits;
  2636. /* don't cover already allocated blocks in selected range */
  2637. if (ar->pleft && start <= ar->lleft) {
  2638. size -= ar->lleft + 1 - start;
  2639. start = ar->lleft + 1;
  2640. }
  2641. if (ar->pright && start + size - 1 >= ar->lright)
  2642. size -= start + size - ar->lright;
  2643. end = start + size;
  2644. /* check we don't cross already preallocated blocks */
  2645. rcu_read_lock();
  2646. list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
  2647. ext4_lblk_t pa_end;
  2648. if (pa->pa_deleted)
  2649. continue;
  2650. spin_lock(&pa->pa_lock);
  2651. if (pa->pa_deleted) {
  2652. spin_unlock(&pa->pa_lock);
  2653. continue;
  2654. }
  2655. pa_end = pa->pa_lstart + pa->pa_len;
  2656. /* PA must not overlap original request */
  2657. BUG_ON(!(ac->ac_o_ex.fe_logical >= pa_end ||
  2658. ac->ac_o_ex.fe_logical < pa->pa_lstart));
  2659. /* skip PAs this normalized request doesn't overlap with */
  2660. if (pa->pa_lstart >= end || pa_end <= start) {
  2661. spin_unlock(&pa->pa_lock);
  2662. continue;
  2663. }
  2664. BUG_ON(pa->pa_lstart <= start && pa_end >= end);
  2665. /* adjust start or end to be adjacent to this pa */
  2666. if (pa_end <= ac->ac_o_ex.fe_logical) {
  2667. BUG_ON(pa_end < start);
  2668. start = pa_end;
  2669. } else if (pa->pa_lstart > ac->ac_o_ex.fe_logical) {
  2670. BUG_ON(pa->pa_lstart > end);
  2671. end = pa->pa_lstart;
  2672. }
  2673. spin_unlock(&pa->pa_lock);
  2674. }
  2675. rcu_read_unlock();
  2676. size = end - start;
  2677. /* XXX: extra loop to check we really don't overlap preallocations */
  2678. rcu_read_lock();
  2679. list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
  2680. ext4_lblk_t pa_end;
  2681. spin_lock(&pa->pa_lock);
  2682. if (pa->pa_deleted == 0) {
  2683. pa_end = pa->pa_lstart + pa->pa_len;
  2684. BUG_ON(!(start >= pa_end || end <= pa->pa_lstart));
  2685. }
  2686. spin_unlock(&pa->pa_lock);
  2687. }
  2688. rcu_read_unlock();
  2689. if (start + size <= ac->ac_o_ex.fe_logical &&
  2690. start > ac->ac_o_ex.fe_logical) {
  2691. printk(KERN_ERR "start %lu, size %lu, fe_logical %lu\n",
  2692. (unsigned long) start, (unsigned long) size,
  2693. (unsigned long) ac->ac_o_ex.fe_logical);
  2694. }
  2695. BUG_ON(start + size <= ac->ac_o_ex.fe_logical &&
  2696. start > ac->ac_o_ex.fe_logical);
  2697. BUG_ON(size <= 0 || size > EXT4_BLOCKS_PER_GROUP(ac->ac_sb));
  2698. /* now prepare goal request */
  2699. /* XXX: is it better to align blocks WRT to logical
  2700. * placement or satisfy big request as is */
  2701. ac->ac_g_ex.fe_logical = start;
  2702. ac->ac_g_ex.fe_len = size;
  2703. /* define goal start in order to merge */
  2704. if (ar->pright && (ar->lright == (start + size))) {
  2705. /* merge to the right */
  2706. ext4_get_group_no_and_offset(ac->ac_sb, ar->pright - size,
  2707. &ac->ac_f_ex.fe_group,
  2708. &ac->ac_f_ex.fe_start);
  2709. ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
  2710. }
  2711. if (ar->pleft && (ar->lleft + 1 == start)) {
  2712. /* merge to the left */
  2713. ext4_get_group_no_and_offset(ac->ac_sb, ar->pleft + 1,
  2714. &ac->ac_f_ex.fe_group,
  2715. &ac->ac_f_ex.fe_start);
  2716. ac->ac_flags |= EXT4_MB_HINT_TRY_GOAL;
  2717. }
  2718. mb_debug(1, "goal: %u(was %u) blocks at %u\n", (unsigned) size,
  2719. (unsigned) orig_size, (unsigned) start);
  2720. }
  2721. static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
  2722. {
  2723. struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  2724. if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
  2725. atomic_inc(&sbi->s_bal_reqs);
  2726. atomic_add(ac->ac_b_ex.fe_len, &sbi->s_bal_allocated);
  2727. if (ac->ac_b_ex.fe_len >= ac->ac_o_ex.fe_len)
  2728. atomic_inc(&sbi->s_bal_success);
  2729. atomic_add(ac->ac_found, &sbi->s_bal_ex_scanned);
  2730. if (ac->ac_g_ex.fe_start == ac->ac_b_ex.fe_start &&
  2731. ac->ac_g_ex.fe_group == ac->ac_b_ex.fe_group)
  2732. atomic_inc(&sbi->s_bal_goals);
  2733. if (ac->ac_found > sbi->s_mb_max_to_scan)
  2734. atomic_inc(&sbi->s_bal_breaks);
  2735. }
  2736. if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
  2737. trace_ext4_mballoc_alloc(ac);
  2738. else
  2739. trace_ext4_mballoc_prealloc(ac);
  2740. }
  2741. /*
  2742. * Called on failure; free up any blocks from the inode PA for this
  2743. * context. We don't need this for MB_GROUP_PA because we only change
  2744. * pa_free in ext4_mb_release_context(), but on failure, we've already
  2745. * zeroed out ac->ac_b_ex.fe_len, so group_pa->pa_free is not changed.
  2746. */
  2747. static void ext4_discard_allocated_blocks(struct ext4_allocation_context *ac)
  2748. {
  2749. struct ext4_prealloc_space *pa = ac->ac_pa;
  2750. int len;
  2751. if (pa && pa->pa_type == MB_INODE_PA) {
  2752. len = ac->ac_b_ex.fe_len;
  2753. pa->pa_free += len;
  2754. }
  2755. }
  2756. /*
  2757. * use blocks preallocated to inode
  2758. */
  2759. static void ext4_mb_use_inode_pa(struct ext4_allocation_context *ac,
  2760. struct ext4_prealloc_space *pa)
  2761. {
  2762. ext4_fsblk_t start;
  2763. ext4_fsblk_t end;
  2764. int len;
  2765. /* found preallocated blocks, use them */
  2766. start = pa->pa_pstart + (ac->ac_o_ex.fe_logical - pa->pa_lstart);
  2767. end = min(pa->pa_pstart + pa->pa_len, start + ac->ac_o_ex.fe_len);
  2768. len = end - start;
  2769. ext4_get_group_no_and_offset(ac->ac_sb, start, &ac->ac_b_ex.fe_group,
  2770. &ac->ac_b_ex.fe_start);
  2771. ac->ac_b_ex.fe_len = len;
  2772. ac->ac_status = AC_STATUS_FOUND;
  2773. ac->ac_pa = pa;
  2774. BUG_ON(start < pa->pa_pstart);
  2775. BUG_ON(start + len > pa->pa_pstart + pa->pa_len);
  2776. BUG_ON(pa->pa_free < len);
  2777. pa->pa_free -= len;
  2778. mb_debug(1, "use %llu/%u from inode pa %p\n", start, len, pa);
  2779. }
  2780. /*
  2781. * use blocks preallocated to locality group
  2782. */
  2783. static void ext4_mb_use_group_pa(struct ext4_allocation_context *ac,
  2784. struct ext4_prealloc_space *pa)
  2785. {
  2786. unsigned int len = ac->ac_o_ex.fe_len;
  2787. ext4_get_group_no_and_offset(ac->ac_sb, pa->pa_pstart,
  2788. &ac->ac_b_ex.fe_group,
  2789. &ac->ac_b_ex.fe_start);
  2790. ac->ac_b_ex.fe_len = len;
  2791. ac->ac_status = AC_STATUS_FOUND;
  2792. ac->ac_pa = pa;
  2793. /* we don't correct pa_pstart or pa_plen here to avoid
  2794. * possible race when the group is being loaded concurrently
  2795. * instead we correct pa later, after blocks are marked
  2796. * in on-disk bitmap -- see ext4_mb_release_context()
  2797. * Other CPUs are prevented from allocating from this pa by lg_mutex
  2798. */
  2799. mb_debug(1, "use %u/%u from group pa %p\n", pa->pa_lstart-len, len, pa);
  2800. }
  2801. /*
  2802. * Return the prealloc space that have minimal distance
  2803. * from the goal block. @cpa is the prealloc
  2804. * space that is having currently known minimal distance
  2805. * from the goal block.
  2806. */
  2807. static struct ext4_prealloc_space *
  2808. ext4_mb_check_group_pa(ext4_fsblk_t goal_block,
  2809. struct ext4_prealloc_space *pa,
  2810. struct ext4_prealloc_space *cpa)
  2811. {
  2812. ext4_fsblk_t cur_distance, new_distance;
  2813. if (cpa == NULL) {
  2814. atomic_inc(&pa->pa_count);
  2815. return pa;
  2816. }
  2817. cur_distance = abs(goal_block - cpa->pa_pstart);
  2818. new_distance = abs(goal_block - pa->pa_pstart);
  2819. if (cur_distance < new_distance)
  2820. return cpa;
  2821. /* drop the previous reference */
  2822. atomic_dec(&cpa->pa_count);
  2823. atomic_inc(&pa->pa_count);
  2824. return pa;
  2825. }
  2826. /*
  2827. * search goal blocks in preallocated space
  2828. */
  2829. static noinline_for_stack int
  2830. ext4_mb_use_preallocated(struct ext4_allocation_context *ac)
  2831. {
  2832. int order, i;
  2833. struct ext4_inode_info *ei = EXT4_I(ac->ac_inode);
  2834. struct ext4_locality_group *lg;
  2835. struct ext4_prealloc_space *pa, *cpa = NULL;
  2836. ext4_fsblk_t goal_block;
  2837. /* only data can be preallocated */
  2838. if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
  2839. return 0;
  2840. /* first, try per-file preallocation */
  2841. rcu_read_lock();
  2842. list_for_each_entry_rcu(pa, &ei->i_prealloc_list, pa_inode_list) {
  2843. /* all fields in this condition don't change,
  2844. * so we can skip locking for them */
  2845. if (ac->ac_o_ex.fe_logical < pa->pa_lstart ||
  2846. ac->ac_o_ex.fe_logical >= pa->pa_lstart + pa->pa_len)
  2847. continue;
  2848. /* non-extent files can't have physical blocks past 2^32 */
  2849. if (!(ext4_test_inode_flag(ac->ac_inode, EXT4_INODE_EXTENTS)) &&
  2850. pa->pa_pstart + pa->pa_len > EXT4_MAX_BLOCK_FILE_PHYS)
  2851. continue;
  2852. /* found preallocated blocks, use them */
  2853. spin_lock(&pa->pa_lock);
  2854. if (pa->pa_deleted == 0 && pa->pa_free) {
  2855. atomic_inc(&pa->pa_count);
  2856. ext4_mb_use_inode_pa(ac, pa);
  2857. spin_unlock(&pa->pa_lock);
  2858. ac->ac_criteria = 10;
  2859. rcu_read_unlock();
  2860. return 1;
  2861. }
  2862. spin_unlock(&pa->pa_lock);
  2863. }
  2864. rcu_read_unlock();
  2865. /* can we use group allocation? */
  2866. if (!(ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC))
  2867. return 0;
  2868. /* inode may have no locality group for some reason */
  2869. lg = ac->ac_lg;
  2870. if (lg == NULL)
  2871. return 0;
  2872. order = fls(ac->ac_o_ex.fe_len) - 1;
  2873. if (order > PREALLOC_TB_SIZE - 1)
  2874. /* The max size of hash table is PREALLOC_TB_SIZE */
  2875. order = PREALLOC_TB_SIZE - 1;
  2876. goal_block = ext4_grp_offs_to_block(ac->ac_sb, &ac->ac_g_ex);
  2877. /*
  2878. * search for the prealloc space that is having
  2879. * minimal distance from the goal block.
  2880. */
  2881. for (i = order; i < PREALLOC_TB_SIZE; i++) {
  2882. rcu_read_lock();
  2883. list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[i],
  2884. pa_inode_list) {
  2885. spin_lock(&pa->pa_lock);
  2886. if (pa->pa_deleted == 0 &&
  2887. pa->pa_free >= ac->ac_o_ex.fe_len) {
  2888. cpa = ext4_mb_check_group_pa(goal_block,
  2889. pa, cpa);
  2890. }
  2891. spin_unlock(&pa->pa_lock);
  2892. }
  2893. rcu_read_unlock();
  2894. }
  2895. if (cpa) {
  2896. ext4_mb_use_group_pa(ac, cpa);
  2897. ac->ac_criteria = 20;
  2898. return 1;
  2899. }
  2900. return 0;
  2901. }
  2902. /*
  2903. * the function goes through all block freed in the group
  2904. * but not yet committed and marks them used in in-core bitmap.
  2905. * buddy must be generated from this bitmap
  2906. * Need to be called with the ext4 group lock held
  2907. */
  2908. static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
  2909. ext4_group_t group)
  2910. {
  2911. struct rb_node *n;
  2912. struct ext4_group_info *grp;
  2913. struct ext4_free_data *entry;
  2914. grp = ext4_get_group_info(sb, group);
  2915. n = rb_first(&(grp->bb_free_root));
  2916. while (n) {
  2917. entry = rb_entry(n, struct ext4_free_data, node);
  2918. mb_set_bits(bitmap, entry->start_blk, entry->count);
  2919. n = rb_next(n);
  2920. }
  2921. return;
  2922. }
  2923. /*
  2924. * the function goes through all preallocation in this group and marks them
  2925. * used in in-core bitmap. buddy must be generated from this bitmap
  2926. * Need to be called with ext4 group lock held
  2927. */
  2928. static noinline_for_stack
  2929. void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
  2930. ext4_group_t group)
  2931. {
  2932. struct ext4_group_info *grp = ext4_get_group_info(sb, group);
  2933. struct ext4_prealloc_space *pa;
  2934. struct list_head *cur;
  2935. ext4_group_t groupnr;
  2936. ext4_grpblk_t start;
  2937. int preallocated = 0;
  2938. int count = 0;
  2939. int len;
  2940. /* all form of preallocation discards first load group,
  2941. * so the only competing code is preallocation use.
  2942. * we don't need any locking here
  2943. * notice we do NOT ignore preallocations with pa_deleted
  2944. * otherwise we could leave used blocks available for
  2945. * allocation in buddy when concurrent ext4_mb_put_pa()
  2946. * is dropping preallocation
  2947. */
  2948. list_for_each(cur, &grp->bb_prealloc_list) {
  2949. pa = list_entry(cur, struct ext4_prealloc_space, pa_group_list);
  2950. spin_lock(&pa->pa_lock);
  2951. ext4_get_group_no_and_offset(sb, pa->pa_pstart,
  2952. &groupnr, &start);
  2953. len = pa->pa_len;
  2954. spin_unlock(&pa->pa_lock);
  2955. if (unlikely(len == 0))
  2956. continue;
  2957. BUG_ON(groupnr != group);
  2958. mb_set_bits(bitmap, start, len);
  2959. preallocated += len;
  2960. count++;
  2961. }
  2962. mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
  2963. }
  2964. static void ext4_mb_pa_callback(struct rcu_head *head)
  2965. {
  2966. struct ext4_prealloc_space *pa;
  2967. pa = container_of(head, struct ext4_prealloc_space, u.pa_rcu);
  2968. kmem_cache_free(ext4_pspace_cachep, pa);
  2969. }
  2970. /*
  2971. * drops a reference to preallocated space descriptor
  2972. * if this was the last reference and the space is consumed
  2973. */
  2974. static void ext4_mb_put_pa(struct ext4_allocation_context *ac,
  2975. struct super_block *sb, struct ext4_prealloc_space *pa)
  2976. {
  2977. ext4_group_t grp;
  2978. ext4_fsblk_t grp_blk;
  2979. if (!atomic_dec_and_test(&pa->pa_count) || pa->pa_free != 0)
  2980. return;
  2981. /* in this short window concurrent discard can set pa_deleted */
  2982. spin_lock(&pa->pa_lock);
  2983. if (pa->pa_deleted == 1) {
  2984. spin_unlock(&pa->pa_lock);
  2985. return;
  2986. }
  2987. pa->pa_deleted = 1;
  2988. spin_unlock(&pa->pa_lock);
  2989. grp_blk = pa->pa_pstart;
  2990. /*
  2991. * If doing group-based preallocation, pa_pstart may be in the
  2992. * next group when pa is used up
  2993. */
  2994. if (pa->pa_type == MB_GROUP_PA)
  2995. grp_blk--;
  2996. ext4_get_group_no_and_offset(sb, grp_blk, &grp, NULL);
  2997. /*
  2998. * possible race:
  2999. *
  3000. * P1 (buddy init) P2 (regular allocation)
  3001. * find block B in PA
  3002. * copy on-disk bitmap to buddy
  3003. * mark B in on-disk bitmap
  3004. * drop PA from group
  3005. * mark all PAs in buddy
  3006. *
  3007. * thus, P1 initializes buddy with B available. to prevent this
  3008. * we make "copy" and "mark all PAs" atomic and serialize "drop PA"
  3009. * against that pair
  3010. */
  3011. ext4_lock_group(sb, grp);
  3012. list_del(&pa->pa_group_list);
  3013. ext4_unlock_group(sb, grp);
  3014. spin_lock(pa->pa_obj_lock);
  3015. list_del_rcu(&pa->pa_inode_list);
  3016. spin_unlock(pa->pa_obj_lock);
  3017. call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
  3018. }
  3019. /*
  3020. * creates new preallocated space for given inode
  3021. */
  3022. static noinline_for_stack int
  3023. ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
  3024. {
  3025. struct super_block *sb = ac->ac_sb;
  3026. struct ext4_prealloc_space *pa;
  3027. struct ext4_group_info *grp;
  3028. struct ext4_inode_info *ei;
  3029. /* preallocate only when found space is larger then requested */
  3030. BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
  3031. BUG_ON(ac->ac_status != AC_STATUS_FOUND);
  3032. BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
  3033. pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
  3034. if (pa == NULL)
  3035. return -ENOMEM;
  3036. if (ac->ac_b_ex.fe_len < ac->ac_g_ex.fe_len) {
  3037. int winl;
  3038. int wins;
  3039. int win;
  3040. int offs;
  3041. /* we can't allocate as much as normalizer wants.
  3042. * so, found space must get proper lstart
  3043. * to cover original request */
  3044. BUG_ON(ac->ac_g_ex.fe_logical > ac->ac_o_ex.fe_logical);
  3045. BUG_ON(ac->ac_g_ex.fe_len < ac->ac_o_ex.fe_len);
  3046. /* we're limited by original request in that
  3047. * logical block must be covered any way
  3048. * winl is window we can move our chunk within */
  3049. winl = ac->ac_o_ex.fe_logical - ac->ac_g_ex.fe_logical;
  3050. /* also, we should cover whole original request */
  3051. wins = ac->ac_b_ex.fe_len - ac->ac_o_ex.fe_len;
  3052. /* the smallest one defines real window */
  3053. win = min(winl, wins);
  3054. offs = ac->ac_o_ex.fe_logical % ac->ac_b_ex.fe_len;
  3055. if (offs && offs < win)
  3056. win = offs;
  3057. ac->ac_b_ex.fe_logical = ac->ac_o_ex.fe_logical - win;
  3058. BUG_ON(ac->ac_o_ex.fe_logical < ac->ac_b_ex.fe_logical);
  3059. BUG_ON(ac->ac_o_ex.fe_len > ac->ac_b_ex.fe_len);
  3060. }
  3061. /* preallocation can change ac_b_ex, thus we store actually
  3062. * allocated blocks for history */
  3063. ac->ac_f_ex = ac->ac_b_ex;
  3064. pa->pa_lstart = ac->ac_b_ex.fe_logical;
  3065. pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
  3066. pa->pa_len = ac->ac_b_ex.fe_len;
  3067. pa->pa_free = pa->pa_len;
  3068. atomic_set(&pa->pa_count, 1);
  3069. spin_lock_init(&pa->pa_lock);
  3070. INIT_LIST_HEAD(&pa->pa_inode_list);
  3071. INIT_LIST_HEAD(&pa->pa_group_list);
  3072. pa->pa_deleted = 0;
  3073. pa->pa_type = MB_INODE_PA;
  3074. mb_debug(1, "new inode pa %p: %llu/%u for %u\n", pa,
  3075. pa->pa_pstart, pa->pa_len, pa->pa_lstart);
  3076. trace_ext4_mb_new_inode_pa(ac, pa);
  3077. ext4_mb_use_inode_pa(ac, pa);
  3078. atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
  3079. ei = EXT4_I(ac->ac_inode);
  3080. grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
  3081. pa->pa_obj_lock = &ei->i_prealloc_lock;
  3082. pa->pa_inode = ac->ac_inode;
  3083. ext4_lock_group(sb, ac->ac_b_ex.fe_group);
  3084. list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
  3085. ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
  3086. spin_lock(pa->pa_obj_lock);
  3087. list_add_rcu(&pa->pa_inode_list, &ei->i_prealloc_list);
  3088. spin_unlock(pa->pa_obj_lock);
  3089. return 0;
  3090. }
  3091. /*
  3092. * creates new preallocated space for locality group inodes belongs to
  3093. */
  3094. static noinline_for_stack int
  3095. ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
  3096. {
  3097. struct super_block *sb = ac->ac_sb;
  3098. struct ext4_locality_group *lg;
  3099. struct ext4_prealloc_space *pa;
  3100. struct ext4_group_info *grp;
  3101. /* preallocate only when found space is larger then requested */
  3102. BUG_ON(ac->ac_o_ex.fe_len >= ac->ac_b_ex.fe_len);
  3103. BUG_ON(ac->ac_status != AC_STATUS_FOUND);
  3104. BUG_ON(!S_ISREG(ac->ac_inode->i_mode));
  3105. BUG_ON(ext4_pspace_cachep == NULL);
  3106. pa = kmem_cache_alloc(ext4_pspace_cachep, GFP_NOFS);
  3107. if (pa == NULL)
  3108. return -ENOMEM;
  3109. /* preallocation can change ac_b_ex, thus we store actually
  3110. * allocated blocks for history */
  3111. ac->ac_f_ex = ac->ac_b_ex;
  3112. pa->pa_pstart = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
  3113. pa->pa_lstart = pa->pa_pstart;
  3114. pa->pa_len = ac->ac_b_ex.fe_len;
  3115. pa->pa_free = pa->pa_len;
  3116. atomic_set(&pa->pa_count, 1);
  3117. spin_lock_init(&pa->pa_lock);
  3118. INIT_LIST_HEAD(&pa->pa_inode_list);
  3119. INIT_LIST_HEAD(&pa->pa_group_list);
  3120. pa->pa_deleted = 0;
  3121. pa->pa_type = MB_GROUP_PA;
  3122. mb_debug(1, "new group pa %p: %llu/%u for %u\n", pa,
  3123. pa->pa_pstart, pa->pa_len, pa->pa_lstart);
  3124. trace_ext4_mb_new_group_pa(ac, pa);
  3125. ext4_mb_use_group_pa(ac, pa);
  3126. atomic_add(pa->pa_free, &EXT4_SB(sb)->s_mb_preallocated);
  3127. grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
  3128. lg = ac->ac_lg;
  3129. BUG_ON(lg == NULL);
  3130. pa->pa_obj_lock = &lg->lg_prealloc_lock;
  3131. pa->pa_inode = NULL;
  3132. ext4_lock_group(sb, ac->ac_b_ex.fe_group);
  3133. list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
  3134. ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
  3135. /*
  3136. * We will later add the new pa to the right bucket
  3137. * after updating the pa_free in ext4_mb_release_context
  3138. */
  3139. return 0;
  3140. }
  3141. static int ext4_mb_new_preallocation(struct ext4_allocation_context *ac)
  3142. {
  3143. int err;
  3144. if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
  3145. err = ext4_mb_new_group_pa(ac);
  3146. else
  3147. err = ext4_mb_new_inode_pa(ac);
  3148. return err;
  3149. }
  3150. /*
  3151. * finds all unused blocks in on-disk bitmap, frees them in
  3152. * in-core bitmap and buddy.
  3153. * @pa must be unlinked from inode and group lists, so that
  3154. * nobody else can find/use it.
  3155. * the caller MUST hold group/inode locks.
  3156. * TODO: optimize the case when there are no in-core structures yet
  3157. */
  3158. static noinline_for_stack int
  3159. ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
  3160. struct ext4_prealloc_space *pa)
  3161. {
  3162. struct super_block *sb = e4b->bd_sb;
  3163. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3164. unsigned int end;
  3165. unsigned int next;
  3166. ext4_group_t group;
  3167. ext4_grpblk_t bit;
  3168. unsigned long long grp_blk_start;
  3169. int err = 0;
  3170. int free = 0;
  3171. BUG_ON(pa->pa_deleted == 0);
  3172. ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
  3173. grp_blk_start = pa->pa_pstart - bit;
  3174. BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
  3175. end = bit + pa->pa_len;
  3176. while (bit < end) {
  3177. bit = mb_find_next_zero_bit(bitmap_bh->b_data, end, bit);
  3178. if (bit >= end)
  3179. break;
  3180. next = mb_find_next_bit(bitmap_bh->b_data, end, bit);
  3181. mb_debug(1, " free preallocated %u/%u in group %u\n",
  3182. (unsigned) ext4_group_first_block_no(sb, group) + bit,
  3183. (unsigned) next - bit, (unsigned) group);
  3184. free += next - bit;
  3185. trace_ext4_mballoc_discard(sb, NULL, group, bit, next - bit);
  3186. trace_ext4_mb_release_inode_pa(sb, pa->pa_inode, pa,
  3187. grp_blk_start + bit, next - bit);
  3188. mb_free_blocks(pa->pa_inode, e4b, bit, next - bit);
  3189. bit = next + 1;
  3190. }
  3191. if (free != pa->pa_free) {
  3192. printk(KERN_CRIT "pa %p: logic %lu, phys. %lu, len %lu\n",
  3193. pa, (unsigned long) pa->pa_lstart,
  3194. (unsigned long) pa->pa_pstart,
  3195. (unsigned long) pa->pa_len);
  3196. ext4_grp_locked_error(sb, group, 0, 0, "free %u, pa_free %u",
  3197. free, pa->pa_free);
  3198. /*
  3199. * pa is already deleted so we use the value obtained
  3200. * from the bitmap and continue.
  3201. */
  3202. }
  3203. atomic_add(free, &sbi->s_mb_discarded);
  3204. return err;
  3205. }
  3206. static noinline_for_stack int
  3207. ext4_mb_release_group_pa(struct ext4_buddy *e4b,
  3208. struct ext4_prealloc_space *pa)
  3209. {
  3210. struct super_block *sb = e4b->bd_sb;
  3211. ext4_group_t group;
  3212. ext4_grpblk_t bit;
  3213. trace_ext4_mb_release_group_pa(sb, pa);
  3214. BUG_ON(pa->pa_deleted == 0);
  3215. ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
  3216. BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
  3217. mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
  3218. atomic_add(pa->pa_len, &EXT4_SB(sb)->s_mb_discarded);
  3219. trace_ext4_mballoc_discard(sb, NULL, group, bit, pa->pa_len);
  3220. return 0;
  3221. }
  3222. /*
  3223. * releases all preallocations in given group
  3224. *
  3225. * first, we need to decide discard policy:
  3226. * - when do we discard
  3227. * 1) ENOSPC
  3228. * - how many do we discard
  3229. * 1) how many requested
  3230. */
  3231. static noinline_for_stack int
  3232. ext4_mb_discard_group_preallocations(struct super_block *sb,
  3233. ext4_group_t group, int needed)
  3234. {
  3235. struct ext4_group_info *grp = ext4_get_group_info(sb, group);
  3236. struct buffer_head *bitmap_bh = NULL;
  3237. struct ext4_prealloc_space *pa, *tmp;
  3238. struct list_head list;
  3239. struct ext4_buddy e4b;
  3240. int err;
  3241. int busy = 0;
  3242. int free = 0;
  3243. mb_debug(1, "discard preallocation for group %u\n", group);
  3244. if (list_empty(&grp->bb_prealloc_list))
  3245. return 0;
  3246. bitmap_bh = ext4_read_block_bitmap(sb, group);
  3247. if (bitmap_bh == NULL) {
  3248. ext4_error(sb, "Error reading block bitmap for %u", group);
  3249. return 0;
  3250. }
  3251. err = ext4_mb_load_buddy(sb, group, &e4b);
  3252. if (err) {
  3253. ext4_error(sb, "Error loading buddy information for %u", group);
  3254. put_bh(bitmap_bh);
  3255. return 0;
  3256. }
  3257. if (needed == 0)
  3258. needed = EXT4_BLOCKS_PER_GROUP(sb) + 1;
  3259. INIT_LIST_HEAD(&list);
  3260. repeat:
  3261. ext4_lock_group(sb, group);
  3262. list_for_each_entry_safe(pa, tmp,
  3263. &grp->bb_prealloc_list, pa_group_list) {
  3264. spin_lock(&pa->pa_lock);
  3265. if (atomic_read(&pa->pa_count)) {
  3266. spin_unlock(&pa->pa_lock);
  3267. busy = 1;
  3268. continue;
  3269. }
  3270. if (pa->pa_deleted) {
  3271. spin_unlock(&pa->pa_lock);
  3272. continue;
  3273. }
  3274. /* seems this one can be freed ... */
  3275. pa->pa_deleted = 1;
  3276. /* we can trust pa_free ... */
  3277. free += pa->pa_free;
  3278. spin_unlock(&pa->pa_lock);
  3279. list_del(&pa->pa_group_list);
  3280. list_add(&pa->u.pa_tmp_list, &list);
  3281. }
  3282. /* if we still need more blocks and some PAs were used, try again */
  3283. if (free < needed && busy) {
  3284. busy = 0;
  3285. ext4_unlock_group(sb, group);
  3286. /*
  3287. * Yield the CPU here so that we don't get soft lockup
  3288. * in non preempt case.
  3289. */
  3290. yield();
  3291. goto repeat;
  3292. }
  3293. /* found anything to free? */
  3294. if (list_empty(&list)) {
  3295. BUG_ON(free != 0);
  3296. goto out;
  3297. }
  3298. /* now free all selected PAs */
  3299. list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
  3300. /* remove from object (inode or locality group) */
  3301. spin_lock(pa->pa_obj_lock);
  3302. list_del_rcu(&pa->pa_inode_list);
  3303. spin_unlock(pa->pa_obj_lock);
  3304. if (pa->pa_type == MB_GROUP_PA)
  3305. ext4_mb_release_group_pa(&e4b, pa);
  3306. else
  3307. ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
  3308. list_del(&pa->u.pa_tmp_list);
  3309. call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
  3310. }
  3311. out:
  3312. ext4_unlock_group(sb, group);
  3313. ext4_mb_unload_buddy(&e4b);
  3314. put_bh(bitmap_bh);
  3315. return free;
  3316. }
  3317. /*
  3318. * releases all non-used preallocated blocks for given inode
  3319. *
  3320. * It's important to discard preallocations under i_data_sem
  3321. * We don't want another block to be served from the prealloc
  3322. * space when we are discarding the inode prealloc space.
  3323. *
  3324. * FIXME!! Make sure it is valid at all the call sites
  3325. */
  3326. void ext4_discard_preallocations(struct inode *inode)
  3327. {
  3328. struct ext4_inode_info *ei = EXT4_I(inode);
  3329. struct super_block *sb = inode->i_sb;
  3330. struct buffer_head *bitmap_bh = NULL;
  3331. struct ext4_prealloc_space *pa, *tmp;
  3332. ext4_group_t group = 0;
  3333. struct list_head list;
  3334. struct ext4_buddy e4b;
  3335. int err;
  3336. if (!S_ISREG(inode->i_mode)) {
  3337. /*BUG_ON(!list_empty(&ei->i_prealloc_list));*/
  3338. return;
  3339. }
  3340. mb_debug(1, "discard preallocation for inode %lu\n", inode->i_ino);
  3341. trace_ext4_discard_preallocations(inode);
  3342. INIT_LIST_HEAD(&list);
  3343. repeat:
  3344. /* first, collect all pa's in the inode */
  3345. spin_lock(&ei->i_prealloc_lock);
  3346. while (!list_empty(&ei->i_prealloc_list)) {
  3347. pa = list_entry(ei->i_prealloc_list.next,
  3348. struct ext4_prealloc_space, pa_inode_list);
  3349. BUG_ON(pa->pa_obj_lock != &ei->i_prealloc_lock);
  3350. spin_lock(&pa->pa_lock);
  3351. if (atomic_read(&pa->pa_count)) {
  3352. /* this shouldn't happen often - nobody should
  3353. * use preallocation while we're discarding it */
  3354. spin_unlock(&pa->pa_lock);
  3355. spin_unlock(&ei->i_prealloc_lock);
  3356. printk(KERN_ERR "uh-oh! used pa while discarding\n");
  3357. WARN_ON(1);
  3358. schedule_timeout_uninterruptible(HZ);
  3359. goto repeat;
  3360. }
  3361. if (pa->pa_deleted == 0) {
  3362. pa->pa_deleted = 1;
  3363. spin_unlock(&pa->pa_lock);
  3364. list_del_rcu(&pa->pa_inode_list);
  3365. list_add(&pa->u.pa_tmp_list, &list);
  3366. continue;
  3367. }
  3368. /* someone is deleting pa right now */
  3369. spin_unlock(&pa->pa_lock);
  3370. spin_unlock(&ei->i_prealloc_lock);
  3371. /* we have to wait here because pa_deleted
  3372. * doesn't mean pa is already unlinked from
  3373. * the list. as we might be called from
  3374. * ->clear_inode() the inode will get freed
  3375. * and concurrent thread which is unlinking
  3376. * pa from inode's list may access already
  3377. * freed memory, bad-bad-bad */
  3378. /* XXX: if this happens too often, we can
  3379. * add a flag to force wait only in case
  3380. * of ->clear_inode(), but not in case of
  3381. * regular truncate */
  3382. schedule_timeout_uninterruptible(HZ);
  3383. goto repeat;
  3384. }
  3385. spin_unlock(&ei->i_prealloc_lock);
  3386. list_for_each_entry_safe(pa, tmp, &list, u.pa_tmp_list) {
  3387. BUG_ON(pa->pa_type != MB_INODE_PA);
  3388. ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
  3389. err = ext4_mb_load_buddy(sb, group, &e4b);
  3390. if (err) {
  3391. ext4_error(sb, "Error loading buddy information for %u",
  3392. group);
  3393. continue;
  3394. }
  3395. bitmap_bh = ext4_read_block_bitmap(sb, group);
  3396. if (bitmap_bh == NULL) {
  3397. ext4_error(sb, "Error reading block bitmap for %u",
  3398. group);
  3399. ext4_mb_unload_buddy(&e4b);
  3400. continue;
  3401. }
  3402. ext4_lock_group(sb, group);
  3403. list_del(&pa->pa_group_list);
  3404. ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
  3405. ext4_unlock_group(sb, group);
  3406. ext4_mb_unload_buddy(&e4b);
  3407. put_bh(bitmap_bh);
  3408. list_del(&pa->u.pa_tmp_list);
  3409. call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
  3410. }
  3411. }
  3412. /*
  3413. * finds all preallocated spaces and return blocks being freed to them
  3414. * if preallocated space becomes full (no block is used from the space)
  3415. * then the function frees space in buddy
  3416. * XXX: at the moment, truncate (which is the only way to free blocks)
  3417. * discards all preallocations
  3418. */
  3419. static void ext4_mb_return_to_preallocation(struct inode *inode,
  3420. struct ext4_buddy *e4b,
  3421. sector_t block, int count)
  3422. {
  3423. BUG_ON(!list_empty(&EXT4_I(inode)->i_prealloc_list));
  3424. }
  3425. #ifdef CONFIG_EXT4_DEBUG
  3426. static void ext4_mb_show_ac(struct ext4_allocation_context *ac)
  3427. {
  3428. struct super_block *sb = ac->ac_sb;
  3429. ext4_group_t ngroups, i;
  3430. if (EXT4_SB(sb)->s_mount_flags & EXT4_MF_FS_ABORTED)
  3431. return;
  3432. printk(KERN_ERR "EXT4-fs: Can't allocate:"
  3433. " Allocation context details:\n");
  3434. printk(KERN_ERR "EXT4-fs: status %d flags %d\n",
  3435. ac->ac_status, ac->ac_flags);
  3436. printk(KERN_ERR "EXT4-fs: orig %lu/%lu/%lu@%lu, goal %lu/%lu/%lu@%lu, "
  3437. "best %lu/%lu/%lu@%lu cr %d\n",
  3438. (unsigned long)ac->ac_o_ex.fe_group,
  3439. (unsigned long)ac->ac_o_ex.fe_start,
  3440. (unsigned long)ac->ac_o_ex.fe_len,
  3441. (unsigned long)ac->ac_o_ex.fe_logical,
  3442. (unsigned long)ac->ac_g_ex.fe_group,
  3443. (unsigned long)ac->ac_g_ex.fe_start,
  3444. (unsigned long)ac->ac_g_ex.fe_len,
  3445. (unsigned long)ac->ac_g_ex.fe_logical,
  3446. (unsigned long)ac->ac_b_ex.fe_group,
  3447. (unsigned long)ac->ac_b_ex.fe_start,
  3448. (unsigned long)ac->ac_b_ex.fe_len,
  3449. (unsigned long)ac->ac_b_ex.fe_logical,
  3450. (int)ac->ac_criteria);
  3451. printk(KERN_ERR "EXT4-fs: %lu scanned, %d found\n", ac->ac_ex_scanned,
  3452. ac->ac_found);
  3453. printk(KERN_ERR "EXT4-fs: groups: \n");
  3454. ngroups = ext4_get_groups_count(sb);
  3455. for (i = 0; i < ngroups; i++) {
  3456. struct ext4_group_info *grp = ext4_get_group_info(sb, i);
  3457. struct ext4_prealloc_space *pa;
  3458. ext4_grpblk_t start;
  3459. struct list_head *cur;
  3460. ext4_lock_group(sb, i);
  3461. list_for_each(cur, &grp->bb_prealloc_list) {
  3462. pa = list_entry(cur, struct ext4_prealloc_space,
  3463. pa_group_list);
  3464. spin_lock(&pa->pa_lock);
  3465. ext4_get_group_no_and_offset(sb, pa->pa_pstart,
  3466. NULL, &start);
  3467. spin_unlock(&pa->pa_lock);
  3468. printk(KERN_ERR "PA:%u:%d:%u \n", i,
  3469. start, pa->pa_len);
  3470. }
  3471. ext4_unlock_group(sb, i);
  3472. if (grp->bb_free == 0)
  3473. continue;
  3474. printk(KERN_ERR "%u: %d/%d \n",
  3475. i, grp->bb_free, grp->bb_fragments);
  3476. }
  3477. printk(KERN_ERR "\n");
  3478. }
  3479. #else
  3480. static inline void ext4_mb_show_ac(struct ext4_allocation_context *ac)
  3481. {
  3482. return;
  3483. }
  3484. #endif
  3485. /*
  3486. * We use locality group preallocation for small size file. The size of the
  3487. * file is determined by the current size or the resulting size after
  3488. * allocation which ever is larger
  3489. *
  3490. * One can tune this size via /sys/fs/ext4/<partition>/mb_stream_req
  3491. */
  3492. static void ext4_mb_group_or_file(struct ext4_allocation_context *ac)
  3493. {
  3494. struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  3495. int bsbits = ac->ac_sb->s_blocksize_bits;
  3496. loff_t size, isize;
  3497. if (!(ac->ac_flags & EXT4_MB_HINT_DATA))
  3498. return;
  3499. if (unlikely(ac->ac_flags & EXT4_MB_HINT_GOAL_ONLY))
  3500. return;
  3501. size = ac->ac_o_ex.fe_logical + ac->ac_o_ex.fe_len;
  3502. isize = (i_size_read(ac->ac_inode) + ac->ac_sb->s_blocksize - 1)
  3503. >> bsbits;
  3504. if ((size == isize) &&
  3505. !ext4_fs_is_busy(sbi) &&
  3506. (atomic_read(&ac->ac_inode->i_writecount) == 0)) {
  3507. ac->ac_flags |= EXT4_MB_HINT_NOPREALLOC;
  3508. return;
  3509. }
  3510. /* don't use group allocation for large files */
  3511. size = max(size, isize);
  3512. if (size > sbi->s_mb_stream_request) {
  3513. ac->ac_flags |= EXT4_MB_STREAM_ALLOC;
  3514. return;
  3515. }
  3516. BUG_ON(ac->ac_lg != NULL);
  3517. /*
  3518. * locality group prealloc space are per cpu. The reason for having
  3519. * per cpu locality group is to reduce the contention between block
  3520. * request from multiple CPUs.
  3521. */
  3522. ac->ac_lg = __this_cpu_ptr(sbi->s_locality_groups);
  3523. /* we're going to use group allocation */
  3524. ac->ac_flags |= EXT4_MB_HINT_GROUP_ALLOC;
  3525. /* serialize all allocations in the group */
  3526. mutex_lock(&ac->ac_lg->lg_mutex);
  3527. }
  3528. static noinline_for_stack int
  3529. ext4_mb_initialize_context(struct ext4_allocation_context *ac,
  3530. struct ext4_allocation_request *ar)
  3531. {
  3532. struct super_block *sb = ar->inode->i_sb;
  3533. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3534. struct ext4_super_block *es = sbi->s_es;
  3535. ext4_group_t group;
  3536. unsigned int len;
  3537. ext4_fsblk_t goal;
  3538. ext4_grpblk_t block;
  3539. /* we can't allocate > group size */
  3540. len = ar->len;
  3541. /* just a dirty hack to filter too big requests */
  3542. if (len >= EXT4_BLOCKS_PER_GROUP(sb) - 10)
  3543. len = EXT4_BLOCKS_PER_GROUP(sb) - 10;
  3544. /* start searching from the goal */
  3545. goal = ar->goal;
  3546. if (goal < le32_to_cpu(es->s_first_data_block) ||
  3547. goal >= ext4_blocks_count(es))
  3548. goal = le32_to_cpu(es->s_first_data_block);
  3549. ext4_get_group_no_and_offset(sb, goal, &group, &block);
  3550. /* set up allocation goals */
  3551. memset(ac, 0, sizeof(struct ext4_allocation_context));
  3552. ac->ac_b_ex.fe_logical = ar->logical;
  3553. ac->ac_status = AC_STATUS_CONTINUE;
  3554. ac->ac_sb = sb;
  3555. ac->ac_inode = ar->inode;
  3556. ac->ac_o_ex.fe_logical = ar->logical;
  3557. ac->ac_o_ex.fe_group = group;
  3558. ac->ac_o_ex.fe_start = block;
  3559. ac->ac_o_ex.fe_len = len;
  3560. ac->ac_g_ex.fe_logical = ar->logical;
  3561. ac->ac_g_ex.fe_group = group;
  3562. ac->ac_g_ex.fe_start = block;
  3563. ac->ac_g_ex.fe_len = len;
  3564. ac->ac_flags = ar->flags;
  3565. /* we have to define context: we'll we work with a file or
  3566. * locality group. this is a policy, actually */
  3567. ext4_mb_group_or_file(ac);
  3568. mb_debug(1, "init ac: %u blocks @ %u, goal %u, flags %x, 2^%d, "
  3569. "left: %u/%u, right %u/%u to %swritable\n",
  3570. (unsigned) ar->len, (unsigned) ar->logical,
  3571. (unsigned) ar->goal, ac->ac_flags, ac->ac_2order,
  3572. (unsigned) ar->lleft, (unsigned) ar->pleft,
  3573. (unsigned) ar->lright, (unsigned) ar->pright,
  3574. atomic_read(&ar->inode->i_writecount) ? "" : "non-");
  3575. return 0;
  3576. }
  3577. static noinline_for_stack void
  3578. ext4_mb_discard_lg_preallocations(struct super_block *sb,
  3579. struct ext4_locality_group *lg,
  3580. int order, int total_entries)
  3581. {
  3582. ext4_group_t group = 0;
  3583. struct ext4_buddy e4b;
  3584. struct list_head discard_list;
  3585. struct ext4_prealloc_space *pa, *tmp;
  3586. mb_debug(1, "discard locality group preallocation\n");
  3587. INIT_LIST_HEAD(&discard_list);
  3588. spin_lock(&lg->lg_prealloc_lock);
  3589. list_for_each_entry_rcu(pa, &lg->lg_prealloc_list[order],
  3590. pa_inode_list) {
  3591. spin_lock(&pa->pa_lock);
  3592. if (atomic_read(&pa->pa_count)) {
  3593. /*
  3594. * This is the pa that we just used
  3595. * for block allocation. So don't
  3596. * free that
  3597. */
  3598. spin_unlock(&pa->pa_lock);
  3599. continue;
  3600. }
  3601. if (pa->pa_deleted) {
  3602. spin_unlock(&pa->pa_lock);
  3603. continue;
  3604. }
  3605. /* only lg prealloc space */
  3606. BUG_ON(pa->pa_type != MB_GROUP_PA);
  3607. /* seems this one can be freed ... */
  3608. pa->pa_deleted = 1;
  3609. spin_unlock(&pa->pa_lock);
  3610. list_del_rcu(&pa->pa_inode_list);
  3611. list_add(&pa->u.pa_tmp_list, &discard_list);
  3612. total_entries--;
  3613. if (total_entries <= 5) {
  3614. /*
  3615. * we want to keep only 5 entries
  3616. * allowing it to grow to 8. This
  3617. * mak sure we don't call discard
  3618. * soon for this list.
  3619. */
  3620. break;
  3621. }
  3622. }
  3623. spin_unlock(&lg->lg_prealloc_lock);
  3624. list_for_each_entry_safe(pa, tmp, &discard_list, u.pa_tmp_list) {
  3625. ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, NULL);
  3626. if (ext4_mb_load_buddy(sb, group, &e4b)) {
  3627. ext4_error(sb, "Error loading buddy information for %u",
  3628. group);
  3629. continue;
  3630. }
  3631. ext4_lock_group(sb, group);
  3632. list_del(&pa->pa_group_list);
  3633. ext4_mb_release_group_pa(&e4b, pa);
  3634. ext4_unlock_group(sb, group);
  3635. ext4_mb_unload_buddy(&e4b);
  3636. list_del(&pa->u.pa_tmp_list);
  3637. call_rcu(&(pa)->u.pa_rcu, ext4_mb_pa_callback);
  3638. }
  3639. }
  3640. /*
  3641. * We have incremented pa_count. So it cannot be freed at this
  3642. * point. Also we hold lg_mutex. So no parallel allocation is
  3643. * possible from this lg. That means pa_free cannot be updated.
  3644. *
  3645. * A parallel ext4_mb_discard_group_preallocations is possible.
  3646. * which can cause the lg_prealloc_list to be updated.
  3647. */
  3648. static void ext4_mb_add_n_trim(struct ext4_allocation_context *ac)
  3649. {
  3650. int order, added = 0, lg_prealloc_count = 1;
  3651. struct super_block *sb = ac->ac_sb;
  3652. struct ext4_locality_group *lg = ac->ac_lg;
  3653. struct ext4_prealloc_space *tmp_pa, *pa = ac->ac_pa;
  3654. order = fls(pa->pa_free) - 1;
  3655. if (order > PREALLOC_TB_SIZE - 1)
  3656. /* The max size of hash table is PREALLOC_TB_SIZE */
  3657. order = PREALLOC_TB_SIZE - 1;
  3658. /* Add the prealloc space to lg */
  3659. rcu_read_lock();
  3660. list_for_each_entry_rcu(tmp_pa, &lg->lg_prealloc_list[order],
  3661. pa_inode_list) {
  3662. spin_lock(&tmp_pa->pa_lock);
  3663. if (tmp_pa->pa_deleted) {
  3664. spin_unlock(&tmp_pa->pa_lock);
  3665. continue;
  3666. }
  3667. if (!added && pa->pa_free < tmp_pa->pa_free) {
  3668. /* Add to the tail of the previous entry */
  3669. list_add_tail_rcu(&pa->pa_inode_list,
  3670. &tmp_pa->pa_inode_list);
  3671. added = 1;
  3672. /*
  3673. * we want to count the total
  3674. * number of entries in the list
  3675. */
  3676. }
  3677. spin_unlock(&tmp_pa->pa_lock);
  3678. lg_prealloc_count++;
  3679. }
  3680. if (!added)
  3681. list_add_tail_rcu(&pa->pa_inode_list,
  3682. &lg->lg_prealloc_list[order]);
  3683. rcu_read_unlock();
  3684. /* Now trim the list to be not more than 8 elements */
  3685. if (lg_prealloc_count > 8) {
  3686. ext4_mb_discard_lg_preallocations(sb, lg,
  3687. order, lg_prealloc_count);
  3688. return;
  3689. }
  3690. return ;
  3691. }
  3692. /*
  3693. * release all resource we used in allocation
  3694. */
  3695. static int ext4_mb_release_context(struct ext4_allocation_context *ac)
  3696. {
  3697. struct ext4_prealloc_space *pa = ac->ac_pa;
  3698. if (pa) {
  3699. if (pa->pa_type == MB_GROUP_PA) {
  3700. /* see comment in ext4_mb_use_group_pa() */
  3701. spin_lock(&pa->pa_lock);
  3702. pa->pa_pstart += ac->ac_b_ex.fe_len;
  3703. pa->pa_lstart += ac->ac_b_ex.fe_len;
  3704. pa->pa_free -= ac->ac_b_ex.fe_len;
  3705. pa->pa_len -= ac->ac_b_ex.fe_len;
  3706. spin_unlock(&pa->pa_lock);
  3707. }
  3708. }
  3709. if (ac->alloc_semp)
  3710. up_read(ac->alloc_semp);
  3711. if (pa) {
  3712. /*
  3713. * We want to add the pa to the right bucket.
  3714. * Remove it from the list and while adding
  3715. * make sure the list to which we are adding
  3716. * doesn't grow big. We need to release
  3717. * alloc_semp before calling ext4_mb_add_n_trim()
  3718. */
  3719. if ((pa->pa_type == MB_GROUP_PA) && likely(pa->pa_free)) {
  3720. spin_lock(pa->pa_obj_lock);
  3721. list_del_rcu(&pa->pa_inode_list);
  3722. spin_unlock(pa->pa_obj_lock);
  3723. ext4_mb_add_n_trim(ac);
  3724. }
  3725. ext4_mb_put_pa(ac, ac->ac_sb, pa);
  3726. }
  3727. if (ac->ac_bitmap_page)
  3728. page_cache_release(ac->ac_bitmap_page);
  3729. if (ac->ac_buddy_page)
  3730. page_cache_release(ac->ac_buddy_page);
  3731. if (ac->ac_flags & EXT4_MB_HINT_GROUP_ALLOC)
  3732. mutex_unlock(&ac->ac_lg->lg_mutex);
  3733. ext4_mb_collect_stats(ac);
  3734. return 0;
  3735. }
  3736. static int ext4_mb_discard_preallocations(struct super_block *sb, int needed)
  3737. {
  3738. ext4_group_t i, ngroups = ext4_get_groups_count(sb);
  3739. int ret;
  3740. int freed = 0;
  3741. trace_ext4_mb_discard_preallocations(sb, needed);
  3742. for (i = 0; i < ngroups && needed > 0; i++) {
  3743. ret = ext4_mb_discard_group_preallocations(sb, i, needed);
  3744. freed += ret;
  3745. needed -= ret;
  3746. }
  3747. return freed;
  3748. }
  3749. /*
  3750. * Main entry point into mballoc to allocate blocks
  3751. * it tries to use preallocation first, then falls back
  3752. * to usual allocation
  3753. */
  3754. ext4_fsblk_t ext4_mb_new_blocks(handle_t *handle,
  3755. struct ext4_allocation_request *ar, int *errp)
  3756. {
  3757. int freed;
  3758. struct ext4_allocation_context *ac = NULL;
  3759. struct ext4_sb_info *sbi;
  3760. struct super_block *sb;
  3761. ext4_fsblk_t block = 0;
  3762. unsigned int inquota = 0;
  3763. unsigned int reserv_blks = 0;
  3764. sb = ar->inode->i_sb;
  3765. sbi = EXT4_SB(sb);
  3766. trace_ext4_request_blocks(ar);
  3767. /*
  3768. * For delayed allocation, we could skip the ENOSPC and
  3769. * EDQUOT check, as blocks and quotas have been already
  3770. * reserved when data being copied into pagecache.
  3771. */
  3772. if (EXT4_I(ar->inode)->i_delalloc_reserved_flag)
  3773. ar->flags |= EXT4_MB_DELALLOC_RESERVED;
  3774. else {
  3775. /* Without delayed allocation we need to verify
  3776. * there is enough free blocks to do block allocation
  3777. * and verify allocation doesn't exceed the quota limits.
  3778. */
  3779. while (ar->len && ext4_claim_free_blocks(sbi, ar->len)) {
  3780. /* let others to free the space */
  3781. yield();
  3782. ar->len = ar->len >> 1;
  3783. }
  3784. if (!ar->len) {
  3785. *errp = -ENOSPC;
  3786. return 0;
  3787. }
  3788. reserv_blks = ar->len;
  3789. while (ar->len && dquot_alloc_block(ar->inode, ar->len)) {
  3790. ar->flags |= EXT4_MB_HINT_NOPREALLOC;
  3791. ar->len--;
  3792. }
  3793. inquota = ar->len;
  3794. if (ar->len == 0) {
  3795. *errp = -EDQUOT;
  3796. goto out;
  3797. }
  3798. }
  3799. ac = kmem_cache_alloc(ext4_ac_cachep, GFP_NOFS);
  3800. if (!ac) {
  3801. ar->len = 0;
  3802. *errp = -ENOMEM;
  3803. goto out;
  3804. }
  3805. *errp = ext4_mb_initialize_context(ac, ar);
  3806. if (*errp) {
  3807. ar->len = 0;
  3808. goto out;
  3809. }
  3810. ac->ac_op = EXT4_MB_HISTORY_PREALLOC;
  3811. if (!ext4_mb_use_preallocated(ac)) {
  3812. ac->ac_op = EXT4_MB_HISTORY_ALLOC;
  3813. ext4_mb_normalize_request(ac, ar);
  3814. repeat:
  3815. /* allocate space in core */
  3816. *errp = ext4_mb_regular_allocator(ac);
  3817. if (*errp)
  3818. goto errout;
  3819. /* as we've just preallocated more space than
  3820. * user requested orinally, we store allocated
  3821. * space in a special descriptor */
  3822. if (ac->ac_status == AC_STATUS_FOUND &&
  3823. ac->ac_o_ex.fe_len < ac->ac_b_ex.fe_len)
  3824. ext4_mb_new_preallocation(ac);
  3825. }
  3826. if (likely(ac->ac_status == AC_STATUS_FOUND)) {
  3827. *errp = ext4_mb_mark_diskspace_used(ac, handle, reserv_blks);
  3828. if (*errp == -EAGAIN) {
  3829. /*
  3830. * drop the reference that we took
  3831. * in ext4_mb_use_best_found
  3832. */
  3833. ext4_mb_release_context(ac);
  3834. ac->ac_b_ex.fe_group = 0;
  3835. ac->ac_b_ex.fe_start = 0;
  3836. ac->ac_b_ex.fe_len = 0;
  3837. ac->ac_status = AC_STATUS_CONTINUE;
  3838. goto repeat;
  3839. } else if (*errp)
  3840. errout:
  3841. ext4_discard_allocated_blocks(ac);
  3842. else {
  3843. block = ext4_grp_offs_to_block(sb, &ac->ac_b_ex);
  3844. ar->len = ac->ac_b_ex.fe_len;
  3845. }
  3846. } else {
  3847. freed = ext4_mb_discard_preallocations(sb, ac->ac_o_ex.fe_len);
  3848. if (freed)
  3849. goto repeat;
  3850. *errp = -ENOSPC;
  3851. }
  3852. if (*errp) {
  3853. ac->ac_b_ex.fe_len = 0;
  3854. ar->len = 0;
  3855. ext4_mb_show_ac(ac);
  3856. }
  3857. ext4_mb_release_context(ac);
  3858. out:
  3859. if (ac)
  3860. kmem_cache_free(ext4_ac_cachep, ac);
  3861. if (inquota && ar->len < inquota)
  3862. dquot_free_block(ar->inode, inquota - ar->len);
  3863. if (!ar->len) {
  3864. if (!EXT4_I(ar->inode)->i_delalloc_reserved_flag)
  3865. /* release all the reserved blocks if non delalloc */
  3866. percpu_counter_sub(&sbi->s_dirtyblocks_counter,
  3867. reserv_blks);
  3868. }
  3869. trace_ext4_allocate_blocks(ar, (unsigned long long)block);
  3870. return block;
  3871. }
  3872. /*
  3873. * We can merge two free data extents only if the physical blocks
  3874. * are contiguous, AND the extents were freed by the same transaction,
  3875. * AND the blocks are associated with the same group.
  3876. */
  3877. static int can_merge(struct ext4_free_data *entry1,
  3878. struct ext4_free_data *entry2)
  3879. {
  3880. if ((entry1->t_tid == entry2->t_tid) &&
  3881. (entry1->group == entry2->group) &&
  3882. ((entry1->start_blk + entry1->count) == entry2->start_blk))
  3883. return 1;
  3884. return 0;
  3885. }
  3886. static noinline_for_stack int
  3887. ext4_mb_free_metadata(handle_t *handle, struct ext4_buddy *e4b,
  3888. struct ext4_free_data *new_entry)
  3889. {
  3890. ext4_group_t group = e4b->bd_group;
  3891. ext4_grpblk_t block;
  3892. struct ext4_free_data *entry;
  3893. struct ext4_group_info *db = e4b->bd_info;
  3894. struct super_block *sb = e4b->bd_sb;
  3895. struct ext4_sb_info *sbi = EXT4_SB(sb);
  3896. struct rb_node **n = &db->bb_free_root.rb_node, *node;
  3897. struct rb_node *parent = NULL, *new_node;
  3898. BUG_ON(!ext4_handle_valid(handle));
  3899. BUG_ON(e4b->bd_bitmap_page == NULL);
  3900. BUG_ON(e4b->bd_buddy_page == NULL);
  3901. new_node = &new_entry->node;
  3902. block = new_entry->start_blk;
  3903. if (!*n) {
  3904. /* first free block exent. We need to
  3905. protect buddy cache from being freed,
  3906. * otherwise we'll refresh it from
  3907. * on-disk bitmap and lose not-yet-available
  3908. * blocks */
  3909. page_cache_get(e4b->bd_buddy_page);
  3910. page_cache_get(e4b->bd_bitmap_page);
  3911. }
  3912. while (*n) {
  3913. parent = *n;
  3914. entry = rb_entry(parent, struct ext4_free_data, node);
  3915. if (block < entry->start_blk)
  3916. n = &(*n)->rb_left;
  3917. else if (block >= (entry->start_blk + entry->count))
  3918. n = &(*n)->rb_right;
  3919. else {
  3920. ext4_grp_locked_error(sb, group, 0,
  3921. ext4_group_first_block_no(sb, group) + block,
  3922. "Block already on to-be-freed list");
  3923. return 0;
  3924. }
  3925. }
  3926. rb_link_node(new_node, parent, n);
  3927. rb_insert_color(new_node, &db->bb_free_root);
  3928. /* Now try to see the extent can be merged to left and right */
  3929. node = rb_prev(new_node);
  3930. if (node) {
  3931. entry = rb_entry(node, struct ext4_free_data, node);
  3932. if (can_merge(entry, new_entry)) {
  3933. new_entry->start_blk = entry->start_blk;
  3934. new_entry->count += entry->count;
  3935. rb_erase(node, &(db->bb_free_root));
  3936. spin_lock(&sbi->s_md_lock);
  3937. list_del(&entry->list);
  3938. spin_unlock(&sbi->s_md_lock);
  3939. kmem_cache_free(ext4_free_ext_cachep, entry);
  3940. }
  3941. }
  3942. node = rb_next(new_node);
  3943. if (node) {
  3944. entry = rb_entry(node, struct ext4_free_data, node);
  3945. if (can_merge(new_entry, entry)) {
  3946. new_entry->count += entry->count;
  3947. rb_erase(node, &(db->bb_free_root));
  3948. spin_lock(&sbi->s_md_lock);
  3949. list_del(&entry->list);
  3950. spin_unlock(&sbi->s_md_lock);
  3951. kmem_cache_free(ext4_free_ext_cachep, entry);
  3952. }
  3953. }
  3954. /* Add the extent to transaction's private list */
  3955. spin_lock(&sbi->s_md_lock);
  3956. list_add(&new_entry->list, &handle->h_transaction->t_private_list);
  3957. spin_unlock(&sbi->s_md_lock);
  3958. return 0;
  3959. }
  3960. /**
  3961. * ext4_free_blocks() -- Free given blocks and update quota
  3962. * @handle: handle for this transaction
  3963. * @inode: inode
  3964. * @block: start physical block to free
  3965. * @count: number of blocks to count
  3966. * @metadata: Are these metadata blocks
  3967. */
  3968. void ext4_free_blocks(handle_t *handle, struct inode *inode,
  3969. struct buffer_head *bh, ext4_fsblk_t block,
  3970. unsigned long count, int flags)
  3971. {
  3972. struct buffer_head *bitmap_bh = NULL;
  3973. struct super_block *sb = inode->i_sb;
  3974. struct ext4_group_desc *gdp;
  3975. unsigned long freed = 0;
  3976. unsigned int overflow;
  3977. ext4_grpblk_t bit;
  3978. struct buffer_head *gd_bh;
  3979. ext4_group_t block_group;
  3980. struct ext4_sb_info *sbi;
  3981. struct ext4_buddy e4b;
  3982. int err = 0;
  3983. int ret;
  3984. if (bh) {
  3985. if (block)
  3986. BUG_ON(block != bh->b_blocknr);
  3987. else
  3988. block = bh->b_blocknr;
  3989. }
  3990. sbi = EXT4_SB(sb);
  3991. if (!(flags & EXT4_FREE_BLOCKS_VALIDATED) &&
  3992. !ext4_data_block_valid(sbi, block, count)) {
  3993. ext4_error(sb, "Freeing blocks not in datazone - "
  3994. "block = %llu, count = %lu", block, count);
  3995. goto error_return;
  3996. }
  3997. ext4_debug("freeing block %llu\n", block);
  3998. trace_ext4_free_blocks(inode, block, count, flags);
  3999. if (flags & EXT4_FREE_BLOCKS_FORGET) {
  4000. struct buffer_head *tbh = bh;
  4001. int i;
  4002. BUG_ON(bh && (count > 1));
  4003. for (i = 0; i < count; i++) {
  4004. if (!bh)
  4005. tbh = sb_find_get_block(inode->i_sb,
  4006. block + i);
  4007. if (unlikely(!tbh))
  4008. continue;
  4009. ext4_forget(handle, flags & EXT4_FREE_BLOCKS_METADATA,
  4010. inode, tbh, block + i);
  4011. }
  4012. }
  4013. /*
  4014. * We need to make sure we don't reuse the freed block until
  4015. * after the transaction is committed, which we can do by
  4016. * treating the block as metadata, below. We make an
  4017. * exception if the inode is to be written in writeback mode
  4018. * since writeback mode has weak data consistency guarantees.
  4019. */
  4020. if (!ext4_should_writeback_data(inode))
  4021. flags |= EXT4_FREE_BLOCKS_METADATA;
  4022. do_more:
  4023. overflow = 0;
  4024. ext4_get_group_no_and_offset(sb, block, &block_group, &bit);
  4025. /*
  4026. * Check to see if we are freeing blocks across a group
  4027. * boundary.
  4028. */
  4029. if (bit + count > EXT4_BLOCKS_PER_GROUP(sb)) {
  4030. overflow = bit + count - EXT4_BLOCKS_PER_GROUP(sb);
  4031. count -= overflow;
  4032. }
  4033. bitmap_bh = ext4_read_block_bitmap(sb, block_group);
  4034. if (!bitmap_bh) {
  4035. err = -EIO;
  4036. goto error_return;
  4037. }
  4038. gdp = ext4_get_group_desc(sb, block_group, &gd_bh);
  4039. if (!gdp) {
  4040. err = -EIO;
  4041. goto error_return;
  4042. }
  4043. if (in_range(ext4_block_bitmap(sb, gdp), block, count) ||
  4044. in_range(ext4_inode_bitmap(sb, gdp), block, count) ||
  4045. in_range(block, ext4_inode_table(sb, gdp),
  4046. EXT4_SB(sb)->s_itb_per_group) ||
  4047. in_range(block + count - 1, ext4_inode_table(sb, gdp),
  4048. EXT4_SB(sb)->s_itb_per_group)) {
  4049. ext4_error(sb, "Freeing blocks in system zone - "
  4050. "Block = %llu, count = %lu", block, count);
  4051. /* err = 0. ext4_std_error should be a no op */
  4052. goto error_return;
  4053. }
  4054. BUFFER_TRACE(bitmap_bh, "getting write access");
  4055. err = ext4_journal_get_write_access(handle, bitmap_bh);
  4056. if (err)
  4057. goto error_return;
  4058. /*
  4059. * We are about to modify some metadata. Call the journal APIs
  4060. * to unshare ->b_data if a currently-committing transaction is
  4061. * using it
  4062. */
  4063. BUFFER_TRACE(gd_bh, "get_write_access");
  4064. err = ext4_journal_get_write_access(handle, gd_bh);
  4065. if (err)
  4066. goto error_return;
  4067. #ifdef AGGRESSIVE_CHECK
  4068. {
  4069. int i;
  4070. for (i = 0; i < count; i++)
  4071. BUG_ON(!mb_test_bit(bit + i, bitmap_bh->b_data));
  4072. }
  4073. #endif
  4074. trace_ext4_mballoc_free(sb, inode, block_group, bit, count);
  4075. err = ext4_mb_load_buddy(sb, block_group, &e4b);
  4076. if (err)
  4077. goto error_return;
  4078. if ((flags & EXT4_FREE_BLOCKS_METADATA) && ext4_handle_valid(handle)) {
  4079. struct ext4_free_data *new_entry;
  4080. /*
  4081. * blocks being freed are metadata. these blocks shouldn't
  4082. * be used until this transaction is committed
  4083. */
  4084. new_entry = kmem_cache_alloc(ext4_free_ext_cachep, GFP_NOFS);
  4085. new_entry->start_blk = bit;
  4086. new_entry->group = block_group;
  4087. new_entry->count = count;
  4088. new_entry->t_tid = handle->h_transaction->t_tid;
  4089. ext4_lock_group(sb, block_group);
  4090. mb_clear_bits(bitmap_bh->b_data, bit, count);
  4091. ext4_mb_free_metadata(handle, &e4b, new_entry);
  4092. } else {
  4093. /* need to update group_info->bb_free and bitmap
  4094. * with group lock held. generate_buddy look at
  4095. * them with group lock_held
  4096. */
  4097. if (test_opt(sb, DISCARD))
  4098. ext4_issue_discard(sb, block_group, bit, count);
  4099. ext4_lock_group(sb, block_group);
  4100. mb_clear_bits(bitmap_bh->b_data, bit, count);
  4101. mb_free_blocks(inode, &e4b, bit, count);
  4102. ext4_mb_return_to_preallocation(inode, &e4b, block, count);
  4103. }
  4104. ret = ext4_free_blks_count(sb, gdp) + count;
  4105. ext4_free_blks_set(sb, gdp, ret);
  4106. gdp->bg_checksum = ext4_group_desc_csum(sbi, block_group, gdp);
  4107. ext4_unlock_group(sb, block_group);
  4108. percpu_counter_add(&sbi->s_freeblocks_counter, count);
  4109. if (sbi->s_log_groups_per_flex) {
  4110. ext4_group_t flex_group = ext4_flex_group(sbi, block_group);
  4111. atomic_add(count, &sbi->s_flex_groups[flex_group].free_blocks);
  4112. }
  4113. ext4_mb_unload_buddy(&e4b);
  4114. freed += count;
  4115. /* We dirtied the bitmap block */
  4116. BUFFER_TRACE(bitmap_bh, "dirtied bitmap block");
  4117. err = ext4_handle_dirty_metadata(handle, NULL, bitmap_bh);
  4118. /* And the group descriptor block */
  4119. BUFFER_TRACE(gd_bh, "dirtied group descriptor block");
  4120. ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh);
  4121. if (!err)
  4122. err = ret;
  4123. if (overflow && !err) {
  4124. block += count;
  4125. count = overflow;
  4126. put_bh(bitmap_bh);
  4127. goto do_more;
  4128. }
  4129. ext4_mark_super_dirty(sb);
  4130. error_return:
  4131. if (freed)
  4132. dquot_free_block(inode, freed);
  4133. brelse(bitmap_bh);
  4134. ext4_std_error(sb, err);
  4135. return;
  4136. }
  4137. /**
  4138. * ext4_trim_extent -- function to TRIM one single free extent in the group
  4139. * @sb: super block for the file system
  4140. * @start: starting block of the free extent in the alloc. group
  4141. * @count: number of blocks to TRIM
  4142. * @group: alloc. group we are working with
  4143. * @e4b: ext4 buddy for the group
  4144. *
  4145. * Trim "count" blocks starting at "start" in the "group". To assure that no
  4146. * one will allocate those blocks, mark it as used in buddy bitmap. This must
  4147. * be called with under the group lock.
  4148. */
  4149. static int ext4_trim_extent(struct super_block *sb, int start, int count,
  4150. ext4_group_t group, struct ext4_buddy *e4b)
  4151. {
  4152. struct ext4_free_extent ex;
  4153. int ret = 0;
  4154. assert_spin_locked(ext4_group_lock_ptr(sb, group));
  4155. ex.fe_start = start;
  4156. ex.fe_group = group;
  4157. ex.fe_len = count;
  4158. /*
  4159. * Mark blocks used, so no one can reuse them while
  4160. * being trimmed.
  4161. */
  4162. mb_mark_used(e4b, &ex);
  4163. ext4_unlock_group(sb, group);
  4164. ret = ext4_issue_discard(sb, group, start, count);
  4165. if (ret)
  4166. ext4_std_error(sb, ret);
  4167. ext4_lock_group(sb, group);
  4168. mb_free_blocks(NULL, e4b, start, ex.fe_len);
  4169. return ret;
  4170. }
  4171. /**
  4172. * ext4_trim_all_free -- function to trim all free space in alloc. group
  4173. * @sb: super block for file system
  4174. * @e4b: ext4 buddy
  4175. * @start: first group block to examine
  4176. * @max: last group block to examine
  4177. * @minblocks: minimum extent block count
  4178. *
  4179. * ext4_trim_all_free walks through group's buddy bitmap searching for free
  4180. * extents. When the free block is found, ext4_trim_extent is called to TRIM
  4181. * the extent.
  4182. *
  4183. *
  4184. * ext4_trim_all_free walks through group's block bitmap searching for free
  4185. * extents. When the free extent is found, mark it as used in group buddy
  4186. * bitmap. Then issue a TRIM command on this extent and free the extent in
  4187. * the group buddy bitmap. This is done until whole group is scanned.
  4188. */
  4189. ext4_grpblk_t ext4_trim_all_free(struct super_block *sb, struct ext4_buddy *e4b,
  4190. ext4_grpblk_t start, ext4_grpblk_t max, ext4_grpblk_t minblocks)
  4191. {
  4192. void *bitmap;
  4193. ext4_grpblk_t next, count = 0;
  4194. ext4_group_t group;
  4195. int ret = 0;
  4196. BUG_ON(e4b == NULL);
  4197. bitmap = e4b->bd_bitmap;
  4198. group = e4b->bd_group;
  4199. start = (e4b->bd_info->bb_first_free > start) ?
  4200. e4b->bd_info->bb_first_free : start;
  4201. ext4_lock_group(sb, group);
  4202. while (start < max) {
  4203. start = mb_find_next_zero_bit(bitmap, max, start);
  4204. if (start >= max)
  4205. break;
  4206. next = mb_find_next_bit(bitmap, max, start);
  4207. if ((next - start) >= minblocks) {
  4208. ret = ext4_trim_extent(sb, start,
  4209. next - start, group, e4b);
  4210. if (ret < 0)
  4211. break;
  4212. count += next - start;
  4213. }
  4214. start = next + 1;
  4215. if (fatal_signal_pending(current)) {
  4216. count = -ERESTARTSYS;
  4217. break;
  4218. }
  4219. if (need_resched()) {
  4220. ext4_unlock_group(sb, group);
  4221. cond_resched();
  4222. ext4_lock_group(sb, group);
  4223. }
  4224. if ((e4b->bd_info->bb_free - count) < minblocks)
  4225. break;
  4226. }
  4227. ext4_unlock_group(sb, group);
  4228. ext4_debug("trimmed %d blocks in the group %d\n",
  4229. count, group);
  4230. if (ret < 0)
  4231. count = ret;
  4232. return count;
  4233. }
  4234. /**
  4235. * ext4_trim_fs() -- trim ioctl handle function
  4236. * @sb: superblock for filesystem
  4237. * @range: fstrim_range structure
  4238. *
  4239. * start: First Byte to trim
  4240. * len: number of Bytes to trim from start
  4241. * minlen: minimum extent length in Bytes
  4242. * ext4_trim_fs goes through all allocation groups containing Bytes from
  4243. * start to start+len. For each such a group ext4_trim_all_free function
  4244. * is invoked to trim all free space.
  4245. */
  4246. int ext4_trim_fs(struct super_block *sb, struct fstrim_range *range)
  4247. {
  4248. struct ext4_buddy e4b;
  4249. ext4_group_t first_group, last_group;
  4250. ext4_group_t group, ngroups = ext4_get_groups_count(sb);
  4251. ext4_grpblk_t cnt = 0, first_block, last_block;
  4252. uint64_t start, len, minlen, trimmed;
  4253. int ret = 0;
  4254. start = range->start >> sb->s_blocksize_bits;
  4255. len = range->len >> sb->s_blocksize_bits;
  4256. minlen = range->minlen >> sb->s_blocksize_bits;
  4257. trimmed = 0;
  4258. if (unlikely(minlen > EXT4_BLOCKS_PER_GROUP(sb)))
  4259. return -EINVAL;
  4260. /* Determine first and last group to examine based on start and len */
  4261. ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) start,
  4262. &first_group, &first_block);
  4263. ext4_get_group_no_and_offset(sb, (ext4_fsblk_t) (start + len),
  4264. &last_group, &last_block);
  4265. last_group = (last_group > ngroups - 1) ? ngroups - 1 : last_group;
  4266. last_block = EXT4_BLOCKS_PER_GROUP(sb);
  4267. if (first_group > last_group)
  4268. return -EINVAL;
  4269. for (group = first_group; group <= last_group; group++) {
  4270. ret = ext4_mb_load_buddy(sb, group, &e4b);
  4271. if (ret) {
  4272. ext4_error(sb, "Error in loading buddy "
  4273. "information for %u", group);
  4274. break;
  4275. }
  4276. if (len >= EXT4_BLOCKS_PER_GROUP(sb))
  4277. len -= (EXT4_BLOCKS_PER_GROUP(sb) - first_block);
  4278. else
  4279. last_block = len;
  4280. if (e4b.bd_info->bb_free >= minlen) {
  4281. cnt = ext4_trim_all_free(sb, &e4b, first_block,
  4282. last_block, minlen);
  4283. if (cnt < 0) {
  4284. ret = cnt;
  4285. ext4_mb_unload_buddy(&e4b);
  4286. break;
  4287. }
  4288. }
  4289. ext4_mb_unload_buddy(&e4b);
  4290. trimmed += cnt;
  4291. first_block = 0;
  4292. }
  4293. range->len = trimmed * sb->s_blocksize;
  4294. return ret;
  4295. }