hugetlb.c 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407
  1. /*
  2. * Generic hugetlb support.
  3. * (C) Nadia Yvette Chambers, April 2004
  4. */
  5. #include <linux/list.h>
  6. #include <linux/init.h>
  7. #include <linux/mm.h>
  8. #include <linux/seq_file.h>
  9. #include <linux/sysctl.h>
  10. #include <linux/highmem.h>
  11. #include <linux/mmu_notifier.h>
  12. #include <linux/nodemask.h>
  13. #include <linux/pagemap.h>
  14. #include <linux/mempolicy.h>
  15. #include <linux/compiler.h>
  16. #include <linux/cpuset.h>
  17. #include <linux/mutex.h>
  18. #include <linux/bootmem.h>
  19. #include <linux/sysfs.h>
  20. #include <linux/slab.h>
  21. #include <linux/rmap.h>
  22. #include <linux/swap.h>
  23. #include <linux/swapops.h>
  24. #include <linux/page-isolation.h>
  25. #include <linux/jhash.h>
  26. #include <asm/page.h>
  27. #include <asm/pgtable.h>
  28. #include <asm/tlb.h>
  29. #include <linux/io.h>
  30. #include <linux/hugetlb.h>
  31. #include <linux/hugetlb_cgroup.h>
  32. #include <linux/node.h>
  33. #include "internal.h"
  34. int hugepages_treat_as_movable;
  35. int hugetlb_max_hstate __read_mostly;
  36. unsigned int default_hstate_idx;
  37. struct hstate hstates[HUGE_MAX_HSTATE];
  38. /*
  39. * Minimum page order among possible hugepage sizes, set to a proper value
  40. * at boot time.
  41. */
  42. static unsigned int minimum_order __read_mostly = UINT_MAX;
  43. __initdata LIST_HEAD(huge_boot_pages);
  44. /* for command line parsing */
  45. static struct hstate * __initdata parsed_hstate;
  46. static unsigned long __initdata default_hstate_max_huge_pages;
  47. static unsigned long __initdata default_hstate_size;
  48. /*
  49. * Protects updates to hugepage_freelists, hugepage_activelist, nr_huge_pages,
  50. * free_huge_pages, and surplus_huge_pages.
  51. */
  52. DEFINE_SPINLOCK(hugetlb_lock);
  53. /*
  54. * Serializes faults on the same logical page. This is used to
  55. * prevent spurious OOMs when the hugepage pool is fully utilized.
  56. */
  57. static int num_fault_mutexes;
  58. struct mutex *hugetlb_fault_mutex_table ____cacheline_aligned_in_smp;
  59. /* Forward declaration */
  60. static int hugetlb_acct_memory(struct hstate *h, long delta);
  61. static inline void unlock_or_release_subpool(struct hugepage_subpool *spool)
  62. {
  63. bool free = (spool->count == 0) && (spool->used_hpages == 0);
  64. spin_unlock(&spool->lock);
  65. /* If no pages are used, and no other handles to the subpool
  66. * remain, give up any reservations mased on minimum size and
  67. * free the subpool */
  68. if (free) {
  69. if (spool->min_hpages != -1)
  70. hugetlb_acct_memory(spool->hstate,
  71. -spool->min_hpages);
  72. kfree(spool);
  73. }
  74. }
  75. struct hugepage_subpool *hugepage_new_subpool(struct hstate *h, long max_hpages,
  76. long min_hpages)
  77. {
  78. struct hugepage_subpool *spool;
  79. spool = kzalloc(sizeof(*spool), GFP_KERNEL);
  80. if (!spool)
  81. return NULL;
  82. spin_lock_init(&spool->lock);
  83. spool->count = 1;
  84. spool->max_hpages = max_hpages;
  85. spool->hstate = h;
  86. spool->min_hpages = min_hpages;
  87. if (min_hpages != -1 && hugetlb_acct_memory(h, min_hpages)) {
  88. kfree(spool);
  89. return NULL;
  90. }
  91. spool->rsv_hpages = min_hpages;
  92. return spool;
  93. }
  94. void hugepage_put_subpool(struct hugepage_subpool *spool)
  95. {
  96. spin_lock(&spool->lock);
  97. BUG_ON(!spool->count);
  98. spool->count--;
  99. unlock_or_release_subpool(spool);
  100. }
  101. /*
  102. * Subpool accounting for allocating and reserving pages.
  103. * Return -ENOMEM if there are not enough resources to satisfy the
  104. * the request. Otherwise, return the number of pages by which the
  105. * global pools must be adjusted (upward). The returned value may
  106. * only be different than the passed value (delta) in the case where
  107. * a subpool minimum size must be manitained.
  108. */
  109. static long hugepage_subpool_get_pages(struct hugepage_subpool *spool,
  110. long delta)
  111. {
  112. long ret = delta;
  113. if (!spool)
  114. return ret;
  115. spin_lock(&spool->lock);
  116. if (spool->max_hpages != -1) { /* maximum size accounting */
  117. if ((spool->used_hpages + delta) <= spool->max_hpages)
  118. spool->used_hpages += delta;
  119. else {
  120. ret = -ENOMEM;
  121. goto unlock_ret;
  122. }
  123. }
  124. if (spool->min_hpages != -1) { /* minimum size accounting */
  125. if (delta > spool->rsv_hpages) {
  126. /*
  127. * Asking for more reserves than those already taken on
  128. * behalf of subpool. Return difference.
  129. */
  130. ret = delta - spool->rsv_hpages;
  131. spool->rsv_hpages = 0;
  132. } else {
  133. ret = 0; /* reserves already accounted for */
  134. spool->rsv_hpages -= delta;
  135. }
  136. }
  137. unlock_ret:
  138. spin_unlock(&spool->lock);
  139. return ret;
  140. }
  141. /*
  142. * Subpool accounting for freeing and unreserving pages.
  143. * Return the number of global page reservations that must be dropped.
  144. * The return value may only be different than the passed value (delta)
  145. * in the case where a subpool minimum size must be maintained.
  146. */
  147. static long hugepage_subpool_put_pages(struct hugepage_subpool *spool,
  148. long delta)
  149. {
  150. long ret = delta;
  151. if (!spool)
  152. return delta;
  153. spin_lock(&spool->lock);
  154. if (spool->max_hpages != -1) /* maximum size accounting */
  155. spool->used_hpages -= delta;
  156. if (spool->min_hpages != -1) { /* minimum size accounting */
  157. if (spool->rsv_hpages + delta <= spool->min_hpages)
  158. ret = 0;
  159. else
  160. ret = spool->rsv_hpages + delta - spool->min_hpages;
  161. spool->rsv_hpages += delta;
  162. if (spool->rsv_hpages > spool->min_hpages)
  163. spool->rsv_hpages = spool->min_hpages;
  164. }
  165. /*
  166. * If hugetlbfs_put_super couldn't free spool due to an outstanding
  167. * quota reference, free it now.
  168. */
  169. unlock_or_release_subpool(spool);
  170. return ret;
  171. }
  172. static inline struct hugepage_subpool *subpool_inode(struct inode *inode)
  173. {
  174. return HUGETLBFS_SB(inode->i_sb)->spool;
  175. }
  176. static inline struct hugepage_subpool *subpool_vma(struct vm_area_struct *vma)
  177. {
  178. return subpool_inode(file_inode(vma->vm_file));
  179. }
  180. /*
  181. * Region tracking -- allows tracking of reservations and instantiated pages
  182. * across the pages in a mapping.
  183. *
  184. * The region data structures are embedded into a resv_map and protected
  185. * by a resv_map's lock. The set of regions within the resv_map represent
  186. * reservations for huge pages, or huge pages that have already been
  187. * instantiated within the map. The from and to elements are huge page
  188. * indicies into the associated mapping. from indicates the starting index
  189. * of the region. to represents the first index past the end of the region.
  190. *
  191. * For example, a file region structure with from == 0 and to == 4 represents
  192. * four huge pages in a mapping. It is important to note that the to element
  193. * represents the first element past the end of the region. This is used in
  194. * arithmetic as 4(to) - 0(from) = 4 huge pages in the region.
  195. *
  196. * Interval notation of the form [from, to) will be used to indicate that
  197. * the endpoint from is inclusive and to is exclusive.
  198. */
  199. struct file_region {
  200. struct list_head link;
  201. long from;
  202. long to;
  203. };
  204. /*
  205. * Add the huge page range represented by [f, t) to the reserve
  206. * map. In the normal case, existing regions will be expanded
  207. * to accommodate the specified range. Sufficient regions should
  208. * exist for expansion due to the previous call to region_chg
  209. * with the same range. However, it is possible that region_del
  210. * could have been called after region_chg and modifed the map
  211. * in such a way that no region exists to be expanded. In this
  212. * case, pull a region descriptor from the cache associated with
  213. * the map and use that for the new range.
  214. *
  215. * Return the number of new huge pages added to the map. This
  216. * number is greater than or equal to zero.
  217. */
  218. static long region_add(struct resv_map *resv, long f, long t)
  219. {
  220. struct list_head *head = &resv->regions;
  221. struct file_region *rg, *nrg, *trg;
  222. long add = 0;
  223. spin_lock(&resv->lock);
  224. /* Locate the region we are either in or before. */
  225. list_for_each_entry(rg, head, link)
  226. if (f <= rg->to)
  227. break;
  228. /*
  229. * If no region exists which can be expanded to include the
  230. * specified range, the list must have been modified by an
  231. * interleving call to region_del(). Pull a region descriptor
  232. * from the cache and use it for this range.
  233. */
  234. if (&rg->link == head || t < rg->from) {
  235. VM_BUG_ON(resv->region_cache_count <= 0);
  236. resv->region_cache_count--;
  237. nrg = list_first_entry(&resv->region_cache, struct file_region,
  238. link);
  239. list_del(&nrg->link);
  240. nrg->from = f;
  241. nrg->to = t;
  242. list_add(&nrg->link, rg->link.prev);
  243. add += t - f;
  244. goto out_locked;
  245. }
  246. /* Round our left edge to the current segment if it encloses us. */
  247. if (f > rg->from)
  248. f = rg->from;
  249. /* Check for and consume any regions we now overlap with. */
  250. nrg = rg;
  251. list_for_each_entry_safe(rg, trg, rg->link.prev, link) {
  252. if (&rg->link == head)
  253. break;
  254. if (rg->from > t)
  255. break;
  256. /* If this area reaches higher then extend our area to
  257. * include it completely. If this is not the first area
  258. * which we intend to reuse, free it. */
  259. if (rg->to > t)
  260. t = rg->to;
  261. if (rg != nrg) {
  262. /* Decrement return value by the deleted range.
  263. * Another range will span this area so that by
  264. * end of routine add will be >= zero
  265. */
  266. add -= (rg->to - rg->from);
  267. list_del(&rg->link);
  268. kfree(rg);
  269. }
  270. }
  271. add += (nrg->from - f); /* Added to beginning of region */
  272. nrg->from = f;
  273. add += t - nrg->to; /* Added to end of region */
  274. nrg->to = t;
  275. out_locked:
  276. resv->adds_in_progress--;
  277. spin_unlock(&resv->lock);
  278. VM_BUG_ON(add < 0);
  279. return add;
  280. }
  281. /*
  282. * Examine the existing reserve map and determine how many
  283. * huge pages in the specified range [f, t) are NOT currently
  284. * represented. This routine is called before a subsequent
  285. * call to region_add that will actually modify the reserve
  286. * map to add the specified range [f, t). region_chg does
  287. * not change the number of huge pages represented by the
  288. * map. However, if the existing regions in the map can not
  289. * be expanded to represent the new range, a new file_region
  290. * structure is added to the map as a placeholder. This is
  291. * so that the subsequent region_add call will have all the
  292. * regions it needs and will not fail.
  293. *
  294. * Upon entry, region_chg will also examine the cache of region descriptors
  295. * associated with the map. If there are not enough descriptors cached, one
  296. * will be allocated for the in progress add operation.
  297. *
  298. * Returns the number of huge pages that need to be added to the existing
  299. * reservation map for the range [f, t). This number is greater or equal to
  300. * zero. -ENOMEM is returned if a new file_region structure or cache entry
  301. * is needed and can not be allocated.
  302. */
  303. static long region_chg(struct resv_map *resv, long f, long t)
  304. {
  305. struct list_head *head = &resv->regions;
  306. struct file_region *rg, *nrg = NULL;
  307. long chg = 0;
  308. retry:
  309. spin_lock(&resv->lock);
  310. retry_locked:
  311. resv->adds_in_progress++;
  312. /*
  313. * Check for sufficient descriptors in the cache to accommodate
  314. * the number of in progress add operations.
  315. */
  316. if (resv->adds_in_progress > resv->region_cache_count) {
  317. struct file_region *trg;
  318. VM_BUG_ON(resv->adds_in_progress - resv->region_cache_count > 1);
  319. /* Must drop lock to allocate a new descriptor. */
  320. resv->adds_in_progress--;
  321. spin_unlock(&resv->lock);
  322. trg = kmalloc(sizeof(*trg), GFP_KERNEL);
  323. if (!trg) {
  324. kfree(nrg);
  325. return -ENOMEM;
  326. }
  327. spin_lock(&resv->lock);
  328. list_add(&trg->link, &resv->region_cache);
  329. resv->region_cache_count++;
  330. goto retry_locked;
  331. }
  332. /* Locate the region we are before or in. */
  333. list_for_each_entry(rg, head, link)
  334. if (f <= rg->to)
  335. break;
  336. /* If we are below the current region then a new region is required.
  337. * Subtle, allocate a new region at the position but make it zero
  338. * size such that we can guarantee to record the reservation. */
  339. if (&rg->link == head || t < rg->from) {
  340. if (!nrg) {
  341. resv->adds_in_progress--;
  342. spin_unlock(&resv->lock);
  343. nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
  344. if (!nrg)
  345. return -ENOMEM;
  346. nrg->from = f;
  347. nrg->to = f;
  348. INIT_LIST_HEAD(&nrg->link);
  349. goto retry;
  350. }
  351. list_add(&nrg->link, rg->link.prev);
  352. chg = t - f;
  353. goto out_nrg;
  354. }
  355. /* Round our left edge to the current segment if it encloses us. */
  356. if (f > rg->from)
  357. f = rg->from;
  358. chg = t - f;
  359. /* Check for and consume any regions we now overlap with. */
  360. list_for_each_entry(rg, rg->link.prev, link) {
  361. if (&rg->link == head)
  362. break;
  363. if (rg->from > t)
  364. goto out;
  365. /* We overlap with this area, if it extends further than
  366. * us then we must extend ourselves. Account for its
  367. * existing reservation. */
  368. if (rg->to > t) {
  369. chg += rg->to - t;
  370. t = rg->to;
  371. }
  372. chg -= rg->to - rg->from;
  373. }
  374. out:
  375. spin_unlock(&resv->lock);
  376. /* We already know we raced and no longer need the new region */
  377. kfree(nrg);
  378. return chg;
  379. out_nrg:
  380. spin_unlock(&resv->lock);
  381. return chg;
  382. }
  383. /*
  384. * Abort the in progress add operation. The adds_in_progress field
  385. * of the resv_map keeps track of the operations in progress between
  386. * calls to region_chg and region_add. Operations are sometimes
  387. * aborted after the call to region_chg. In such cases, region_abort
  388. * is called to decrement the adds_in_progress counter.
  389. *
  390. * NOTE: The range arguments [f, t) are not needed or used in this
  391. * routine. They are kept to make reading the calling code easier as
  392. * arguments will match the associated region_chg call.
  393. */
  394. static void region_abort(struct resv_map *resv, long f, long t)
  395. {
  396. spin_lock(&resv->lock);
  397. VM_BUG_ON(!resv->region_cache_count);
  398. resv->adds_in_progress--;
  399. spin_unlock(&resv->lock);
  400. }
  401. /*
  402. * Delete the specified range [f, t) from the reserve map. If the
  403. * t parameter is LONG_MAX, this indicates that ALL regions after f
  404. * should be deleted. Locate the regions which intersect [f, t)
  405. * and either trim, delete or split the existing regions.
  406. *
  407. * Returns the number of huge pages deleted from the reserve map.
  408. * In the normal case, the return value is zero or more. In the
  409. * case where a region must be split, a new region descriptor must
  410. * be allocated. If the allocation fails, -ENOMEM will be returned.
  411. * NOTE: If the parameter t == LONG_MAX, then we will never split
  412. * a region and possibly return -ENOMEM. Callers specifying
  413. * t == LONG_MAX do not need to check for -ENOMEM error.
  414. */
  415. static long region_del(struct resv_map *resv, long f, long t)
  416. {
  417. struct list_head *head = &resv->regions;
  418. struct file_region *rg, *trg;
  419. struct file_region *nrg = NULL;
  420. long del = 0;
  421. retry:
  422. spin_lock(&resv->lock);
  423. list_for_each_entry_safe(rg, trg, head, link) {
  424. /*
  425. * Skip regions before the range to be deleted. file_region
  426. * ranges are normally of the form [from, to). However, there
  427. * may be a "placeholder" entry in the map which is of the form
  428. * (from, to) with from == to. Check for placeholder entries
  429. * at the beginning of the range to be deleted.
  430. */
  431. if (rg->to <= f && (rg->to != rg->from || rg->to != f))
  432. continue;
  433. if (rg->from >= t)
  434. break;
  435. if (f > rg->from && t < rg->to) { /* Must split region */
  436. /*
  437. * Check for an entry in the cache before dropping
  438. * lock and attempting allocation.
  439. */
  440. if (!nrg &&
  441. resv->region_cache_count > resv->adds_in_progress) {
  442. nrg = list_first_entry(&resv->region_cache,
  443. struct file_region,
  444. link);
  445. list_del(&nrg->link);
  446. resv->region_cache_count--;
  447. }
  448. if (!nrg) {
  449. spin_unlock(&resv->lock);
  450. nrg = kmalloc(sizeof(*nrg), GFP_KERNEL);
  451. if (!nrg)
  452. return -ENOMEM;
  453. goto retry;
  454. }
  455. del += t - f;
  456. /* New entry for end of split region */
  457. nrg->from = t;
  458. nrg->to = rg->to;
  459. INIT_LIST_HEAD(&nrg->link);
  460. /* Original entry is trimmed */
  461. rg->to = f;
  462. list_add(&nrg->link, &rg->link);
  463. nrg = NULL;
  464. break;
  465. }
  466. if (f <= rg->from && t >= rg->to) { /* Remove entire region */
  467. del += rg->to - rg->from;
  468. list_del(&rg->link);
  469. kfree(rg);
  470. continue;
  471. }
  472. if (f <= rg->from) { /* Trim beginning of region */
  473. del += t - rg->from;
  474. rg->from = t;
  475. } else { /* Trim end of region */
  476. del += rg->to - f;
  477. rg->to = f;
  478. }
  479. }
  480. spin_unlock(&resv->lock);
  481. kfree(nrg);
  482. return del;
  483. }
  484. /*
  485. * A rare out of memory error was encountered which prevented removal of
  486. * the reserve map region for a page. The huge page itself was free'ed
  487. * and removed from the page cache. This routine will adjust the subpool
  488. * usage count, and the global reserve count if needed. By incrementing
  489. * these counts, the reserve map entry which could not be deleted will
  490. * appear as a "reserved" entry instead of simply dangling with incorrect
  491. * counts.
  492. */
  493. void hugetlb_fix_reserve_counts(struct inode *inode, bool restore_reserve)
  494. {
  495. struct hugepage_subpool *spool = subpool_inode(inode);
  496. long rsv_adjust;
  497. rsv_adjust = hugepage_subpool_get_pages(spool, 1);
  498. if (restore_reserve && rsv_adjust) {
  499. struct hstate *h = hstate_inode(inode);
  500. hugetlb_acct_memory(h, 1);
  501. }
  502. }
  503. /*
  504. * Count and return the number of huge pages in the reserve map
  505. * that intersect with the range [f, t).
  506. */
  507. static long region_count(struct resv_map *resv, long f, long t)
  508. {
  509. struct list_head *head = &resv->regions;
  510. struct file_region *rg;
  511. long chg = 0;
  512. spin_lock(&resv->lock);
  513. /* Locate each segment we overlap with, and count that overlap. */
  514. list_for_each_entry(rg, head, link) {
  515. long seg_from;
  516. long seg_to;
  517. if (rg->to <= f)
  518. continue;
  519. if (rg->from >= t)
  520. break;
  521. seg_from = max(rg->from, f);
  522. seg_to = min(rg->to, t);
  523. chg += seg_to - seg_from;
  524. }
  525. spin_unlock(&resv->lock);
  526. return chg;
  527. }
  528. /*
  529. * Convert the address within this vma to the page offset within
  530. * the mapping, in pagecache page units; huge pages here.
  531. */
  532. static pgoff_t vma_hugecache_offset(struct hstate *h,
  533. struct vm_area_struct *vma, unsigned long address)
  534. {
  535. return ((address - vma->vm_start) >> huge_page_shift(h)) +
  536. (vma->vm_pgoff >> huge_page_order(h));
  537. }
  538. pgoff_t linear_hugepage_index(struct vm_area_struct *vma,
  539. unsigned long address)
  540. {
  541. return vma_hugecache_offset(hstate_vma(vma), vma, address);
  542. }
  543. /*
  544. * Return the size of the pages allocated when backing a VMA. In the majority
  545. * cases this will be same size as used by the page table entries.
  546. */
  547. unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
  548. {
  549. struct hstate *hstate;
  550. if (!is_vm_hugetlb_page(vma))
  551. return PAGE_SIZE;
  552. hstate = hstate_vma(vma);
  553. return 1UL << huge_page_shift(hstate);
  554. }
  555. EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
  556. /*
  557. * Return the page size being used by the MMU to back a VMA. In the majority
  558. * of cases, the page size used by the kernel matches the MMU size. On
  559. * architectures where it differs, an architecture-specific version of this
  560. * function is required.
  561. */
  562. #ifndef vma_mmu_pagesize
  563. unsigned long vma_mmu_pagesize(struct vm_area_struct *vma)
  564. {
  565. return vma_kernel_pagesize(vma);
  566. }
  567. #endif
  568. /*
  569. * Flags for MAP_PRIVATE reservations. These are stored in the bottom
  570. * bits of the reservation map pointer, which are always clear due to
  571. * alignment.
  572. */
  573. #define HPAGE_RESV_OWNER (1UL << 0)
  574. #define HPAGE_RESV_UNMAPPED (1UL << 1)
  575. #define HPAGE_RESV_MASK (HPAGE_RESV_OWNER | HPAGE_RESV_UNMAPPED)
  576. /*
  577. * These helpers are used to track how many pages are reserved for
  578. * faults in a MAP_PRIVATE mapping. Only the process that called mmap()
  579. * is guaranteed to have their future faults succeed.
  580. *
  581. * With the exception of reset_vma_resv_huge_pages() which is called at fork(),
  582. * the reserve counters are updated with the hugetlb_lock held. It is safe
  583. * to reset the VMA at fork() time as it is not in use yet and there is no
  584. * chance of the global counters getting corrupted as a result of the values.
  585. *
  586. * The private mapping reservation is represented in a subtly different
  587. * manner to a shared mapping. A shared mapping has a region map associated
  588. * with the underlying file, this region map represents the backing file
  589. * pages which have ever had a reservation assigned which this persists even
  590. * after the page is instantiated. A private mapping has a region map
  591. * associated with the original mmap which is attached to all VMAs which
  592. * reference it, this region map represents those offsets which have consumed
  593. * reservation ie. where pages have been instantiated.
  594. */
  595. static unsigned long get_vma_private_data(struct vm_area_struct *vma)
  596. {
  597. return (unsigned long)vma->vm_private_data;
  598. }
  599. static void set_vma_private_data(struct vm_area_struct *vma,
  600. unsigned long value)
  601. {
  602. vma->vm_private_data = (void *)value;
  603. }
  604. struct resv_map *resv_map_alloc(void)
  605. {
  606. struct resv_map *resv_map = kmalloc(sizeof(*resv_map), GFP_KERNEL);
  607. struct file_region *rg = kmalloc(sizeof(*rg), GFP_KERNEL);
  608. if (!resv_map || !rg) {
  609. kfree(resv_map);
  610. kfree(rg);
  611. return NULL;
  612. }
  613. kref_init(&resv_map->refs);
  614. spin_lock_init(&resv_map->lock);
  615. INIT_LIST_HEAD(&resv_map->regions);
  616. resv_map->adds_in_progress = 0;
  617. INIT_LIST_HEAD(&resv_map->region_cache);
  618. list_add(&rg->link, &resv_map->region_cache);
  619. resv_map->region_cache_count = 1;
  620. return resv_map;
  621. }
  622. void resv_map_release(struct kref *ref)
  623. {
  624. struct resv_map *resv_map = container_of(ref, struct resv_map, refs);
  625. struct list_head *head = &resv_map->region_cache;
  626. struct file_region *rg, *trg;
  627. /* Clear out any active regions before we release the map. */
  628. region_del(resv_map, 0, LONG_MAX);
  629. /* ... and any entries left in the cache */
  630. list_for_each_entry_safe(rg, trg, head, link) {
  631. list_del(&rg->link);
  632. kfree(rg);
  633. }
  634. VM_BUG_ON(resv_map->adds_in_progress);
  635. kfree(resv_map);
  636. }
  637. static inline struct resv_map *inode_resv_map(struct inode *inode)
  638. {
  639. return inode->i_mapping->private_data;
  640. }
  641. static struct resv_map *vma_resv_map(struct vm_area_struct *vma)
  642. {
  643. VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
  644. if (vma->vm_flags & VM_MAYSHARE) {
  645. struct address_space *mapping = vma->vm_file->f_mapping;
  646. struct inode *inode = mapping->host;
  647. return inode_resv_map(inode);
  648. } else {
  649. return (struct resv_map *)(get_vma_private_data(vma) &
  650. ~HPAGE_RESV_MASK);
  651. }
  652. }
  653. static void set_vma_resv_map(struct vm_area_struct *vma, struct resv_map *map)
  654. {
  655. VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
  656. VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
  657. set_vma_private_data(vma, (get_vma_private_data(vma) &
  658. HPAGE_RESV_MASK) | (unsigned long)map);
  659. }
  660. static void set_vma_resv_flags(struct vm_area_struct *vma, unsigned long flags)
  661. {
  662. VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
  663. VM_BUG_ON_VMA(vma->vm_flags & VM_MAYSHARE, vma);
  664. set_vma_private_data(vma, get_vma_private_data(vma) | flags);
  665. }
  666. static int is_vma_resv_set(struct vm_area_struct *vma, unsigned long flag)
  667. {
  668. VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
  669. return (get_vma_private_data(vma) & flag) != 0;
  670. }
  671. /* Reset counters to 0 and clear all HPAGE_RESV_* flags */
  672. void reset_vma_resv_huge_pages(struct vm_area_struct *vma)
  673. {
  674. VM_BUG_ON_VMA(!is_vm_hugetlb_page(vma), vma);
  675. if (!(vma->vm_flags & VM_MAYSHARE))
  676. vma->vm_private_data = (void *)0;
  677. }
  678. /* Returns true if the VMA has associated reserve pages */
  679. static bool vma_has_reserves(struct vm_area_struct *vma, long chg)
  680. {
  681. if (vma->vm_flags & VM_NORESERVE) {
  682. /*
  683. * This address is already reserved by other process(chg == 0),
  684. * so, we should decrement reserved count. Without decrementing,
  685. * reserve count remains after releasing inode, because this
  686. * allocated page will go into page cache and is regarded as
  687. * coming from reserved pool in releasing step. Currently, we
  688. * don't have any other solution to deal with this situation
  689. * properly, so add work-around here.
  690. */
  691. if (vma->vm_flags & VM_MAYSHARE && chg == 0)
  692. return true;
  693. else
  694. return false;
  695. }
  696. /* Shared mappings always use reserves */
  697. if (vma->vm_flags & VM_MAYSHARE) {
  698. /*
  699. * We know VM_NORESERVE is not set. Therefore, there SHOULD
  700. * be a region map for all pages. The only situation where
  701. * there is no region map is if a hole was punched via
  702. * fallocate. In this case, there really are no reverves to
  703. * use. This situation is indicated if chg != 0.
  704. */
  705. if (chg)
  706. return false;
  707. else
  708. return true;
  709. }
  710. /*
  711. * Only the process that called mmap() has reserves for
  712. * private mappings.
  713. */
  714. if (is_vma_resv_set(vma, HPAGE_RESV_OWNER))
  715. return true;
  716. return false;
  717. }
  718. static void enqueue_huge_page(struct hstate *h, struct page *page)
  719. {
  720. int nid = page_to_nid(page);
  721. list_move(&page->lru, &h->hugepage_freelists[nid]);
  722. h->free_huge_pages++;
  723. h->free_huge_pages_node[nid]++;
  724. }
  725. static struct page *dequeue_huge_page_node(struct hstate *h, int nid)
  726. {
  727. struct page *page;
  728. list_for_each_entry(page, &h->hugepage_freelists[nid], lru)
  729. if (!is_migrate_isolate_page(page))
  730. break;
  731. /*
  732. * if 'non-isolated free hugepage' not found on the list,
  733. * the allocation fails.
  734. */
  735. if (&h->hugepage_freelists[nid] == &page->lru)
  736. return NULL;
  737. list_move(&page->lru, &h->hugepage_activelist);
  738. set_page_refcounted(page);
  739. h->free_huge_pages--;
  740. h->free_huge_pages_node[nid]--;
  741. return page;
  742. }
  743. /* Movability of hugepages depends on migration support. */
  744. static inline gfp_t htlb_alloc_mask(struct hstate *h)
  745. {
  746. if (hugepages_treat_as_movable || hugepage_migration_supported(h))
  747. return GFP_HIGHUSER_MOVABLE;
  748. else
  749. return GFP_HIGHUSER;
  750. }
  751. static struct page *dequeue_huge_page_vma(struct hstate *h,
  752. struct vm_area_struct *vma,
  753. unsigned long address, int avoid_reserve,
  754. long chg)
  755. {
  756. struct page *page = NULL;
  757. struct mempolicy *mpol;
  758. nodemask_t *nodemask;
  759. struct zonelist *zonelist;
  760. struct zone *zone;
  761. struct zoneref *z;
  762. unsigned int cpuset_mems_cookie;
  763. /*
  764. * A child process with MAP_PRIVATE mappings created by their parent
  765. * have no page reserves. This check ensures that reservations are
  766. * not "stolen". The child may still get SIGKILLed
  767. */
  768. if (!vma_has_reserves(vma, chg) &&
  769. h->free_huge_pages - h->resv_huge_pages == 0)
  770. goto err;
  771. /* If reserves cannot be used, ensure enough pages are in the pool */
  772. if (avoid_reserve && h->free_huge_pages - h->resv_huge_pages == 0)
  773. goto err;
  774. retry_cpuset:
  775. cpuset_mems_cookie = read_mems_allowed_begin();
  776. zonelist = huge_zonelist(vma, address,
  777. htlb_alloc_mask(h), &mpol, &nodemask);
  778. for_each_zone_zonelist_nodemask(zone, z, zonelist,
  779. MAX_NR_ZONES - 1, nodemask) {
  780. if (cpuset_zone_allowed(zone, htlb_alloc_mask(h))) {
  781. page = dequeue_huge_page_node(h, zone_to_nid(zone));
  782. if (page) {
  783. if (avoid_reserve)
  784. break;
  785. if (!vma_has_reserves(vma, chg))
  786. break;
  787. SetPagePrivate(page);
  788. h->resv_huge_pages--;
  789. break;
  790. }
  791. }
  792. }
  793. mpol_cond_put(mpol);
  794. if (unlikely(!page && read_mems_allowed_retry(cpuset_mems_cookie)))
  795. goto retry_cpuset;
  796. return page;
  797. err:
  798. return NULL;
  799. }
  800. /*
  801. * common helper functions for hstate_next_node_to_{alloc|free}.
  802. * We may have allocated or freed a huge page based on a different
  803. * nodes_allowed previously, so h->next_node_to_{alloc|free} might
  804. * be outside of *nodes_allowed. Ensure that we use an allowed
  805. * node for alloc or free.
  806. */
  807. static int next_node_allowed(int nid, nodemask_t *nodes_allowed)
  808. {
  809. nid = next_node(nid, *nodes_allowed);
  810. if (nid == MAX_NUMNODES)
  811. nid = first_node(*nodes_allowed);
  812. VM_BUG_ON(nid >= MAX_NUMNODES);
  813. return nid;
  814. }
  815. static int get_valid_node_allowed(int nid, nodemask_t *nodes_allowed)
  816. {
  817. if (!node_isset(nid, *nodes_allowed))
  818. nid = next_node_allowed(nid, nodes_allowed);
  819. return nid;
  820. }
  821. /*
  822. * returns the previously saved node ["this node"] from which to
  823. * allocate a persistent huge page for the pool and advance the
  824. * next node from which to allocate, handling wrap at end of node
  825. * mask.
  826. */
  827. static int hstate_next_node_to_alloc(struct hstate *h,
  828. nodemask_t *nodes_allowed)
  829. {
  830. int nid;
  831. VM_BUG_ON(!nodes_allowed);
  832. nid = get_valid_node_allowed(h->next_nid_to_alloc, nodes_allowed);
  833. h->next_nid_to_alloc = next_node_allowed(nid, nodes_allowed);
  834. return nid;
  835. }
  836. /*
  837. * helper for free_pool_huge_page() - return the previously saved
  838. * node ["this node"] from which to free a huge page. Advance the
  839. * next node id whether or not we find a free huge page to free so
  840. * that the next attempt to free addresses the next node.
  841. */
  842. static int hstate_next_node_to_free(struct hstate *h, nodemask_t *nodes_allowed)
  843. {
  844. int nid;
  845. VM_BUG_ON(!nodes_allowed);
  846. nid = get_valid_node_allowed(h->next_nid_to_free, nodes_allowed);
  847. h->next_nid_to_free = next_node_allowed(nid, nodes_allowed);
  848. return nid;
  849. }
  850. #define for_each_node_mask_to_alloc(hs, nr_nodes, node, mask) \
  851. for (nr_nodes = nodes_weight(*mask); \
  852. nr_nodes > 0 && \
  853. ((node = hstate_next_node_to_alloc(hs, mask)) || 1); \
  854. nr_nodes--)
  855. #define for_each_node_mask_to_free(hs, nr_nodes, node, mask) \
  856. for (nr_nodes = nodes_weight(*mask); \
  857. nr_nodes > 0 && \
  858. ((node = hstate_next_node_to_free(hs, mask)) || 1); \
  859. nr_nodes--)
  860. #if defined(CONFIG_X86_64) && ((defined(CONFIG_MEMORY_ISOLATION) && defined(CONFIG_COMPACTION)) || defined(CONFIG_CMA))
  861. static void destroy_compound_gigantic_page(struct page *page,
  862. unsigned int order)
  863. {
  864. int i;
  865. int nr_pages = 1 << order;
  866. struct page *p = page + 1;
  867. for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
  868. clear_compound_head(p);
  869. set_page_refcounted(p);
  870. }
  871. set_compound_order(page, 0);
  872. __ClearPageHead(page);
  873. }
  874. static void free_gigantic_page(struct page *page, unsigned int order)
  875. {
  876. free_contig_range(page_to_pfn(page), 1 << order);
  877. }
  878. static int __alloc_gigantic_page(unsigned long start_pfn,
  879. unsigned long nr_pages)
  880. {
  881. unsigned long end_pfn = start_pfn + nr_pages;
  882. return alloc_contig_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
  883. }
  884. static bool pfn_range_valid_gigantic(unsigned long start_pfn,
  885. unsigned long nr_pages)
  886. {
  887. unsigned long i, end_pfn = start_pfn + nr_pages;
  888. struct page *page;
  889. for (i = start_pfn; i < end_pfn; i++) {
  890. if (!pfn_valid(i))
  891. return false;
  892. page = pfn_to_page(i);
  893. if (PageReserved(page))
  894. return false;
  895. if (page_count(page) > 0)
  896. return false;
  897. if (PageHuge(page))
  898. return false;
  899. }
  900. return true;
  901. }
  902. static bool zone_spans_last_pfn(const struct zone *zone,
  903. unsigned long start_pfn, unsigned long nr_pages)
  904. {
  905. unsigned long last_pfn = start_pfn + nr_pages - 1;
  906. return zone_spans_pfn(zone, last_pfn);
  907. }
  908. static struct page *alloc_gigantic_page(int nid, unsigned int order)
  909. {
  910. unsigned long nr_pages = 1 << order;
  911. unsigned long ret, pfn, flags;
  912. struct zone *z;
  913. z = NODE_DATA(nid)->node_zones;
  914. for (; z - NODE_DATA(nid)->node_zones < MAX_NR_ZONES; z++) {
  915. spin_lock_irqsave(&z->lock, flags);
  916. pfn = ALIGN(z->zone_start_pfn, nr_pages);
  917. while (zone_spans_last_pfn(z, pfn, nr_pages)) {
  918. if (pfn_range_valid_gigantic(pfn, nr_pages)) {
  919. /*
  920. * We release the zone lock here because
  921. * alloc_contig_range() will also lock the zone
  922. * at some point. If there's an allocation
  923. * spinning on this lock, it may win the race
  924. * and cause alloc_contig_range() to fail...
  925. */
  926. spin_unlock_irqrestore(&z->lock, flags);
  927. ret = __alloc_gigantic_page(pfn, nr_pages);
  928. if (!ret)
  929. return pfn_to_page(pfn);
  930. spin_lock_irqsave(&z->lock, flags);
  931. }
  932. pfn += nr_pages;
  933. }
  934. spin_unlock_irqrestore(&z->lock, flags);
  935. }
  936. return NULL;
  937. }
  938. static void prep_new_huge_page(struct hstate *h, struct page *page, int nid);
  939. static void prep_compound_gigantic_page(struct page *page, unsigned int order);
  940. static struct page *alloc_fresh_gigantic_page_node(struct hstate *h, int nid)
  941. {
  942. struct page *page;
  943. page = alloc_gigantic_page(nid, huge_page_order(h));
  944. if (page) {
  945. prep_compound_gigantic_page(page, huge_page_order(h));
  946. prep_new_huge_page(h, page, nid);
  947. }
  948. return page;
  949. }
  950. static int alloc_fresh_gigantic_page(struct hstate *h,
  951. nodemask_t *nodes_allowed)
  952. {
  953. struct page *page = NULL;
  954. int nr_nodes, node;
  955. for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
  956. page = alloc_fresh_gigantic_page_node(h, node);
  957. if (page)
  958. return 1;
  959. }
  960. return 0;
  961. }
  962. static inline bool gigantic_page_supported(void) { return true; }
  963. #else
  964. static inline bool gigantic_page_supported(void) { return false; }
  965. static inline void free_gigantic_page(struct page *page, unsigned int order) { }
  966. static inline void destroy_compound_gigantic_page(struct page *page,
  967. unsigned int order) { }
  968. static inline int alloc_fresh_gigantic_page(struct hstate *h,
  969. nodemask_t *nodes_allowed) { return 0; }
  970. #endif
  971. static void update_and_free_page(struct hstate *h, struct page *page)
  972. {
  973. int i;
  974. if (hstate_is_gigantic(h) && !gigantic_page_supported())
  975. return;
  976. h->nr_huge_pages--;
  977. h->nr_huge_pages_node[page_to_nid(page)]--;
  978. for (i = 0; i < pages_per_huge_page(h); i++) {
  979. page[i].flags &= ~(1 << PG_locked | 1 << PG_error |
  980. 1 << PG_referenced | 1 << PG_dirty |
  981. 1 << PG_active | 1 << PG_private |
  982. 1 << PG_writeback);
  983. }
  984. VM_BUG_ON_PAGE(hugetlb_cgroup_from_page(page), page);
  985. set_compound_page_dtor(page, NULL_COMPOUND_DTOR);
  986. set_page_refcounted(page);
  987. if (hstate_is_gigantic(h)) {
  988. destroy_compound_gigantic_page(page, huge_page_order(h));
  989. free_gigantic_page(page, huge_page_order(h));
  990. } else {
  991. __free_pages(page, huge_page_order(h));
  992. }
  993. }
  994. struct hstate *size_to_hstate(unsigned long size)
  995. {
  996. struct hstate *h;
  997. for_each_hstate(h) {
  998. if (huge_page_size(h) == size)
  999. return h;
  1000. }
  1001. return NULL;
  1002. }
  1003. /*
  1004. * Test to determine whether the hugepage is "active/in-use" (i.e. being linked
  1005. * to hstate->hugepage_activelist.)
  1006. *
  1007. * This function can be called for tail pages, but never returns true for them.
  1008. */
  1009. bool page_huge_active(struct page *page)
  1010. {
  1011. VM_BUG_ON_PAGE(!PageHuge(page), page);
  1012. return PageHead(page) && PagePrivate(&page[1]);
  1013. }
  1014. /* never called for tail page */
  1015. static void set_page_huge_active(struct page *page)
  1016. {
  1017. VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
  1018. SetPagePrivate(&page[1]);
  1019. }
  1020. static void clear_page_huge_active(struct page *page)
  1021. {
  1022. VM_BUG_ON_PAGE(!PageHeadHuge(page), page);
  1023. ClearPagePrivate(&page[1]);
  1024. }
  1025. void free_huge_page(struct page *page)
  1026. {
  1027. /*
  1028. * Can't pass hstate in here because it is called from the
  1029. * compound page destructor.
  1030. */
  1031. struct hstate *h = page_hstate(page);
  1032. int nid = page_to_nid(page);
  1033. struct hugepage_subpool *spool =
  1034. (struct hugepage_subpool *)page_private(page);
  1035. bool restore_reserve;
  1036. set_page_private(page, 0);
  1037. page->mapping = NULL;
  1038. VM_BUG_ON_PAGE(page_count(page), page);
  1039. VM_BUG_ON_PAGE(page_mapcount(page), page);
  1040. restore_reserve = PagePrivate(page);
  1041. ClearPagePrivate(page);
  1042. /*
  1043. * A return code of zero implies that the subpool will be under its
  1044. * minimum size if the reservation is not restored after page is free.
  1045. * Therefore, force restore_reserve operation.
  1046. */
  1047. if (hugepage_subpool_put_pages(spool, 1) == 0)
  1048. restore_reserve = true;
  1049. spin_lock(&hugetlb_lock);
  1050. clear_page_huge_active(page);
  1051. hugetlb_cgroup_uncharge_page(hstate_index(h),
  1052. pages_per_huge_page(h), page);
  1053. if (restore_reserve)
  1054. h->resv_huge_pages++;
  1055. if (h->surplus_huge_pages_node[nid]) {
  1056. /* remove the page from active list */
  1057. list_del(&page->lru);
  1058. update_and_free_page(h, page);
  1059. h->surplus_huge_pages--;
  1060. h->surplus_huge_pages_node[nid]--;
  1061. } else {
  1062. arch_clear_hugepage_flags(page);
  1063. enqueue_huge_page(h, page);
  1064. }
  1065. spin_unlock(&hugetlb_lock);
  1066. }
  1067. static void prep_new_huge_page(struct hstate *h, struct page *page, int nid)
  1068. {
  1069. INIT_LIST_HEAD(&page->lru);
  1070. set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
  1071. spin_lock(&hugetlb_lock);
  1072. set_hugetlb_cgroup(page, NULL);
  1073. h->nr_huge_pages++;
  1074. h->nr_huge_pages_node[nid]++;
  1075. spin_unlock(&hugetlb_lock);
  1076. put_page(page); /* free it into the hugepage allocator */
  1077. }
  1078. static void prep_compound_gigantic_page(struct page *page, unsigned int order)
  1079. {
  1080. int i;
  1081. int nr_pages = 1 << order;
  1082. struct page *p = page + 1;
  1083. /* we rely on prep_new_huge_page to set the destructor */
  1084. set_compound_order(page, order);
  1085. __ClearPageReserved(page);
  1086. __SetPageHead(page);
  1087. for (i = 1; i < nr_pages; i++, p = mem_map_next(p, page, i)) {
  1088. /*
  1089. * For gigantic hugepages allocated through bootmem at
  1090. * boot, it's safer to be consistent with the not-gigantic
  1091. * hugepages and clear the PG_reserved bit from all tail pages
  1092. * too. Otherwse drivers using get_user_pages() to access tail
  1093. * pages may get the reference counting wrong if they see
  1094. * PG_reserved set on a tail page (despite the head page not
  1095. * having PG_reserved set). Enforcing this consistency between
  1096. * head and tail pages allows drivers to optimize away a check
  1097. * on the head page when they need know if put_page() is needed
  1098. * after get_user_pages().
  1099. */
  1100. __ClearPageReserved(p);
  1101. set_page_count(p, 0);
  1102. set_compound_head(p, page);
  1103. }
  1104. atomic_set(compound_mapcount_ptr(page), -1);
  1105. }
  1106. /*
  1107. * PageHuge() only returns true for hugetlbfs pages, but not for normal or
  1108. * transparent huge pages. See the PageTransHuge() documentation for more
  1109. * details.
  1110. */
  1111. int PageHuge(struct page *page)
  1112. {
  1113. if (!PageCompound(page))
  1114. return 0;
  1115. page = compound_head(page);
  1116. return page[1].compound_dtor == HUGETLB_PAGE_DTOR;
  1117. }
  1118. EXPORT_SYMBOL_GPL(PageHuge);
  1119. /*
  1120. * PageHeadHuge() only returns true for hugetlbfs head page, but not for
  1121. * normal or transparent huge pages.
  1122. */
  1123. int PageHeadHuge(struct page *page_head)
  1124. {
  1125. if (!PageHead(page_head))
  1126. return 0;
  1127. return get_compound_page_dtor(page_head) == free_huge_page;
  1128. }
  1129. pgoff_t __basepage_index(struct page *page)
  1130. {
  1131. struct page *page_head = compound_head(page);
  1132. pgoff_t index = page_index(page_head);
  1133. unsigned long compound_idx;
  1134. if (!PageHuge(page_head))
  1135. return page_index(page);
  1136. if (compound_order(page_head) >= MAX_ORDER)
  1137. compound_idx = page_to_pfn(page) - page_to_pfn(page_head);
  1138. else
  1139. compound_idx = page - page_head;
  1140. return (index << compound_order(page_head)) + compound_idx;
  1141. }
  1142. static struct page *alloc_fresh_huge_page_node(struct hstate *h, int nid)
  1143. {
  1144. struct page *page;
  1145. page = __alloc_pages_node(nid,
  1146. htlb_alloc_mask(h)|__GFP_COMP|__GFP_THISNODE|
  1147. __GFP_REPEAT|__GFP_NOWARN,
  1148. huge_page_order(h));
  1149. if (page) {
  1150. prep_new_huge_page(h, page, nid);
  1151. }
  1152. return page;
  1153. }
  1154. static int alloc_fresh_huge_page(struct hstate *h, nodemask_t *nodes_allowed)
  1155. {
  1156. struct page *page;
  1157. int nr_nodes, node;
  1158. int ret = 0;
  1159. for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
  1160. page = alloc_fresh_huge_page_node(h, node);
  1161. if (page) {
  1162. ret = 1;
  1163. break;
  1164. }
  1165. }
  1166. if (ret)
  1167. count_vm_event(HTLB_BUDDY_PGALLOC);
  1168. else
  1169. count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
  1170. return ret;
  1171. }
  1172. /*
  1173. * Free huge page from pool from next node to free.
  1174. * Attempt to keep persistent huge pages more or less
  1175. * balanced over allowed nodes.
  1176. * Called with hugetlb_lock locked.
  1177. */
  1178. static int free_pool_huge_page(struct hstate *h, nodemask_t *nodes_allowed,
  1179. bool acct_surplus)
  1180. {
  1181. int nr_nodes, node;
  1182. int ret = 0;
  1183. for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
  1184. /*
  1185. * If we're returning unused surplus pages, only examine
  1186. * nodes with surplus pages.
  1187. */
  1188. if ((!acct_surplus || h->surplus_huge_pages_node[node]) &&
  1189. !list_empty(&h->hugepage_freelists[node])) {
  1190. struct page *page =
  1191. list_entry(h->hugepage_freelists[node].next,
  1192. struct page, lru);
  1193. list_del(&page->lru);
  1194. h->free_huge_pages--;
  1195. h->free_huge_pages_node[node]--;
  1196. if (acct_surplus) {
  1197. h->surplus_huge_pages--;
  1198. h->surplus_huge_pages_node[node]--;
  1199. }
  1200. update_and_free_page(h, page);
  1201. ret = 1;
  1202. break;
  1203. }
  1204. }
  1205. return ret;
  1206. }
  1207. /*
  1208. * Dissolve a given free hugepage into free buddy pages. This function does
  1209. * nothing for in-use (including surplus) hugepages.
  1210. */
  1211. static void dissolve_free_huge_page(struct page *page)
  1212. {
  1213. spin_lock(&hugetlb_lock);
  1214. if (PageHuge(page) && !page_count(page)) {
  1215. struct hstate *h = page_hstate(page);
  1216. int nid = page_to_nid(page);
  1217. list_del(&page->lru);
  1218. h->free_huge_pages--;
  1219. h->free_huge_pages_node[nid]--;
  1220. update_and_free_page(h, page);
  1221. }
  1222. spin_unlock(&hugetlb_lock);
  1223. }
  1224. /*
  1225. * Dissolve free hugepages in a given pfn range. Used by memory hotplug to
  1226. * make specified memory blocks removable from the system.
  1227. * Note that start_pfn should aligned with (minimum) hugepage size.
  1228. */
  1229. void dissolve_free_huge_pages(unsigned long start_pfn, unsigned long end_pfn)
  1230. {
  1231. unsigned long pfn;
  1232. if (!hugepages_supported())
  1233. return;
  1234. VM_BUG_ON(!IS_ALIGNED(start_pfn, 1 << minimum_order));
  1235. for (pfn = start_pfn; pfn < end_pfn; pfn += 1 << minimum_order)
  1236. dissolve_free_huge_page(pfn_to_page(pfn));
  1237. }
  1238. /*
  1239. * There are 3 ways this can get called:
  1240. * 1. With vma+addr: we use the VMA's memory policy
  1241. * 2. With !vma, but nid=NUMA_NO_NODE: We try to allocate a huge
  1242. * page from any node, and let the buddy allocator itself figure
  1243. * it out.
  1244. * 3. With !vma, but nid!=NUMA_NO_NODE. We allocate a huge page
  1245. * strictly from 'nid'
  1246. */
  1247. static struct page *__hugetlb_alloc_buddy_huge_page(struct hstate *h,
  1248. struct vm_area_struct *vma, unsigned long addr, int nid)
  1249. {
  1250. int order = huge_page_order(h);
  1251. gfp_t gfp = htlb_alloc_mask(h)|__GFP_COMP|__GFP_REPEAT|__GFP_NOWARN;
  1252. unsigned int cpuset_mems_cookie;
  1253. /*
  1254. * We need a VMA to get a memory policy. If we do not
  1255. * have one, we use the 'nid' argument.
  1256. *
  1257. * The mempolicy stuff below has some non-inlined bits
  1258. * and calls ->vm_ops. That makes it hard to optimize at
  1259. * compile-time, even when NUMA is off and it does
  1260. * nothing. This helps the compiler optimize it out.
  1261. */
  1262. if (!IS_ENABLED(CONFIG_NUMA) || !vma) {
  1263. /*
  1264. * If a specific node is requested, make sure to
  1265. * get memory from there, but only when a node
  1266. * is explicitly specified.
  1267. */
  1268. if (nid != NUMA_NO_NODE)
  1269. gfp |= __GFP_THISNODE;
  1270. /*
  1271. * Make sure to call something that can handle
  1272. * nid=NUMA_NO_NODE
  1273. */
  1274. return alloc_pages_node(nid, gfp, order);
  1275. }
  1276. /*
  1277. * OK, so we have a VMA. Fetch the mempolicy and try to
  1278. * allocate a huge page with it. We will only reach this
  1279. * when CONFIG_NUMA=y.
  1280. */
  1281. do {
  1282. struct page *page;
  1283. struct mempolicy *mpol;
  1284. struct zonelist *zl;
  1285. nodemask_t *nodemask;
  1286. cpuset_mems_cookie = read_mems_allowed_begin();
  1287. zl = huge_zonelist(vma, addr, gfp, &mpol, &nodemask);
  1288. mpol_cond_put(mpol);
  1289. page = __alloc_pages_nodemask(gfp, order, zl, nodemask);
  1290. if (page)
  1291. return page;
  1292. } while (read_mems_allowed_retry(cpuset_mems_cookie));
  1293. return NULL;
  1294. }
  1295. /*
  1296. * There are two ways to allocate a huge page:
  1297. * 1. When you have a VMA and an address (like a fault)
  1298. * 2. When you have no VMA (like when setting /proc/.../nr_hugepages)
  1299. *
  1300. * 'vma' and 'addr' are only for (1). 'nid' is always NUMA_NO_NODE in
  1301. * this case which signifies that the allocation should be done with
  1302. * respect for the VMA's memory policy.
  1303. *
  1304. * For (2), we ignore 'vma' and 'addr' and use 'nid' exclusively. This
  1305. * implies that memory policies will not be taken in to account.
  1306. */
  1307. static struct page *__alloc_buddy_huge_page(struct hstate *h,
  1308. struct vm_area_struct *vma, unsigned long addr, int nid)
  1309. {
  1310. struct page *page;
  1311. unsigned int r_nid;
  1312. if (hstate_is_gigantic(h))
  1313. return NULL;
  1314. /*
  1315. * Make sure that anyone specifying 'nid' is not also specifying a VMA.
  1316. * This makes sure the caller is picking _one_ of the modes with which
  1317. * we can call this function, not both.
  1318. */
  1319. if (vma || (addr != -1)) {
  1320. VM_WARN_ON_ONCE(addr == -1);
  1321. VM_WARN_ON_ONCE(nid != NUMA_NO_NODE);
  1322. }
  1323. /*
  1324. * Assume we will successfully allocate the surplus page to
  1325. * prevent racing processes from causing the surplus to exceed
  1326. * overcommit
  1327. *
  1328. * This however introduces a different race, where a process B
  1329. * tries to grow the static hugepage pool while alloc_pages() is
  1330. * called by process A. B will only examine the per-node
  1331. * counters in determining if surplus huge pages can be
  1332. * converted to normal huge pages in adjust_pool_surplus(). A
  1333. * won't be able to increment the per-node counter, until the
  1334. * lock is dropped by B, but B doesn't drop hugetlb_lock until
  1335. * no more huge pages can be converted from surplus to normal
  1336. * state (and doesn't try to convert again). Thus, we have a
  1337. * case where a surplus huge page exists, the pool is grown, and
  1338. * the surplus huge page still exists after, even though it
  1339. * should just have been converted to a normal huge page. This
  1340. * does not leak memory, though, as the hugepage will be freed
  1341. * once it is out of use. It also does not allow the counters to
  1342. * go out of whack in adjust_pool_surplus() as we don't modify
  1343. * the node values until we've gotten the hugepage and only the
  1344. * per-node value is checked there.
  1345. */
  1346. spin_lock(&hugetlb_lock);
  1347. if (h->surplus_huge_pages >= h->nr_overcommit_huge_pages) {
  1348. spin_unlock(&hugetlb_lock);
  1349. return NULL;
  1350. } else {
  1351. h->nr_huge_pages++;
  1352. h->surplus_huge_pages++;
  1353. }
  1354. spin_unlock(&hugetlb_lock);
  1355. page = __hugetlb_alloc_buddy_huge_page(h, vma, addr, nid);
  1356. spin_lock(&hugetlb_lock);
  1357. if (page) {
  1358. INIT_LIST_HEAD(&page->lru);
  1359. r_nid = page_to_nid(page);
  1360. set_compound_page_dtor(page, HUGETLB_PAGE_DTOR);
  1361. set_hugetlb_cgroup(page, NULL);
  1362. /*
  1363. * We incremented the global counters already
  1364. */
  1365. h->nr_huge_pages_node[r_nid]++;
  1366. h->surplus_huge_pages_node[r_nid]++;
  1367. __count_vm_event(HTLB_BUDDY_PGALLOC);
  1368. } else {
  1369. h->nr_huge_pages--;
  1370. h->surplus_huge_pages--;
  1371. __count_vm_event(HTLB_BUDDY_PGALLOC_FAIL);
  1372. }
  1373. spin_unlock(&hugetlb_lock);
  1374. return page;
  1375. }
  1376. /*
  1377. * Allocate a huge page from 'nid'. Note, 'nid' may be
  1378. * NUMA_NO_NODE, which means that it may be allocated
  1379. * anywhere.
  1380. */
  1381. static
  1382. struct page *__alloc_buddy_huge_page_no_mpol(struct hstate *h, int nid)
  1383. {
  1384. unsigned long addr = -1;
  1385. return __alloc_buddy_huge_page(h, NULL, addr, nid);
  1386. }
  1387. /*
  1388. * Use the VMA's mpolicy to allocate a huge page from the buddy.
  1389. */
  1390. static
  1391. struct page *__alloc_buddy_huge_page_with_mpol(struct hstate *h,
  1392. struct vm_area_struct *vma, unsigned long addr)
  1393. {
  1394. return __alloc_buddy_huge_page(h, vma, addr, NUMA_NO_NODE);
  1395. }
  1396. /*
  1397. * This allocation function is useful in the context where vma is irrelevant.
  1398. * E.g. soft-offlining uses this function because it only cares physical
  1399. * address of error page.
  1400. */
  1401. struct page *alloc_huge_page_node(struct hstate *h, int nid)
  1402. {
  1403. struct page *page = NULL;
  1404. spin_lock(&hugetlb_lock);
  1405. if (h->free_huge_pages - h->resv_huge_pages > 0)
  1406. page = dequeue_huge_page_node(h, nid);
  1407. spin_unlock(&hugetlb_lock);
  1408. if (!page)
  1409. page = __alloc_buddy_huge_page_no_mpol(h, nid);
  1410. return page;
  1411. }
  1412. /*
  1413. * Increase the hugetlb pool such that it can accommodate a reservation
  1414. * of size 'delta'.
  1415. */
  1416. static int gather_surplus_pages(struct hstate *h, int delta)
  1417. {
  1418. struct list_head surplus_list;
  1419. struct page *page, *tmp;
  1420. int ret, i;
  1421. int needed, allocated;
  1422. bool alloc_ok = true;
  1423. needed = (h->resv_huge_pages + delta) - h->free_huge_pages;
  1424. if (needed <= 0) {
  1425. h->resv_huge_pages += delta;
  1426. return 0;
  1427. }
  1428. allocated = 0;
  1429. INIT_LIST_HEAD(&surplus_list);
  1430. ret = -ENOMEM;
  1431. retry:
  1432. spin_unlock(&hugetlb_lock);
  1433. for (i = 0; i < needed; i++) {
  1434. page = __alloc_buddy_huge_page_no_mpol(h, NUMA_NO_NODE);
  1435. if (!page) {
  1436. alloc_ok = false;
  1437. break;
  1438. }
  1439. list_add(&page->lru, &surplus_list);
  1440. }
  1441. allocated += i;
  1442. /*
  1443. * After retaking hugetlb_lock, we need to recalculate 'needed'
  1444. * because either resv_huge_pages or free_huge_pages may have changed.
  1445. */
  1446. spin_lock(&hugetlb_lock);
  1447. needed = (h->resv_huge_pages + delta) -
  1448. (h->free_huge_pages + allocated);
  1449. if (needed > 0) {
  1450. if (alloc_ok)
  1451. goto retry;
  1452. /*
  1453. * We were not able to allocate enough pages to
  1454. * satisfy the entire reservation so we free what
  1455. * we've allocated so far.
  1456. */
  1457. goto free;
  1458. }
  1459. /*
  1460. * The surplus_list now contains _at_least_ the number of extra pages
  1461. * needed to accommodate the reservation. Add the appropriate number
  1462. * of pages to the hugetlb pool and free the extras back to the buddy
  1463. * allocator. Commit the entire reservation here to prevent another
  1464. * process from stealing the pages as they are added to the pool but
  1465. * before they are reserved.
  1466. */
  1467. needed += allocated;
  1468. h->resv_huge_pages += delta;
  1469. ret = 0;
  1470. /* Free the needed pages to the hugetlb pool */
  1471. list_for_each_entry_safe(page, tmp, &surplus_list, lru) {
  1472. if ((--needed) < 0)
  1473. break;
  1474. /*
  1475. * This page is now managed by the hugetlb allocator and has
  1476. * no users -- drop the buddy allocator's reference.
  1477. */
  1478. put_page_testzero(page);
  1479. VM_BUG_ON_PAGE(page_count(page), page);
  1480. enqueue_huge_page(h, page);
  1481. }
  1482. free:
  1483. spin_unlock(&hugetlb_lock);
  1484. /* Free unnecessary surplus pages to the buddy allocator */
  1485. list_for_each_entry_safe(page, tmp, &surplus_list, lru)
  1486. put_page(page);
  1487. spin_lock(&hugetlb_lock);
  1488. return ret;
  1489. }
  1490. /*
  1491. * When releasing a hugetlb pool reservation, any surplus pages that were
  1492. * allocated to satisfy the reservation must be explicitly freed if they were
  1493. * never used.
  1494. * Called with hugetlb_lock held.
  1495. */
  1496. static void return_unused_surplus_pages(struct hstate *h,
  1497. unsigned long unused_resv_pages)
  1498. {
  1499. unsigned long nr_pages;
  1500. /* Uncommit the reservation */
  1501. h->resv_huge_pages -= unused_resv_pages;
  1502. /* Cannot return gigantic pages currently */
  1503. if (hstate_is_gigantic(h))
  1504. return;
  1505. nr_pages = min(unused_resv_pages, h->surplus_huge_pages);
  1506. /*
  1507. * We want to release as many surplus pages as possible, spread
  1508. * evenly across all nodes with memory. Iterate across these nodes
  1509. * until we can no longer free unreserved surplus pages. This occurs
  1510. * when the nodes with surplus pages have no free pages.
  1511. * free_pool_huge_page() will balance the the freed pages across the
  1512. * on-line nodes with memory and will handle the hstate accounting.
  1513. */
  1514. while (nr_pages--) {
  1515. if (!free_pool_huge_page(h, &node_states[N_MEMORY], 1))
  1516. break;
  1517. cond_resched_lock(&hugetlb_lock);
  1518. }
  1519. }
  1520. /*
  1521. * vma_needs_reservation, vma_commit_reservation and vma_end_reservation
  1522. * are used by the huge page allocation routines to manage reservations.
  1523. *
  1524. * vma_needs_reservation is called to determine if the huge page at addr
  1525. * within the vma has an associated reservation. If a reservation is
  1526. * needed, the value 1 is returned. The caller is then responsible for
  1527. * managing the global reservation and subpool usage counts. After
  1528. * the huge page has been allocated, vma_commit_reservation is called
  1529. * to add the page to the reservation map. If the page allocation fails,
  1530. * the reservation must be ended instead of committed. vma_end_reservation
  1531. * is called in such cases.
  1532. *
  1533. * In the normal case, vma_commit_reservation returns the same value
  1534. * as the preceding vma_needs_reservation call. The only time this
  1535. * is not the case is if a reserve map was changed between calls. It
  1536. * is the responsibility of the caller to notice the difference and
  1537. * take appropriate action.
  1538. */
  1539. enum vma_resv_mode {
  1540. VMA_NEEDS_RESV,
  1541. VMA_COMMIT_RESV,
  1542. VMA_END_RESV,
  1543. };
  1544. static long __vma_reservation_common(struct hstate *h,
  1545. struct vm_area_struct *vma, unsigned long addr,
  1546. enum vma_resv_mode mode)
  1547. {
  1548. struct resv_map *resv;
  1549. pgoff_t idx;
  1550. long ret;
  1551. resv = vma_resv_map(vma);
  1552. if (!resv)
  1553. return 1;
  1554. idx = vma_hugecache_offset(h, vma, addr);
  1555. switch (mode) {
  1556. case VMA_NEEDS_RESV:
  1557. ret = region_chg(resv, idx, idx + 1);
  1558. break;
  1559. case VMA_COMMIT_RESV:
  1560. ret = region_add(resv, idx, idx + 1);
  1561. break;
  1562. case VMA_END_RESV:
  1563. region_abort(resv, idx, idx + 1);
  1564. ret = 0;
  1565. break;
  1566. default:
  1567. BUG();
  1568. }
  1569. if (vma->vm_flags & VM_MAYSHARE)
  1570. return ret;
  1571. else
  1572. return ret < 0 ? ret : 0;
  1573. }
  1574. static long vma_needs_reservation(struct hstate *h,
  1575. struct vm_area_struct *vma, unsigned long addr)
  1576. {
  1577. return __vma_reservation_common(h, vma, addr, VMA_NEEDS_RESV);
  1578. }
  1579. static long vma_commit_reservation(struct hstate *h,
  1580. struct vm_area_struct *vma, unsigned long addr)
  1581. {
  1582. return __vma_reservation_common(h, vma, addr, VMA_COMMIT_RESV);
  1583. }
  1584. static void vma_end_reservation(struct hstate *h,
  1585. struct vm_area_struct *vma, unsigned long addr)
  1586. {
  1587. (void)__vma_reservation_common(h, vma, addr, VMA_END_RESV);
  1588. }
  1589. struct page *alloc_huge_page(struct vm_area_struct *vma,
  1590. unsigned long addr, int avoid_reserve)
  1591. {
  1592. struct hugepage_subpool *spool = subpool_vma(vma);
  1593. struct hstate *h = hstate_vma(vma);
  1594. struct page *page;
  1595. long map_chg, map_commit;
  1596. long gbl_chg;
  1597. int ret, idx;
  1598. struct hugetlb_cgroup *h_cg;
  1599. idx = hstate_index(h);
  1600. /*
  1601. * Examine the region/reserve map to determine if the process
  1602. * has a reservation for the page to be allocated. A return
  1603. * code of zero indicates a reservation exists (no change).
  1604. */
  1605. map_chg = gbl_chg = vma_needs_reservation(h, vma, addr);
  1606. if (map_chg < 0)
  1607. return ERR_PTR(-ENOMEM);
  1608. /*
  1609. * Processes that did not create the mapping will have no
  1610. * reserves as indicated by the region/reserve map. Check
  1611. * that the allocation will not exceed the subpool limit.
  1612. * Allocations for MAP_NORESERVE mappings also need to be
  1613. * checked against any subpool limit.
  1614. */
  1615. if (map_chg || avoid_reserve) {
  1616. gbl_chg = hugepage_subpool_get_pages(spool, 1);
  1617. if (gbl_chg < 0) {
  1618. vma_end_reservation(h, vma, addr);
  1619. return ERR_PTR(-ENOSPC);
  1620. }
  1621. /*
  1622. * Even though there was no reservation in the region/reserve
  1623. * map, there could be reservations associated with the
  1624. * subpool that can be used. This would be indicated if the
  1625. * return value of hugepage_subpool_get_pages() is zero.
  1626. * However, if avoid_reserve is specified we still avoid even
  1627. * the subpool reservations.
  1628. */
  1629. if (avoid_reserve)
  1630. gbl_chg = 1;
  1631. }
  1632. ret = hugetlb_cgroup_charge_cgroup(idx, pages_per_huge_page(h), &h_cg);
  1633. if (ret)
  1634. goto out_subpool_put;
  1635. spin_lock(&hugetlb_lock);
  1636. /*
  1637. * glb_chg is passed to indicate whether or not a page must be taken
  1638. * from the global free pool (global change). gbl_chg == 0 indicates
  1639. * a reservation exists for the allocation.
  1640. */
  1641. page = dequeue_huge_page_vma(h, vma, addr, avoid_reserve, gbl_chg);
  1642. if (!page) {
  1643. spin_unlock(&hugetlb_lock);
  1644. page = __alloc_buddy_huge_page_with_mpol(h, vma, addr);
  1645. if (!page)
  1646. goto out_uncharge_cgroup;
  1647. if (!avoid_reserve && vma_has_reserves(vma, gbl_chg)) {
  1648. SetPagePrivate(page);
  1649. h->resv_huge_pages--;
  1650. }
  1651. spin_lock(&hugetlb_lock);
  1652. list_move(&page->lru, &h->hugepage_activelist);
  1653. /* Fall through */
  1654. }
  1655. hugetlb_cgroup_commit_charge(idx, pages_per_huge_page(h), h_cg, page);
  1656. spin_unlock(&hugetlb_lock);
  1657. set_page_private(page, (unsigned long)spool);
  1658. map_commit = vma_commit_reservation(h, vma, addr);
  1659. if (unlikely(map_chg > map_commit)) {
  1660. /*
  1661. * The page was added to the reservation map between
  1662. * vma_needs_reservation and vma_commit_reservation.
  1663. * This indicates a race with hugetlb_reserve_pages.
  1664. * Adjust for the subpool count incremented above AND
  1665. * in hugetlb_reserve_pages for the same page. Also,
  1666. * the reservation count added in hugetlb_reserve_pages
  1667. * no longer applies.
  1668. */
  1669. long rsv_adjust;
  1670. rsv_adjust = hugepage_subpool_put_pages(spool, 1);
  1671. hugetlb_acct_memory(h, -rsv_adjust);
  1672. }
  1673. return page;
  1674. out_uncharge_cgroup:
  1675. hugetlb_cgroup_uncharge_cgroup(idx, pages_per_huge_page(h), h_cg);
  1676. out_subpool_put:
  1677. if (map_chg || avoid_reserve)
  1678. hugepage_subpool_put_pages(spool, 1);
  1679. vma_end_reservation(h, vma, addr);
  1680. return ERR_PTR(-ENOSPC);
  1681. }
  1682. /*
  1683. * alloc_huge_page()'s wrapper which simply returns the page if allocation
  1684. * succeeds, otherwise NULL. This function is called from new_vma_page(),
  1685. * where no ERR_VALUE is expected to be returned.
  1686. */
  1687. struct page *alloc_huge_page_noerr(struct vm_area_struct *vma,
  1688. unsigned long addr, int avoid_reserve)
  1689. {
  1690. struct page *page = alloc_huge_page(vma, addr, avoid_reserve);
  1691. if (IS_ERR(page))
  1692. page = NULL;
  1693. return page;
  1694. }
  1695. int __weak alloc_bootmem_huge_page(struct hstate *h)
  1696. {
  1697. struct huge_bootmem_page *m;
  1698. int nr_nodes, node;
  1699. for_each_node_mask_to_alloc(h, nr_nodes, node, &node_states[N_MEMORY]) {
  1700. void *addr;
  1701. addr = memblock_virt_alloc_try_nid_nopanic(
  1702. huge_page_size(h), huge_page_size(h),
  1703. 0, BOOTMEM_ALLOC_ACCESSIBLE, node);
  1704. if (addr) {
  1705. /*
  1706. * Use the beginning of the huge page to store the
  1707. * huge_bootmem_page struct (until gather_bootmem
  1708. * puts them into the mem_map).
  1709. */
  1710. m = addr;
  1711. goto found;
  1712. }
  1713. }
  1714. return 0;
  1715. found:
  1716. BUG_ON(!IS_ALIGNED(virt_to_phys(m), huge_page_size(h)));
  1717. /* Put them into a private list first because mem_map is not up yet */
  1718. list_add(&m->list, &huge_boot_pages);
  1719. m->hstate = h;
  1720. return 1;
  1721. }
  1722. static void __init prep_compound_huge_page(struct page *page,
  1723. unsigned int order)
  1724. {
  1725. if (unlikely(order > (MAX_ORDER - 1)))
  1726. prep_compound_gigantic_page(page, order);
  1727. else
  1728. prep_compound_page(page, order);
  1729. }
  1730. /* Put bootmem huge pages into the standard lists after mem_map is up */
  1731. static void __init gather_bootmem_prealloc(void)
  1732. {
  1733. struct huge_bootmem_page *m;
  1734. list_for_each_entry(m, &huge_boot_pages, list) {
  1735. struct hstate *h = m->hstate;
  1736. struct page *page;
  1737. #ifdef CONFIG_HIGHMEM
  1738. page = pfn_to_page(m->phys >> PAGE_SHIFT);
  1739. memblock_free_late(__pa(m),
  1740. sizeof(struct huge_bootmem_page));
  1741. #else
  1742. page = virt_to_page(m);
  1743. #endif
  1744. WARN_ON(page_count(page) != 1);
  1745. prep_compound_huge_page(page, h->order);
  1746. WARN_ON(PageReserved(page));
  1747. prep_new_huge_page(h, page, page_to_nid(page));
  1748. /*
  1749. * If we had gigantic hugepages allocated at boot time, we need
  1750. * to restore the 'stolen' pages to totalram_pages in order to
  1751. * fix confusing memory reports from free(1) and another
  1752. * side-effects, like CommitLimit going negative.
  1753. */
  1754. if (hstate_is_gigantic(h))
  1755. adjust_managed_page_count(page, 1 << h->order);
  1756. }
  1757. }
  1758. static void __init hugetlb_hstate_alloc_pages(struct hstate *h)
  1759. {
  1760. unsigned long i;
  1761. for (i = 0; i < h->max_huge_pages; ++i) {
  1762. if (hstate_is_gigantic(h)) {
  1763. if (!alloc_bootmem_huge_page(h))
  1764. break;
  1765. } else if (!alloc_fresh_huge_page(h,
  1766. &node_states[N_MEMORY]))
  1767. break;
  1768. }
  1769. h->max_huge_pages = i;
  1770. }
  1771. static void __init hugetlb_init_hstates(void)
  1772. {
  1773. struct hstate *h;
  1774. for_each_hstate(h) {
  1775. if (minimum_order > huge_page_order(h))
  1776. minimum_order = huge_page_order(h);
  1777. /* oversize hugepages were init'ed in early boot */
  1778. if (!hstate_is_gigantic(h))
  1779. hugetlb_hstate_alloc_pages(h);
  1780. }
  1781. VM_BUG_ON(minimum_order == UINT_MAX);
  1782. }
  1783. static char * __init memfmt(char *buf, unsigned long n)
  1784. {
  1785. if (n >= (1UL << 30))
  1786. sprintf(buf, "%lu GB", n >> 30);
  1787. else if (n >= (1UL << 20))
  1788. sprintf(buf, "%lu MB", n >> 20);
  1789. else
  1790. sprintf(buf, "%lu KB", n >> 10);
  1791. return buf;
  1792. }
  1793. static void __init report_hugepages(void)
  1794. {
  1795. struct hstate *h;
  1796. for_each_hstate(h) {
  1797. char buf[32];
  1798. pr_info("HugeTLB registered %s page size, pre-allocated %ld pages\n",
  1799. memfmt(buf, huge_page_size(h)),
  1800. h->free_huge_pages);
  1801. }
  1802. }
  1803. #ifdef CONFIG_HIGHMEM
  1804. static void try_to_free_low(struct hstate *h, unsigned long count,
  1805. nodemask_t *nodes_allowed)
  1806. {
  1807. int i;
  1808. if (hstate_is_gigantic(h))
  1809. return;
  1810. for_each_node_mask(i, *nodes_allowed) {
  1811. struct page *page, *next;
  1812. struct list_head *freel = &h->hugepage_freelists[i];
  1813. list_for_each_entry_safe(page, next, freel, lru) {
  1814. if (count >= h->nr_huge_pages)
  1815. return;
  1816. if (PageHighMem(page))
  1817. continue;
  1818. list_del(&page->lru);
  1819. update_and_free_page(h, page);
  1820. h->free_huge_pages--;
  1821. h->free_huge_pages_node[page_to_nid(page)]--;
  1822. }
  1823. }
  1824. }
  1825. #else
  1826. static inline void try_to_free_low(struct hstate *h, unsigned long count,
  1827. nodemask_t *nodes_allowed)
  1828. {
  1829. }
  1830. #endif
  1831. /*
  1832. * Increment or decrement surplus_huge_pages. Keep node-specific counters
  1833. * balanced by operating on them in a round-robin fashion.
  1834. * Returns 1 if an adjustment was made.
  1835. */
  1836. static int adjust_pool_surplus(struct hstate *h, nodemask_t *nodes_allowed,
  1837. int delta)
  1838. {
  1839. int nr_nodes, node;
  1840. VM_BUG_ON(delta != -1 && delta != 1);
  1841. if (delta < 0) {
  1842. for_each_node_mask_to_alloc(h, nr_nodes, node, nodes_allowed) {
  1843. if (h->surplus_huge_pages_node[node])
  1844. goto found;
  1845. }
  1846. } else {
  1847. for_each_node_mask_to_free(h, nr_nodes, node, nodes_allowed) {
  1848. if (h->surplus_huge_pages_node[node] <
  1849. h->nr_huge_pages_node[node])
  1850. goto found;
  1851. }
  1852. }
  1853. return 0;
  1854. found:
  1855. h->surplus_huge_pages += delta;
  1856. h->surplus_huge_pages_node[node] += delta;
  1857. return 1;
  1858. }
  1859. #define persistent_huge_pages(h) (h->nr_huge_pages - h->surplus_huge_pages)
  1860. static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count,
  1861. nodemask_t *nodes_allowed)
  1862. {
  1863. unsigned long min_count, ret;
  1864. if (hstate_is_gigantic(h) && !gigantic_page_supported())
  1865. return h->max_huge_pages;
  1866. /*
  1867. * Increase the pool size
  1868. * First take pages out of surplus state. Then make up the
  1869. * remaining difference by allocating fresh huge pages.
  1870. *
  1871. * We might race with __alloc_buddy_huge_page() here and be unable
  1872. * to convert a surplus huge page to a normal huge page. That is
  1873. * not critical, though, it just means the overall size of the
  1874. * pool might be one hugepage larger than it needs to be, but
  1875. * within all the constraints specified by the sysctls.
  1876. */
  1877. spin_lock(&hugetlb_lock);
  1878. while (h->surplus_huge_pages && count > persistent_huge_pages(h)) {
  1879. if (!adjust_pool_surplus(h, nodes_allowed, -1))
  1880. break;
  1881. }
  1882. while (count > persistent_huge_pages(h)) {
  1883. /*
  1884. * If this allocation races such that we no longer need the
  1885. * page, free_huge_page will handle it by freeing the page
  1886. * and reducing the surplus.
  1887. */
  1888. spin_unlock(&hugetlb_lock);
  1889. if (hstate_is_gigantic(h))
  1890. ret = alloc_fresh_gigantic_page(h, nodes_allowed);
  1891. else
  1892. ret = alloc_fresh_huge_page(h, nodes_allowed);
  1893. spin_lock(&hugetlb_lock);
  1894. if (!ret)
  1895. goto out;
  1896. /* Bail for signals. Probably ctrl-c from user */
  1897. if (signal_pending(current))
  1898. goto out;
  1899. }
  1900. /*
  1901. * Decrease the pool size
  1902. * First return free pages to the buddy allocator (being careful
  1903. * to keep enough around to satisfy reservations). Then place
  1904. * pages into surplus state as needed so the pool will shrink
  1905. * to the desired size as pages become free.
  1906. *
  1907. * By placing pages into the surplus state independent of the
  1908. * overcommit value, we are allowing the surplus pool size to
  1909. * exceed overcommit. There are few sane options here. Since
  1910. * __alloc_buddy_huge_page() is checking the global counter,
  1911. * though, we'll note that we're not allowed to exceed surplus
  1912. * and won't grow the pool anywhere else. Not until one of the
  1913. * sysctls are changed, or the surplus pages go out of use.
  1914. */
  1915. min_count = h->resv_huge_pages + h->nr_huge_pages - h->free_huge_pages;
  1916. min_count = max(count, min_count);
  1917. try_to_free_low(h, min_count, nodes_allowed);
  1918. while (min_count < persistent_huge_pages(h)) {
  1919. if (!free_pool_huge_page(h, nodes_allowed, 0))
  1920. break;
  1921. cond_resched_lock(&hugetlb_lock);
  1922. }
  1923. while (count < persistent_huge_pages(h)) {
  1924. if (!adjust_pool_surplus(h, nodes_allowed, 1))
  1925. break;
  1926. }
  1927. out:
  1928. ret = persistent_huge_pages(h);
  1929. spin_unlock(&hugetlb_lock);
  1930. return ret;
  1931. }
  1932. #define HSTATE_ATTR_RO(_name) \
  1933. static struct kobj_attribute _name##_attr = __ATTR_RO(_name)
  1934. #define HSTATE_ATTR(_name) \
  1935. static struct kobj_attribute _name##_attr = \
  1936. __ATTR(_name, 0644, _name##_show, _name##_store)
  1937. static struct kobject *hugepages_kobj;
  1938. static struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
  1939. static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp);
  1940. static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp)
  1941. {
  1942. int i;
  1943. for (i = 0; i < HUGE_MAX_HSTATE; i++)
  1944. if (hstate_kobjs[i] == kobj) {
  1945. if (nidp)
  1946. *nidp = NUMA_NO_NODE;
  1947. return &hstates[i];
  1948. }
  1949. return kobj_to_node_hstate(kobj, nidp);
  1950. }
  1951. static ssize_t nr_hugepages_show_common(struct kobject *kobj,
  1952. struct kobj_attribute *attr, char *buf)
  1953. {
  1954. struct hstate *h;
  1955. unsigned long nr_huge_pages;
  1956. int nid;
  1957. h = kobj_to_hstate(kobj, &nid);
  1958. if (nid == NUMA_NO_NODE)
  1959. nr_huge_pages = h->nr_huge_pages;
  1960. else
  1961. nr_huge_pages = h->nr_huge_pages_node[nid];
  1962. return sprintf(buf, "%lu\n", nr_huge_pages);
  1963. }
  1964. static ssize_t __nr_hugepages_store_common(bool obey_mempolicy,
  1965. struct hstate *h, int nid,
  1966. unsigned long count, size_t len)
  1967. {
  1968. int err;
  1969. NODEMASK_ALLOC(nodemask_t, nodes_allowed, GFP_KERNEL | __GFP_NORETRY);
  1970. if (hstate_is_gigantic(h) && !gigantic_page_supported()) {
  1971. err = -EINVAL;
  1972. goto out;
  1973. }
  1974. if (nid == NUMA_NO_NODE) {
  1975. /*
  1976. * global hstate attribute
  1977. */
  1978. if (!(obey_mempolicy &&
  1979. init_nodemask_of_mempolicy(nodes_allowed))) {
  1980. NODEMASK_FREE(nodes_allowed);
  1981. nodes_allowed = &node_states[N_MEMORY];
  1982. }
  1983. } else if (nodes_allowed) {
  1984. /*
  1985. * per node hstate attribute: adjust count to global,
  1986. * but restrict alloc/free to the specified node.
  1987. */
  1988. count += h->nr_huge_pages - h->nr_huge_pages_node[nid];
  1989. init_nodemask_of_node(nodes_allowed, nid);
  1990. } else
  1991. nodes_allowed = &node_states[N_MEMORY];
  1992. h->max_huge_pages = set_max_huge_pages(h, count, nodes_allowed);
  1993. if (nodes_allowed != &node_states[N_MEMORY])
  1994. NODEMASK_FREE(nodes_allowed);
  1995. return len;
  1996. out:
  1997. NODEMASK_FREE(nodes_allowed);
  1998. return err;
  1999. }
  2000. static ssize_t nr_hugepages_store_common(bool obey_mempolicy,
  2001. struct kobject *kobj, const char *buf,
  2002. size_t len)
  2003. {
  2004. struct hstate *h;
  2005. unsigned long count;
  2006. int nid;
  2007. int err;
  2008. err = kstrtoul(buf, 10, &count);
  2009. if (err)
  2010. return err;
  2011. h = kobj_to_hstate(kobj, &nid);
  2012. return __nr_hugepages_store_common(obey_mempolicy, h, nid, count, len);
  2013. }
  2014. static ssize_t nr_hugepages_show(struct kobject *kobj,
  2015. struct kobj_attribute *attr, char *buf)
  2016. {
  2017. return nr_hugepages_show_common(kobj, attr, buf);
  2018. }
  2019. static ssize_t nr_hugepages_store(struct kobject *kobj,
  2020. struct kobj_attribute *attr, const char *buf, size_t len)
  2021. {
  2022. return nr_hugepages_store_common(false, kobj, buf, len);
  2023. }
  2024. HSTATE_ATTR(nr_hugepages);
  2025. #ifdef CONFIG_NUMA
  2026. /*
  2027. * hstate attribute for optionally mempolicy-based constraint on persistent
  2028. * huge page alloc/free.
  2029. */
  2030. static ssize_t nr_hugepages_mempolicy_show(struct kobject *kobj,
  2031. struct kobj_attribute *attr, char *buf)
  2032. {
  2033. return nr_hugepages_show_common(kobj, attr, buf);
  2034. }
  2035. static ssize_t nr_hugepages_mempolicy_store(struct kobject *kobj,
  2036. struct kobj_attribute *attr, const char *buf, size_t len)
  2037. {
  2038. return nr_hugepages_store_common(true, kobj, buf, len);
  2039. }
  2040. HSTATE_ATTR(nr_hugepages_mempolicy);
  2041. #endif
  2042. static ssize_t nr_overcommit_hugepages_show(struct kobject *kobj,
  2043. struct kobj_attribute *attr, char *buf)
  2044. {
  2045. struct hstate *h = kobj_to_hstate(kobj, NULL);
  2046. return sprintf(buf, "%lu\n", h->nr_overcommit_huge_pages);
  2047. }
  2048. static ssize_t nr_overcommit_hugepages_store(struct kobject *kobj,
  2049. struct kobj_attribute *attr, const char *buf, size_t count)
  2050. {
  2051. int err;
  2052. unsigned long input;
  2053. struct hstate *h = kobj_to_hstate(kobj, NULL);
  2054. if (hstate_is_gigantic(h))
  2055. return -EINVAL;
  2056. err = kstrtoul(buf, 10, &input);
  2057. if (err)
  2058. return err;
  2059. spin_lock(&hugetlb_lock);
  2060. h->nr_overcommit_huge_pages = input;
  2061. spin_unlock(&hugetlb_lock);
  2062. return count;
  2063. }
  2064. HSTATE_ATTR(nr_overcommit_hugepages);
  2065. static ssize_t free_hugepages_show(struct kobject *kobj,
  2066. struct kobj_attribute *attr, char *buf)
  2067. {
  2068. struct hstate *h;
  2069. unsigned long free_huge_pages;
  2070. int nid;
  2071. h = kobj_to_hstate(kobj, &nid);
  2072. if (nid == NUMA_NO_NODE)
  2073. free_huge_pages = h->free_huge_pages;
  2074. else
  2075. free_huge_pages = h->free_huge_pages_node[nid];
  2076. return sprintf(buf, "%lu\n", free_huge_pages);
  2077. }
  2078. HSTATE_ATTR_RO(free_hugepages);
  2079. static ssize_t resv_hugepages_show(struct kobject *kobj,
  2080. struct kobj_attribute *attr, char *buf)
  2081. {
  2082. struct hstate *h = kobj_to_hstate(kobj, NULL);
  2083. return sprintf(buf, "%lu\n", h->resv_huge_pages);
  2084. }
  2085. HSTATE_ATTR_RO(resv_hugepages);
  2086. static ssize_t surplus_hugepages_show(struct kobject *kobj,
  2087. struct kobj_attribute *attr, char *buf)
  2088. {
  2089. struct hstate *h;
  2090. unsigned long surplus_huge_pages;
  2091. int nid;
  2092. h = kobj_to_hstate(kobj, &nid);
  2093. if (nid == NUMA_NO_NODE)
  2094. surplus_huge_pages = h->surplus_huge_pages;
  2095. else
  2096. surplus_huge_pages = h->surplus_huge_pages_node[nid];
  2097. return sprintf(buf, "%lu\n", surplus_huge_pages);
  2098. }
  2099. HSTATE_ATTR_RO(surplus_hugepages);
  2100. static struct attribute *hstate_attrs[] = {
  2101. &nr_hugepages_attr.attr,
  2102. &nr_overcommit_hugepages_attr.attr,
  2103. &free_hugepages_attr.attr,
  2104. &resv_hugepages_attr.attr,
  2105. &surplus_hugepages_attr.attr,
  2106. #ifdef CONFIG_NUMA
  2107. &nr_hugepages_mempolicy_attr.attr,
  2108. #endif
  2109. NULL,
  2110. };
  2111. static struct attribute_group hstate_attr_group = {
  2112. .attrs = hstate_attrs,
  2113. };
  2114. static int hugetlb_sysfs_add_hstate(struct hstate *h, struct kobject *parent,
  2115. struct kobject **hstate_kobjs,
  2116. struct attribute_group *hstate_attr_group)
  2117. {
  2118. int retval;
  2119. int hi = hstate_index(h);
  2120. hstate_kobjs[hi] = kobject_create_and_add(h->name, parent);
  2121. if (!hstate_kobjs[hi])
  2122. return -ENOMEM;
  2123. retval = sysfs_create_group(hstate_kobjs[hi], hstate_attr_group);
  2124. if (retval)
  2125. kobject_put(hstate_kobjs[hi]);
  2126. return retval;
  2127. }
  2128. static void __init hugetlb_sysfs_init(void)
  2129. {
  2130. struct hstate *h;
  2131. int err;
  2132. hugepages_kobj = kobject_create_and_add("hugepages", mm_kobj);
  2133. if (!hugepages_kobj)
  2134. return;
  2135. for_each_hstate(h) {
  2136. err = hugetlb_sysfs_add_hstate(h, hugepages_kobj,
  2137. hstate_kobjs, &hstate_attr_group);
  2138. if (err)
  2139. pr_err("Hugetlb: Unable to add hstate %s", h->name);
  2140. }
  2141. }
  2142. #ifdef CONFIG_NUMA
  2143. /*
  2144. * node_hstate/s - associate per node hstate attributes, via their kobjects,
  2145. * with node devices in node_devices[] using a parallel array. The array
  2146. * index of a node device or _hstate == node id.
  2147. * This is here to avoid any static dependency of the node device driver, in
  2148. * the base kernel, on the hugetlb module.
  2149. */
  2150. struct node_hstate {
  2151. struct kobject *hugepages_kobj;
  2152. struct kobject *hstate_kobjs[HUGE_MAX_HSTATE];
  2153. };
  2154. static struct node_hstate node_hstates[MAX_NUMNODES];
  2155. /*
  2156. * A subset of global hstate attributes for node devices
  2157. */
  2158. static struct attribute *per_node_hstate_attrs[] = {
  2159. &nr_hugepages_attr.attr,
  2160. &free_hugepages_attr.attr,
  2161. &surplus_hugepages_attr.attr,
  2162. NULL,
  2163. };
  2164. static struct attribute_group per_node_hstate_attr_group = {
  2165. .attrs = per_node_hstate_attrs,
  2166. };
  2167. /*
  2168. * kobj_to_node_hstate - lookup global hstate for node device hstate attr kobj.
  2169. * Returns node id via non-NULL nidp.
  2170. */
  2171. static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
  2172. {
  2173. int nid;
  2174. for (nid = 0; nid < nr_node_ids; nid++) {
  2175. struct node_hstate *nhs = &node_hstates[nid];
  2176. int i;
  2177. for (i = 0; i < HUGE_MAX_HSTATE; i++)
  2178. if (nhs->hstate_kobjs[i] == kobj) {
  2179. if (nidp)
  2180. *nidp = nid;
  2181. return &hstates[i];
  2182. }
  2183. }
  2184. BUG();
  2185. return NULL;
  2186. }
  2187. /*
  2188. * Unregister hstate attributes from a single node device.
  2189. * No-op if no hstate attributes attached.
  2190. */
  2191. static void hugetlb_unregister_node(struct node *node)
  2192. {
  2193. struct hstate *h;
  2194. struct node_hstate *nhs = &node_hstates[node->dev.id];
  2195. if (!nhs->hugepages_kobj)
  2196. return; /* no hstate attributes */
  2197. for_each_hstate(h) {
  2198. int idx = hstate_index(h);
  2199. if (nhs->hstate_kobjs[idx]) {
  2200. kobject_put(nhs->hstate_kobjs[idx]);
  2201. nhs->hstate_kobjs[idx] = NULL;
  2202. }
  2203. }
  2204. kobject_put(nhs->hugepages_kobj);
  2205. nhs->hugepages_kobj = NULL;
  2206. }
  2207. /*
  2208. * Register hstate attributes for a single node device.
  2209. * No-op if attributes already registered.
  2210. */
  2211. static void hugetlb_register_node(struct node *node)
  2212. {
  2213. struct hstate *h;
  2214. struct node_hstate *nhs = &node_hstates[node->dev.id];
  2215. int err;
  2216. if (nhs->hugepages_kobj)
  2217. return; /* already allocated */
  2218. nhs->hugepages_kobj = kobject_create_and_add("hugepages",
  2219. &node->dev.kobj);
  2220. if (!nhs->hugepages_kobj)
  2221. return;
  2222. for_each_hstate(h) {
  2223. err = hugetlb_sysfs_add_hstate(h, nhs->hugepages_kobj,
  2224. nhs->hstate_kobjs,
  2225. &per_node_hstate_attr_group);
  2226. if (err) {
  2227. pr_err("Hugetlb: Unable to add hstate %s for node %d\n",
  2228. h->name, node->dev.id);
  2229. hugetlb_unregister_node(node);
  2230. break;
  2231. }
  2232. }
  2233. }
  2234. /*
  2235. * hugetlb init time: register hstate attributes for all registered node
  2236. * devices of nodes that have memory. All on-line nodes should have
  2237. * registered their associated device by this time.
  2238. */
  2239. static void __init hugetlb_register_all_nodes(void)
  2240. {
  2241. int nid;
  2242. for_each_node_state(nid, N_MEMORY) {
  2243. struct node *node = node_devices[nid];
  2244. if (node->dev.id == nid)
  2245. hugetlb_register_node(node);
  2246. }
  2247. /*
  2248. * Let the node device driver know we're here so it can
  2249. * [un]register hstate attributes on node hotplug.
  2250. */
  2251. register_hugetlbfs_with_node(hugetlb_register_node,
  2252. hugetlb_unregister_node);
  2253. }
  2254. #else /* !CONFIG_NUMA */
  2255. static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp)
  2256. {
  2257. BUG();
  2258. if (nidp)
  2259. *nidp = -1;
  2260. return NULL;
  2261. }
  2262. static void hugetlb_register_all_nodes(void) { }
  2263. #endif
  2264. static int __init hugetlb_init(void)
  2265. {
  2266. int i;
  2267. if (!hugepages_supported())
  2268. return 0;
  2269. if (!size_to_hstate(default_hstate_size)) {
  2270. default_hstate_size = HPAGE_SIZE;
  2271. if (!size_to_hstate(default_hstate_size))
  2272. hugetlb_add_hstate(HUGETLB_PAGE_ORDER);
  2273. }
  2274. default_hstate_idx = hstate_index(size_to_hstate(default_hstate_size));
  2275. if (default_hstate_max_huge_pages) {
  2276. if (!default_hstate.max_huge_pages)
  2277. default_hstate.max_huge_pages = default_hstate_max_huge_pages;
  2278. }
  2279. hugetlb_init_hstates();
  2280. gather_bootmem_prealloc();
  2281. report_hugepages();
  2282. hugetlb_sysfs_init();
  2283. hugetlb_register_all_nodes();
  2284. hugetlb_cgroup_file_init();
  2285. #ifdef CONFIG_SMP
  2286. num_fault_mutexes = roundup_pow_of_two(8 * num_possible_cpus());
  2287. #else
  2288. num_fault_mutexes = 1;
  2289. #endif
  2290. hugetlb_fault_mutex_table =
  2291. kmalloc(sizeof(struct mutex) * num_fault_mutexes, GFP_KERNEL);
  2292. BUG_ON(!hugetlb_fault_mutex_table);
  2293. for (i = 0; i < num_fault_mutexes; i++)
  2294. mutex_init(&hugetlb_fault_mutex_table[i]);
  2295. return 0;
  2296. }
  2297. subsys_initcall(hugetlb_init);
  2298. /* Should be called on processing a hugepagesz=... option */
  2299. void __init hugetlb_add_hstate(unsigned int order)
  2300. {
  2301. struct hstate *h;
  2302. unsigned long i;
  2303. if (size_to_hstate(PAGE_SIZE << order)) {
  2304. pr_warning("hugepagesz= specified twice, ignoring\n");
  2305. return;
  2306. }
  2307. BUG_ON(hugetlb_max_hstate >= HUGE_MAX_HSTATE);
  2308. BUG_ON(order == 0);
  2309. h = &hstates[hugetlb_max_hstate++];
  2310. h->order = order;
  2311. h->mask = ~((1ULL << (order + PAGE_SHIFT)) - 1);
  2312. h->nr_huge_pages = 0;
  2313. h->free_huge_pages = 0;
  2314. for (i = 0; i < MAX_NUMNODES; ++i)
  2315. INIT_LIST_HEAD(&h->hugepage_freelists[i]);
  2316. INIT_LIST_HEAD(&h->hugepage_activelist);
  2317. h->next_nid_to_alloc = first_node(node_states[N_MEMORY]);
  2318. h->next_nid_to_free = first_node(node_states[N_MEMORY]);
  2319. snprintf(h->name, HSTATE_NAME_LEN, "hugepages-%lukB",
  2320. huge_page_size(h)/1024);
  2321. parsed_hstate = h;
  2322. }
  2323. static int __init hugetlb_nrpages_setup(char *s)
  2324. {
  2325. unsigned long *mhp;
  2326. static unsigned long *last_mhp;
  2327. /*
  2328. * !hugetlb_max_hstate means we haven't parsed a hugepagesz= parameter yet,
  2329. * so this hugepages= parameter goes to the "default hstate".
  2330. */
  2331. if (!hugetlb_max_hstate)
  2332. mhp = &default_hstate_max_huge_pages;
  2333. else
  2334. mhp = &parsed_hstate->max_huge_pages;
  2335. if (mhp == last_mhp) {
  2336. pr_warning("hugepages= specified twice without "
  2337. "interleaving hugepagesz=, ignoring\n");
  2338. return 1;
  2339. }
  2340. if (sscanf(s, "%lu", mhp) <= 0)
  2341. *mhp = 0;
  2342. /*
  2343. * Global state is always initialized later in hugetlb_init.
  2344. * But we need to allocate >= MAX_ORDER hstates here early to still
  2345. * use the bootmem allocator.
  2346. */
  2347. if (hugetlb_max_hstate && parsed_hstate->order >= MAX_ORDER)
  2348. hugetlb_hstate_alloc_pages(parsed_hstate);
  2349. last_mhp = mhp;
  2350. return 1;
  2351. }
  2352. __setup("hugepages=", hugetlb_nrpages_setup);
  2353. static int __init hugetlb_default_setup(char *s)
  2354. {
  2355. default_hstate_size = memparse(s, &s);
  2356. return 1;
  2357. }
  2358. __setup("default_hugepagesz=", hugetlb_default_setup);
  2359. static unsigned int cpuset_mems_nr(unsigned int *array)
  2360. {
  2361. int node;
  2362. unsigned int nr = 0;
  2363. for_each_node_mask(node, cpuset_current_mems_allowed)
  2364. nr += array[node];
  2365. return nr;
  2366. }
  2367. #ifdef CONFIG_SYSCTL
  2368. static int hugetlb_sysctl_handler_common(bool obey_mempolicy,
  2369. struct ctl_table *table, int write,
  2370. void __user *buffer, size_t *length, loff_t *ppos)
  2371. {
  2372. struct hstate *h = &default_hstate;
  2373. unsigned long tmp = h->max_huge_pages;
  2374. int ret;
  2375. if (!hugepages_supported())
  2376. return -EOPNOTSUPP;
  2377. table->data = &tmp;
  2378. table->maxlen = sizeof(unsigned long);
  2379. ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
  2380. if (ret)
  2381. goto out;
  2382. if (write)
  2383. ret = __nr_hugepages_store_common(obey_mempolicy, h,
  2384. NUMA_NO_NODE, tmp, *length);
  2385. out:
  2386. return ret;
  2387. }
  2388. int hugetlb_sysctl_handler(struct ctl_table *table, int write,
  2389. void __user *buffer, size_t *length, loff_t *ppos)
  2390. {
  2391. return hugetlb_sysctl_handler_common(false, table, write,
  2392. buffer, length, ppos);
  2393. }
  2394. #ifdef CONFIG_NUMA
  2395. int hugetlb_mempolicy_sysctl_handler(struct ctl_table *table, int write,
  2396. void __user *buffer, size_t *length, loff_t *ppos)
  2397. {
  2398. return hugetlb_sysctl_handler_common(true, table, write,
  2399. buffer, length, ppos);
  2400. }
  2401. #endif /* CONFIG_NUMA */
  2402. int hugetlb_overcommit_handler(struct ctl_table *table, int write,
  2403. void __user *buffer,
  2404. size_t *length, loff_t *ppos)
  2405. {
  2406. struct hstate *h = &default_hstate;
  2407. unsigned long tmp;
  2408. int ret;
  2409. if (!hugepages_supported())
  2410. return -EOPNOTSUPP;
  2411. tmp = h->nr_overcommit_huge_pages;
  2412. if (write && hstate_is_gigantic(h))
  2413. return -EINVAL;
  2414. table->data = &tmp;
  2415. table->maxlen = sizeof(unsigned long);
  2416. ret = proc_doulongvec_minmax(table, write, buffer, length, ppos);
  2417. if (ret)
  2418. goto out;
  2419. if (write) {
  2420. spin_lock(&hugetlb_lock);
  2421. h->nr_overcommit_huge_pages = tmp;
  2422. spin_unlock(&hugetlb_lock);
  2423. }
  2424. out:
  2425. return ret;
  2426. }
  2427. #endif /* CONFIG_SYSCTL */
  2428. void hugetlb_report_meminfo(struct seq_file *m)
  2429. {
  2430. struct hstate *h = &default_hstate;
  2431. if (!hugepages_supported())
  2432. return;
  2433. seq_printf(m,
  2434. "HugePages_Total: %5lu\n"
  2435. "HugePages_Free: %5lu\n"
  2436. "HugePages_Rsvd: %5lu\n"
  2437. "HugePages_Surp: %5lu\n"
  2438. "Hugepagesize: %8lu kB\n",
  2439. h->nr_huge_pages,
  2440. h->free_huge_pages,
  2441. h->resv_huge_pages,
  2442. h->surplus_huge_pages,
  2443. 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
  2444. }
  2445. int hugetlb_report_node_meminfo(int nid, char *buf)
  2446. {
  2447. struct hstate *h = &default_hstate;
  2448. if (!hugepages_supported())
  2449. return 0;
  2450. return sprintf(buf,
  2451. "Node %d HugePages_Total: %5u\n"
  2452. "Node %d HugePages_Free: %5u\n"
  2453. "Node %d HugePages_Surp: %5u\n",
  2454. nid, h->nr_huge_pages_node[nid],
  2455. nid, h->free_huge_pages_node[nid],
  2456. nid, h->surplus_huge_pages_node[nid]);
  2457. }
  2458. void hugetlb_show_meminfo(void)
  2459. {
  2460. struct hstate *h;
  2461. int nid;
  2462. if (!hugepages_supported())
  2463. return;
  2464. for_each_node_state(nid, N_MEMORY)
  2465. for_each_hstate(h)
  2466. pr_info("Node %d hugepages_total=%u hugepages_free=%u hugepages_surp=%u hugepages_size=%lukB\n",
  2467. nid,
  2468. h->nr_huge_pages_node[nid],
  2469. h->free_huge_pages_node[nid],
  2470. h->surplus_huge_pages_node[nid],
  2471. 1UL << (huge_page_order(h) + PAGE_SHIFT - 10));
  2472. }
  2473. void hugetlb_report_usage(struct seq_file *m, struct mm_struct *mm)
  2474. {
  2475. seq_printf(m, "HugetlbPages:\t%8lu kB\n",
  2476. atomic_long_read(&mm->hugetlb_usage) << (PAGE_SHIFT - 10));
  2477. }
  2478. /* Return the number pages of memory we physically have, in PAGE_SIZE units. */
  2479. unsigned long hugetlb_total_pages(void)
  2480. {
  2481. struct hstate *h;
  2482. unsigned long nr_total_pages = 0;
  2483. for_each_hstate(h)
  2484. nr_total_pages += h->nr_huge_pages * pages_per_huge_page(h);
  2485. return nr_total_pages;
  2486. }
  2487. static int hugetlb_acct_memory(struct hstate *h, long delta)
  2488. {
  2489. int ret = -ENOMEM;
  2490. spin_lock(&hugetlb_lock);
  2491. /*
  2492. * When cpuset is configured, it breaks the strict hugetlb page
  2493. * reservation as the accounting is done on a global variable. Such
  2494. * reservation is completely rubbish in the presence of cpuset because
  2495. * the reservation is not checked against page availability for the
  2496. * current cpuset. Application can still potentially OOM'ed by kernel
  2497. * with lack of free htlb page in cpuset that the task is in.
  2498. * Attempt to enforce strict accounting with cpuset is almost
  2499. * impossible (or too ugly) because cpuset is too fluid that
  2500. * task or memory node can be dynamically moved between cpusets.
  2501. *
  2502. * The change of semantics for shared hugetlb mapping with cpuset is
  2503. * undesirable. However, in order to preserve some of the semantics,
  2504. * we fall back to check against current free page availability as
  2505. * a best attempt and hopefully to minimize the impact of changing
  2506. * semantics that cpuset has.
  2507. */
  2508. if (delta > 0) {
  2509. if (gather_surplus_pages(h, delta) < 0)
  2510. goto out;
  2511. if (delta > cpuset_mems_nr(h->free_huge_pages_node)) {
  2512. return_unused_surplus_pages(h, delta);
  2513. goto out;
  2514. }
  2515. }
  2516. ret = 0;
  2517. if (delta < 0)
  2518. return_unused_surplus_pages(h, (unsigned long) -delta);
  2519. out:
  2520. spin_unlock(&hugetlb_lock);
  2521. return ret;
  2522. }
  2523. static void hugetlb_vm_op_open(struct vm_area_struct *vma)
  2524. {
  2525. struct resv_map *resv = vma_resv_map(vma);
  2526. /*
  2527. * This new VMA should share its siblings reservation map if present.
  2528. * The VMA will only ever have a valid reservation map pointer where
  2529. * it is being copied for another still existing VMA. As that VMA
  2530. * has a reference to the reservation map it cannot disappear until
  2531. * after this open call completes. It is therefore safe to take a
  2532. * new reference here without additional locking.
  2533. */
  2534. if (resv && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
  2535. kref_get(&resv->refs);
  2536. }
  2537. static void hugetlb_vm_op_close(struct vm_area_struct *vma)
  2538. {
  2539. struct hstate *h = hstate_vma(vma);
  2540. struct resv_map *resv = vma_resv_map(vma);
  2541. struct hugepage_subpool *spool = subpool_vma(vma);
  2542. unsigned long reserve, start, end;
  2543. long gbl_reserve;
  2544. if (!resv || !is_vma_resv_set(vma, HPAGE_RESV_OWNER))
  2545. return;
  2546. start = vma_hugecache_offset(h, vma, vma->vm_start);
  2547. end = vma_hugecache_offset(h, vma, vma->vm_end);
  2548. reserve = (end - start) - region_count(resv, start, end);
  2549. kref_put(&resv->refs, resv_map_release);
  2550. if (reserve) {
  2551. /*
  2552. * Decrement reserve counts. The global reserve count may be
  2553. * adjusted if the subpool has a minimum size.
  2554. */
  2555. gbl_reserve = hugepage_subpool_put_pages(spool, reserve);
  2556. hugetlb_acct_memory(h, -gbl_reserve);
  2557. }
  2558. }
  2559. /*
  2560. * We cannot handle pagefaults against hugetlb pages at all. They cause
  2561. * handle_mm_fault() to try to instantiate regular-sized pages in the
  2562. * hugegpage VMA. do_page_fault() is supposed to trap this, so BUG is we get
  2563. * this far.
  2564. */
  2565. static int hugetlb_vm_op_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
  2566. {
  2567. BUG();
  2568. return 0;
  2569. }
  2570. const struct vm_operations_struct hugetlb_vm_ops = {
  2571. .fault = hugetlb_vm_op_fault,
  2572. .open = hugetlb_vm_op_open,
  2573. .close = hugetlb_vm_op_close,
  2574. };
  2575. static pte_t make_huge_pte(struct vm_area_struct *vma, struct page *page,
  2576. int writable)
  2577. {
  2578. pte_t entry;
  2579. if (writable) {
  2580. entry = huge_pte_mkwrite(huge_pte_mkdirty(mk_huge_pte(page,
  2581. vma->vm_page_prot)));
  2582. } else {
  2583. entry = huge_pte_wrprotect(mk_huge_pte(page,
  2584. vma->vm_page_prot));
  2585. }
  2586. entry = pte_mkyoung(entry);
  2587. entry = pte_mkhuge(entry);
  2588. entry = arch_make_huge_pte(entry, vma, page, writable);
  2589. return entry;
  2590. }
  2591. static void set_huge_ptep_writable(struct vm_area_struct *vma,
  2592. unsigned long address, pte_t *ptep)
  2593. {
  2594. pte_t entry;
  2595. entry = huge_pte_mkwrite(huge_pte_mkdirty(huge_ptep_get(ptep)));
  2596. if (huge_ptep_set_access_flags(vma, address, ptep, entry, 1))
  2597. update_mmu_cache(vma, address, ptep);
  2598. }
  2599. static int is_hugetlb_entry_migration(pte_t pte)
  2600. {
  2601. swp_entry_t swp;
  2602. if (huge_pte_none(pte) || pte_present(pte))
  2603. return 0;
  2604. swp = pte_to_swp_entry(pte);
  2605. if (non_swap_entry(swp) && is_migration_entry(swp))
  2606. return 1;
  2607. else
  2608. return 0;
  2609. }
  2610. static int is_hugetlb_entry_hwpoisoned(pte_t pte)
  2611. {
  2612. swp_entry_t swp;
  2613. if (huge_pte_none(pte) || pte_present(pte))
  2614. return 0;
  2615. swp = pte_to_swp_entry(pte);
  2616. if (non_swap_entry(swp) && is_hwpoison_entry(swp))
  2617. return 1;
  2618. else
  2619. return 0;
  2620. }
  2621. int copy_hugetlb_page_range(struct mm_struct *dst, struct mm_struct *src,
  2622. struct vm_area_struct *vma)
  2623. {
  2624. pte_t *src_pte, *dst_pte, entry;
  2625. struct page *ptepage;
  2626. unsigned long addr;
  2627. int cow;
  2628. struct hstate *h = hstate_vma(vma);
  2629. unsigned long sz = huge_page_size(h);
  2630. unsigned long mmun_start; /* For mmu_notifiers */
  2631. unsigned long mmun_end; /* For mmu_notifiers */
  2632. int ret = 0;
  2633. cow = (vma->vm_flags & (VM_SHARED | VM_MAYWRITE)) == VM_MAYWRITE;
  2634. mmun_start = vma->vm_start;
  2635. mmun_end = vma->vm_end;
  2636. if (cow)
  2637. mmu_notifier_invalidate_range_start(src, mmun_start, mmun_end);
  2638. for (addr = vma->vm_start; addr < vma->vm_end; addr += sz) {
  2639. spinlock_t *src_ptl, *dst_ptl;
  2640. src_pte = huge_pte_offset(src, addr);
  2641. if (!src_pte)
  2642. continue;
  2643. dst_pte = huge_pte_alloc(dst, addr, sz);
  2644. if (!dst_pte) {
  2645. ret = -ENOMEM;
  2646. break;
  2647. }
  2648. /* If the pagetables are shared don't copy or take references */
  2649. if (dst_pte == src_pte)
  2650. continue;
  2651. dst_ptl = huge_pte_lock(h, dst, dst_pte);
  2652. src_ptl = huge_pte_lockptr(h, src, src_pte);
  2653. spin_lock_nested(src_ptl, SINGLE_DEPTH_NESTING);
  2654. entry = huge_ptep_get(src_pte);
  2655. if (huge_pte_none(entry)) { /* skip none entry */
  2656. ;
  2657. } else if (unlikely(is_hugetlb_entry_migration(entry) ||
  2658. is_hugetlb_entry_hwpoisoned(entry))) {
  2659. swp_entry_t swp_entry = pte_to_swp_entry(entry);
  2660. if (is_write_migration_entry(swp_entry) && cow) {
  2661. /*
  2662. * COW mappings require pages in both
  2663. * parent and child to be set to read.
  2664. */
  2665. make_migration_entry_read(&swp_entry);
  2666. entry = swp_entry_to_pte(swp_entry);
  2667. set_huge_pte_at(src, addr, src_pte, entry);
  2668. }
  2669. set_huge_pte_at(dst, addr, dst_pte, entry);
  2670. } else {
  2671. if (cow) {
  2672. huge_ptep_set_wrprotect(src, addr, src_pte);
  2673. mmu_notifier_invalidate_range(src, mmun_start,
  2674. mmun_end);
  2675. }
  2676. entry = huge_ptep_get(src_pte);
  2677. ptepage = pte_page(entry);
  2678. get_page(ptepage);
  2679. page_dup_rmap(ptepage, true);
  2680. set_huge_pte_at(dst, addr, dst_pte, entry);
  2681. hugetlb_count_add(pages_per_huge_page(h), dst);
  2682. }
  2683. spin_unlock(src_ptl);
  2684. spin_unlock(dst_ptl);
  2685. }
  2686. if (cow)
  2687. mmu_notifier_invalidate_range_end(src, mmun_start, mmun_end);
  2688. return ret;
  2689. }
  2690. void __unmap_hugepage_range(struct mmu_gather *tlb, struct vm_area_struct *vma,
  2691. unsigned long start, unsigned long end,
  2692. struct page *ref_page)
  2693. {
  2694. int force_flush = 0;
  2695. struct mm_struct *mm = vma->vm_mm;
  2696. unsigned long address;
  2697. pte_t *ptep;
  2698. pte_t pte;
  2699. spinlock_t *ptl;
  2700. struct page *page;
  2701. struct hstate *h = hstate_vma(vma);
  2702. unsigned long sz = huge_page_size(h);
  2703. const unsigned long mmun_start = start; /* For mmu_notifiers */
  2704. const unsigned long mmun_end = end; /* For mmu_notifiers */
  2705. WARN_ON(!is_vm_hugetlb_page(vma));
  2706. BUG_ON(start & ~huge_page_mask(h));
  2707. BUG_ON(end & ~huge_page_mask(h));
  2708. tlb_start_vma(tlb, vma);
  2709. mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
  2710. address = start;
  2711. again:
  2712. for (; address < end; address += sz) {
  2713. ptep = huge_pte_offset(mm, address);
  2714. if (!ptep)
  2715. continue;
  2716. ptl = huge_pte_lock(h, mm, ptep);
  2717. if (huge_pmd_unshare(mm, &address, ptep))
  2718. goto unlock;
  2719. pte = huge_ptep_get(ptep);
  2720. if (huge_pte_none(pte))
  2721. goto unlock;
  2722. /*
  2723. * Migrating hugepage or HWPoisoned hugepage is already
  2724. * unmapped and its refcount is dropped, so just clear pte here.
  2725. */
  2726. if (unlikely(!pte_present(pte))) {
  2727. huge_pte_clear(mm, address, ptep);
  2728. goto unlock;
  2729. }
  2730. page = pte_page(pte);
  2731. /*
  2732. * If a reference page is supplied, it is because a specific
  2733. * page is being unmapped, not a range. Ensure the page we
  2734. * are about to unmap is the actual page of interest.
  2735. */
  2736. if (ref_page) {
  2737. if (page != ref_page)
  2738. goto unlock;
  2739. /*
  2740. * Mark the VMA as having unmapped its page so that
  2741. * future faults in this VMA will fail rather than
  2742. * looking like data was lost
  2743. */
  2744. set_vma_resv_flags(vma, HPAGE_RESV_UNMAPPED);
  2745. }
  2746. pte = huge_ptep_get_and_clear(mm, address, ptep);
  2747. tlb_remove_tlb_entry(tlb, ptep, address);
  2748. if (huge_pte_dirty(pte))
  2749. set_page_dirty(page);
  2750. hugetlb_count_sub(pages_per_huge_page(h), mm);
  2751. page_remove_rmap(page, true);
  2752. force_flush = !__tlb_remove_page(tlb, page);
  2753. if (force_flush) {
  2754. address += sz;
  2755. spin_unlock(ptl);
  2756. break;
  2757. }
  2758. /* Bail out after unmapping reference page if supplied */
  2759. if (ref_page) {
  2760. spin_unlock(ptl);
  2761. break;
  2762. }
  2763. unlock:
  2764. spin_unlock(ptl);
  2765. }
  2766. /*
  2767. * mmu_gather ran out of room to batch pages, we break out of
  2768. * the PTE lock to avoid doing the potential expensive TLB invalidate
  2769. * and page-free while holding it.
  2770. */
  2771. if (force_flush) {
  2772. force_flush = 0;
  2773. tlb_flush_mmu(tlb);
  2774. if (address < end && !ref_page)
  2775. goto again;
  2776. }
  2777. mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  2778. tlb_end_vma(tlb, vma);
  2779. }
  2780. void __unmap_hugepage_range_final(struct mmu_gather *tlb,
  2781. struct vm_area_struct *vma, unsigned long start,
  2782. unsigned long end, struct page *ref_page)
  2783. {
  2784. __unmap_hugepage_range(tlb, vma, start, end, ref_page);
  2785. /*
  2786. * Clear this flag so that x86's huge_pmd_share page_table_shareable
  2787. * test will fail on a vma being torn down, and not grab a page table
  2788. * on its way out. We're lucky that the flag has such an appropriate
  2789. * name, and can in fact be safely cleared here. We could clear it
  2790. * before the __unmap_hugepage_range above, but all that's necessary
  2791. * is to clear it before releasing the i_mmap_rwsem. This works
  2792. * because in the context this is called, the VMA is about to be
  2793. * destroyed and the i_mmap_rwsem is held.
  2794. */
  2795. vma->vm_flags &= ~VM_MAYSHARE;
  2796. }
  2797. void unmap_hugepage_range(struct vm_area_struct *vma, unsigned long start,
  2798. unsigned long end, struct page *ref_page)
  2799. {
  2800. struct mm_struct *mm;
  2801. struct mmu_gather tlb;
  2802. mm = vma->vm_mm;
  2803. tlb_gather_mmu(&tlb, mm, start, end);
  2804. __unmap_hugepage_range(&tlb, vma, start, end, ref_page);
  2805. tlb_finish_mmu(&tlb, start, end);
  2806. }
  2807. /*
  2808. * This is called when the original mapper is failing to COW a MAP_PRIVATE
  2809. * mappping it owns the reserve page for. The intention is to unmap the page
  2810. * from other VMAs and let the children be SIGKILLed if they are faulting the
  2811. * same region.
  2812. */
  2813. static void unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
  2814. struct page *page, unsigned long address)
  2815. {
  2816. struct hstate *h = hstate_vma(vma);
  2817. struct vm_area_struct *iter_vma;
  2818. struct address_space *mapping;
  2819. pgoff_t pgoff;
  2820. /*
  2821. * vm_pgoff is in PAGE_SIZE units, hence the different calculation
  2822. * from page cache lookup which is in HPAGE_SIZE units.
  2823. */
  2824. address = address & huge_page_mask(h);
  2825. pgoff = ((address - vma->vm_start) >> PAGE_SHIFT) +
  2826. vma->vm_pgoff;
  2827. mapping = file_inode(vma->vm_file)->i_mapping;
  2828. /*
  2829. * Take the mapping lock for the duration of the table walk. As
  2830. * this mapping should be shared between all the VMAs,
  2831. * __unmap_hugepage_range() is called as the lock is already held
  2832. */
  2833. i_mmap_lock_write(mapping);
  2834. vma_interval_tree_foreach(iter_vma, &mapping->i_mmap, pgoff, pgoff) {
  2835. /* Do not unmap the current VMA */
  2836. if (iter_vma == vma)
  2837. continue;
  2838. /*
  2839. * Shared VMAs have their own reserves and do not affect
  2840. * MAP_PRIVATE accounting but it is possible that a shared
  2841. * VMA is using the same page so check and skip such VMAs.
  2842. */
  2843. if (iter_vma->vm_flags & VM_MAYSHARE)
  2844. continue;
  2845. /*
  2846. * Unmap the page from other VMAs without their own reserves.
  2847. * They get marked to be SIGKILLed if they fault in these
  2848. * areas. This is because a future no-page fault on this VMA
  2849. * could insert a zeroed page instead of the data existing
  2850. * from the time of fork. This would look like data corruption
  2851. */
  2852. if (!is_vma_resv_set(iter_vma, HPAGE_RESV_OWNER))
  2853. unmap_hugepage_range(iter_vma, address,
  2854. address + huge_page_size(h), page);
  2855. }
  2856. i_mmap_unlock_write(mapping);
  2857. }
  2858. /*
  2859. * Hugetlb_cow() should be called with page lock of the original hugepage held.
  2860. * Called with hugetlb_instantiation_mutex held and pte_page locked so we
  2861. * cannot race with other handlers or page migration.
  2862. * Keep the pte_same checks anyway to make transition from the mutex easier.
  2863. */
  2864. static int hugetlb_cow(struct mm_struct *mm, struct vm_area_struct *vma,
  2865. unsigned long address, pte_t *ptep, pte_t pte,
  2866. struct page *pagecache_page, spinlock_t *ptl)
  2867. {
  2868. struct hstate *h = hstate_vma(vma);
  2869. struct page *old_page, *new_page;
  2870. int ret = 0, outside_reserve = 0;
  2871. unsigned long mmun_start; /* For mmu_notifiers */
  2872. unsigned long mmun_end; /* For mmu_notifiers */
  2873. old_page = pte_page(pte);
  2874. retry_avoidcopy:
  2875. /* If no-one else is actually using this page, avoid the copy
  2876. * and just make the page writable */
  2877. if (page_mapcount(old_page) == 1 && PageAnon(old_page)) {
  2878. page_move_anon_rmap(old_page, vma, address);
  2879. set_huge_ptep_writable(vma, address, ptep);
  2880. return 0;
  2881. }
  2882. /*
  2883. * If the process that created a MAP_PRIVATE mapping is about to
  2884. * perform a COW due to a shared page count, attempt to satisfy
  2885. * the allocation without using the existing reserves. The pagecache
  2886. * page is used to determine if the reserve at this address was
  2887. * consumed or not. If reserves were used, a partial faulted mapping
  2888. * at the time of fork() could consume its reserves on COW instead
  2889. * of the full address range.
  2890. */
  2891. if (is_vma_resv_set(vma, HPAGE_RESV_OWNER) &&
  2892. old_page != pagecache_page)
  2893. outside_reserve = 1;
  2894. page_cache_get(old_page);
  2895. /*
  2896. * Drop page table lock as buddy allocator may be called. It will
  2897. * be acquired again before returning to the caller, as expected.
  2898. */
  2899. spin_unlock(ptl);
  2900. new_page = alloc_huge_page(vma, address, outside_reserve);
  2901. if (IS_ERR(new_page)) {
  2902. /*
  2903. * If a process owning a MAP_PRIVATE mapping fails to COW,
  2904. * it is due to references held by a child and an insufficient
  2905. * huge page pool. To guarantee the original mappers
  2906. * reliability, unmap the page from child processes. The child
  2907. * may get SIGKILLed if it later faults.
  2908. */
  2909. if (outside_reserve) {
  2910. page_cache_release(old_page);
  2911. BUG_ON(huge_pte_none(pte));
  2912. unmap_ref_private(mm, vma, old_page, address);
  2913. BUG_ON(huge_pte_none(pte));
  2914. spin_lock(ptl);
  2915. ptep = huge_pte_offset(mm, address & huge_page_mask(h));
  2916. if (likely(ptep &&
  2917. pte_same(huge_ptep_get(ptep), pte)))
  2918. goto retry_avoidcopy;
  2919. /*
  2920. * race occurs while re-acquiring page table
  2921. * lock, and our job is done.
  2922. */
  2923. return 0;
  2924. }
  2925. ret = (PTR_ERR(new_page) == -ENOMEM) ?
  2926. VM_FAULT_OOM : VM_FAULT_SIGBUS;
  2927. goto out_release_old;
  2928. }
  2929. /*
  2930. * When the original hugepage is shared one, it does not have
  2931. * anon_vma prepared.
  2932. */
  2933. if (unlikely(anon_vma_prepare(vma))) {
  2934. ret = VM_FAULT_OOM;
  2935. goto out_release_all;
  2936. }
  2937. copy_user_huge_page(new_page, old_page, address, vma,
  2938. pages_per_huge_page(h));
  2939. __SetPageUptodate(new_page);
  2940. set_page_huge_active(new_page);
  2941. mmun_start = address & huge_page_mask(h);
  2942. mmun_end = mmun_start + huge_page_size(h);
  2943. mmu_notifier_invalidate_range_start(mm, mmun_start, mmun_end);
  2944. /*
  2945. * Retake the page table lock to check for racing updates
  2946. * before the page tables are altered
  2947. */
  2948. spin_lock(ptl);
  2949. ptep = huge_pte_offset(mm, address & huge_page_mask(h));
  2950. if (likely(ptep && pte_same(huge_ptep_get(ptep), pte))) {
  2951. ClearPagePrivate(new_page);
  2952. /* Break COW */
  2953. huge_ptep_clear_flush(vma, address, ptep);
  2954. mmu_notifier_invalidate_range(mm, mmun_start, mmun_end);
  2955. set_huge_pte_at(mm, address, ptep,
  2956. make_huge_pte(vma, new_page, 1));
  2957. page_remove_rmap(old_page, true);
  2958. hugepage_add_new_anon_rmap(new_page, vma, address);
  2959. /* Make the old page be freed below */
  2960. new_page = old_page;
  2961. }
  2962. spin_unlock(ptl);
  2963. mmu_notifier_invalidate_range_end(mm, mmun_start, mmun_end);
  2964. out_release_all:
  2965. page_cache_release(new_page);
  2966. out_release_old:
  2967. page_cache_release(old_page);
  2968. spin_lock(ptl); /* Caller expects lock to be held */
  2969. return ret;
  2970. }
  2971. /* Return the pagecache page at a given address within a VMA */
  2972. static struct page *hugetlbfs_pagecache_page(struct hstate *h,
  2973. struct vm_area_struct *vma, unsigned long address)
  2974. {
  2975. struct address_space *mapping;
  2976. pgoff_t idx;
  2977. mapping = vma->vm_file->f_mapping;
  2978. idx = vma_hugecache_offset(h, vma, address);
  2979. return find_lock_page(mapping, idx);
  2980. }
  2981. /*
  2982. * Return whether there is a pagecache page to back given address within VMA.
  2983. * Caller follow_hugetlb_page() holds page_table_lock so we cannot lock_page.
  2984. */
  2985. static bool hugetlbfs_pagecache_present(struct hstate *h,
  2986. struct vm_area_struct *vma, unsigned long address)
  2987. {
  2988. struct address_space *mapping;
  2989. pgoff_t idx;
  2990. struct page *page;
  2991. mapping = vma->vm_file->f_mapping;
  2992. idx = vma_hugecache_offset(h, vma, address);
  2993. page = find_get_page(mapping, idx);
  2994. if (page)
  2995. put_page(page);
  2996. return page != NULL;
  2997. }
  2998. int huge_add_to_page_cache(struct page *page, struct address_space *mapping,
  2999. pgoff_t idx)
  3000. {
  3001. struct inode *inode = mapping->host;
  3002. struct hstate *h = hstate_inode(inode);
  3003. int err = add_to_page_cache(page, mapping, idx, GFP_KERNEL);
  3004. if (err)
  3005. return err;
  3006. ClearPagePrivate(page);
  3007. spin_lock(&inode->i_lock);
  3008. inode->i_blocks += blocks_per_huge_page(h);
  3009. spin_unlock(&inode->i_lock);
  3010. return 0;
  3011. }
  3012. static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
  3013. struct address_space *mapping, pgoff_t idx,
  3014. unsigned long address, pte_t *ptep, unsigned int flags)
  3015. {
  3016. struct hstate *h = hstate_vma(vma);
  3017. int ret = VM_FAULT_SIGBUS;
  3018. int anon_rmap = 0;
  3019. unsigned long size;
  3020. struct page *page;
  3021. pte_t new_pte;
  3022. spinlock_t *ptl;
  3023. /*
  3024. * Currently, we are forced to kill the process in the event the
  3025. * original mapper has unmapped pages from the child due to a failed
  3026. * COW. Warn that such a situation has occurred as it may not be obvious
  3027. */
  3028. if (is_vma_resv_set(vma, HPAGE_RESV_UNMAPPED)) {
  3029. pr_warn_ratelimited("PID %d killed due to inadequate hugepage pool\n",
  3030. current->pid);
  3031. return ret;
  3032. }
  3033. /*
  3034. * Use page lock to guard against racing truncation
  3035. * before we get page_table_lock.
  3036. */
  3037. retry:
  3038. page = find_lock_page(mapping, idx);
  3039. if (!page) {
  3040. size = i_size_read(mapping->host) >> huge_page_shift(h);
  3041. if (idx >= size)
  3042. goto out;
  3043. page = alloc_huge_page(vma, address, 0);
  3044. if (IS_ERR(page)) {
  3045. ret = PTR_ERR(page);
  3046. if (ret == -ENOMEM)
  3047. ret = VM_FAULT_OOM;
  3048. else
  3049. ret = VM_FAULT_SIGBUS;
  3050. goto out;
  3051. }
  3052. clear_huge_page(page, address, pages_per_huge_page(h));
  3053. __SetPageUptodate(page);
  3054. set_page_huge_active(page);
  3055. if (vma->vm_flags & VM_MAYSHARE) {
  3056. int err = huge_add_to_page_cache(page, mapping, idx);
  3057. if (err) {
  3058. put_page(page);
  3059. if (err == -EEXIST)
  3060. goto retry;
  3061. goto out;
  3062. }
  3063. } else {
  3064. lock_page(page);
  3065. if (unlikely(anon_vma_prepare(vma))) {
  3066. ret = VM_FAULT_OOM;
  3067. goto backout_unlocked;
  3068. }
  3069. anon_rmap = 1;
  3070. }
  3071. } else {
  3072. /*
  3073. * If memory error occurs between mmap() and fault, some process
  3074. * don't have hwpoisoned swap entry for errored virtual address.
  3075. * So we need to block hugepage fault by PG_hwpoison bit check.
  3076. */
  3077. if (unlikely(PageHWPoison(page))) {
  3078. ret = VM_FAULT_HWPOISON |
  3079. VM_FAULT_SET_HINDEX(hstate_index(h));
  3080. goto backout_unlocked;
  3081. }
  3082. }
  3083. /*
  3084. * If we are going to COW a private mapping later, we examine the
  3085. * pending reservations for this page now. This will ensure that
  3086. * any allocations necessary to record that reservation occur outside
  3087. * the spinlock.
  3088. */
  3089. if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
  3090. if (vma_needs_reservation(h, vma, address) < 0) {
  3091. ret = VM_FAULT_OOM;
  3092. goto backout_unlocked;
  3093. }
  3094. /* Just decrements count, does not deallocate */
  3095. vma_end_reservation(h, vma, address);
  3096. }
  3097. ptl = huge_pte_lockptr(h, mm, ptep);
  3098. spin_lock(ptl);
  3099. size = i_size_read(mapping->host) >> huge_page_shift(h);
  3100. if (idx >= size)
  3101. goto backout;
  3102. ret = 0;
  3103. if (!huge_pte_none(huge_ptep_get(ptep)))
  3104. goto backout;
  3105. if (anon_rmap) {
  3106. ClearPagePrivate(page);
  3107. hugepage_add_new_anon_rmap(page, vma, address);
  3108. } else
  3109. page_dup_rmap(page, true);
  3110. new_pte = make_huge_pte(vma, page, ((vma->vm_flags & VM_WRITE)
  3111. && (vma->vm_flags & VM_SHARED)));
  3112. set_huge_pte_at(mm, address, ptep, new_pte);
  3113. hugetlb_count_add(pages_per_huge_page(h), mm);
  3114. if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
  3115. /* Optimization, do the COW without a second fault */
  3116. ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page, ptl);
  3117. }
  3118. spin_unlock(ptl);
  3119. unlock_page(page);
  3120. out:
  3121. return ret;
  3122. backout:
  3123. spin_unlock(ptl);
  3124. backout_unlocked:
  3125. unlock_page(page);
  3126. put_page(page);
  3127. goto out;
  3128. }
  3129. #ifdef CONFIG_SMP
  3130. u32 hugetlb_fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
  3131. struct vm_area_struct *vma,
  3132. struct address_space *mapping,
  3133. pgoff_t idx, unsigned long address)
  3134. {
  3135. unsigned long key[2];
  3136. u32 hash;
  3137. if (vma->vm_flags & VM_SHARED) {
  3138. key[0] = (unsigned long) mapping;
  3139. key[1] = idx;
  3140. } else {
  3141. key[0] = (unsigned long) mm;
  3142. key[1] = address >> huge_page_shift(h);
  3143. }
  3144. hash = jhash2((u32 *)&key, sizeof(key)/sizeof(u32), 0);
  3145. return hash & (num_fault_mutexes - 1);
  3146. }
  3147. #else
  3148. /*
  3149. * For uniprocesor systems we always use a single mutex, so just
  3150. * return 0 and avoid the hashing overhead.
  3151. */
  3152. u32 hugetlb_fault_mutex_hash(struct hstate *h, struct mm_struct *mm,
  3153. struct vm_area_struct *vma,
  3154. struct address_space *mapping,
  3155. pgoff_t idx, unsigned long address)
  3156. {
  3157. return 0;
  3158. }
  3159. #endif
  3160. int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  3161. unsigned long address, unsigned int flags)
  3162. {
  3163. pte_t *ptep, entry;
  3164. spinlock_t *ptl;
  3165. int ret;
  3166. u32 hash;
  3167. pgoff_t idx;
  3168. struct page *page = NULL;
  3169. struct page *pagecache_page = NULL;
  3170. struct hstate *h = hstate_vma(vma);
  3171. struct address_space *mapping;
  3172. int need_wait_lock = 0;
  3173. address &= huge_page_mask(h);
  3174. ptep = huge_pte_offset(mm, address);
  3175. if (ptep) {
  3176. entry = huge_ptep_get(ptep);
  3177. if (unlikely(is_hugetlb_entry_migration(entry))) {
  3178. migration_entry_wait_huge(vma, mm, ptep);
  3179. return 0;
  3180. } else if (unlikely(is_hugetlb_entry_hwpoisoned(entry)))
  3181. return VM_FAULT_HWPOISON_LARGE |
  3182. VM_FAULT_SET_HINDEX(hstate_index(h));
  3183. } else {
  3184. ptep = huge_pte_alloc(mm, address, huge_page_size(h));
  3185. if (!ptep)
  3186. return VM_FAULT_OOM;
  3187. }
  3188. mapping = vma->vm_file->f_mapping;
  3189. idx = vma_hugecache_offset(h, vma, address);
  3190. /*
  3191. * Serialize hugepage allocation and instantiation, so that we don't
  3192. * get spurious allocation failures if two CPUs race to instantiate
  3193. * the same page in the page cache.
  3194. */
  3195. hash = hugetlb_fault_mutex_hash(h, mm, vma, mapping, idx, address);
  3196. mutex_lock(&hugetlb_fault_mutex_table[hash]);
  3197. entry = huge_ptep_get(ptep);
  3198. if (huge_pte_none(entry)) {
  3199. ret = hugetlb_no_page(mm, vma, mapping, idx, address, ptep, flags);
  3200. goto out_mutex;
  3201. }
  3202. ret = 0;
  3203. /*
  3204. * entry could be a migration/hwpoison entry at this point, so this
  3205. * check prevents the kernel from going below assuming that we have
  3206. * a active hugepage in pagecache. This goto expects the 2nd page fault,
  3207. * and is_hugetlb_entry_(migration|hwpoisoned) check will properly
  3208. * handle it.
  3209. */
  3210. if (!pte_present(entry))
  3211. goto out_mutex;
  3212. /*
  3213. * If we are going to COW the mapping later, we examine the pending
  3214. * reservations for this page now. This will ensure that any
  3215. * allocations necessary to record that reservation occur outside the
  3216. * spinlock. For private mappings, we also lookup the pagecache
  3217. * page now as it is used to determine if a reservation has been
  3218. * consumed.
  3219. */
  3220. if ((flags & FAULT_FLAG_WRITE) && !huge_pte_write(entry)) {
  3221. if (vma_needs_reservation(h, vma, address) < 0) {
  3222. ret = VM_FAULT_OOM;
  3223. goto out_mutex;
  3224. }
  3225. /* Just decrements count, does not deallocate */
  3226. vma_end_reservation(h, vma, address);
  3227. if (!(vma->vm_flags & VM_MAYSHARE))
  3228. pagecache_page = hugetlbfs_pagecache_page(h,
  3229. vma, address);
  3230. }
  3231. ptl = huge_pte_lock(h, mm, ptep);
  3232. /* Check for a racing update before calling hugetlb_cow */
  3233. if (unlikely(!pte_same(entry, huge_ptep_get(ptep))))
  3234. goto out_ptl;
  3235. /*
  3236. * hugetlb_cow() requires page locks of pte_page(entry) and
  3237. * pagecache_page, so here we need take the former one
  3238. * when page != pagecache_page or !pagecache_page.
  3239. */
  3240. page = pte_page(entry);
  3241. if (page != pagecache_page)
  3242. if (!trylock_page(page)) {
  3243. need_wait_lock = 1;
  3244. goto out_ptl;
  3245. }
  3246. get_page(page);
  3247. if (flags & FAULT_FLAG_WRITE) {
  3248. if (!huge_pte_write(entry)) {
  3249. ret = hugetlb_cow(mm, vma, address, ptep, entry,
  3250. pagecache_page, ptl);
  3251. goto out_put_page;
  3252. }
  3253. entry = huge_pte_mkdirty(entry);
  3254. }
  3255. entry = pte_mkyoung(entry);
  3256. if (huge_ptep_set_access_flags(vma, address, ptep, entry,
  3257. flags & FAULT_FLAG_WRITE))
  3258. update_mmu_cache(vma, address, ptep);
  3259. out_put_page:
  3260. if (page != pagecache_page)
  3261. unlock_page(page);
  3262. put_page(page);
  3263. out_ptl:
  3264. spin_unlock(ptl);
  3265. if (pagecache_page) {
  3266. unlock_page(pagecache_page);
  3267. put_page(pagecache_page);
  3268. }
  3269. out_mutex:
  3270. mutex_unlock(&hugetlb_fault_mutex_table[hash]);
  3271. /*
  3272. * Generally it's safe to hold refcount during waiting page lock. But
  3273. * here we just wait to defer the next page fault to avoid busy loop and
  3274. * the page is not used after unlocked before returning from the current
  3275. * page fault. So we are safe from accessing freed page, even if we wait
  3276. * here without taking refcount.
  3277. */
  3278. if (need_wait_lock)
  3279. wait_on_page_locked(page);
  3280. return ret;
  3281. }
  3282. long follow_hugetlb_page(struct mm_struct *mm, struct vm_area_struct *vma,
  3283. struct page **pages, struct vm_area_struct **vmas,
  3284. unsigned long *position, unsigned long *nr_pages,
  3285. long i, unsigned int flags)
  3286. {
  3287. unsigned long pfn_offset;
  3288. unsigned long vaddr = *position;
  3289. unsigned long remainder = *nr_pages;
  3290. struct hstate *h = hstate_vma(vma);
  3291. while (vaddr < vma->vm_end && remainder) {
  3292. pte_t *pte;
  3293. spinlock_t *ptl = NULL;
  3294. int absent;
  3295. struct page *page;
  3296. /*
  3297. * If we have a pending SIGKILL, don't keep faulting pages and
  3298. * potentially allocating memory.
  3299. */
  3300. if (unlikely(fatal_signal_pending(current))) {
  3301. remainder = 0;
  3302. break;
  3303. }
  3304. /*
  3305. * Some archs (sparc64, sh*) have multiple pte_ts to
  3306. * each hugepage. We have to make sure we get the
  3307. * first, for the page indexing below to work.
  3308. *
  3309. * Note that page table lock is not held when pte is null.
  3310. */
  3311. pte = huge_pte_offset(mm, vaddr & huge_page_mask(h));
  3312. if (pte)
  3313. ptl = huge_pte_lock(h, mm, pte);
  3314. absent = !pte || huge_pte_none(huge_ptep_get(pte));
  3315. /*
  3316. * When coredumping, it suits get_dump_page if we just return
  3317. * an error where there's an empty slot with no huge pagecache
  3318. * to back it. This way, we avoid allocating a hugepage, and
  3319. * the sparse dumpfile avoids allocating disk blocks, but its
  3320. * huge holes still show up with zeroes where they need to be.
  3321. */
  3322. if (absent && (flags & FOLL_DUMP) &&
  3323. !hugetlbfs_pagecache_present(h, vma, vaddr)) {
  3324. if (pte)
  3325. spin_unlock(ptl);
  3326. remainder = 0;
  3327. break;
  3328. }
  3329. /*
  3330. * We need call hugetlb_fault for both hugepages under migration
  3331. * (in which case hugetlb_fault waits for the migration,) and
  3332. * hwpoisoned hugepages (in which case we need to prevent the
  3333. * caller from accessing to them.) In order to do this, we use
  3334. * here is_swap_pte instead of is_hugetlb_entry_migration and
  3335. * is_hugetlb_entry_hwpoisoned. This is because it simply covers
  3336. * both cases, and because we can't follow correct pages
  3337. * directly from any kind of swap entries.
  3338. */
  3339. if (absent || is_swap_pte(huge_ptep_get(pte)) ||
  3340. ((flags & FOLL_WRITE) &&
  3341. !huge_pte_write(huge_ptep_get(pte)))) {
  3342. int ret;
  3343. if (pte)
  3344. spin_unlock(ptl);
  3345. ret = hugetlb_fault(mm, vma, vaddr,
  3346. (flags & FOLL_WRITE) ? FAULT_FLAG_WRITE : 0);
  3347. if (!(ret & VM_FAULT_ERROR))
  3348. continue;
  3349. remainder = 0;
  3350. break;
  3351. }
  3352. pfn_offset = (vaddr & ~huge_page_mask(h)) >> PAGE_SHIFT;
  3353. page = pte_page(huge_ptep_get(pte));
  3354. same_page:
  3355. if (pages) {
  3356. pages[i] = mem_map_offset(page, pfn_offset);
  3357. get_page(pages[i]);
  3358. }
  3359. if (vmas)
  3360. vmas[i] = vma;
  3361. vaddr += PAGE_SIZE;
  3362. ++pfn_offset;
  3363. --remainder;
  3364. ++i;
  3365. if (vaddr < vma->vm_end && remainder &&
  3366. pfn_offset < pages_per_huge_page(h)) {
  3367. /*
  3368. * We use pfn_offset to avoid touching the pageframes
  3369. * of this compound page.
  3370. */
  3371. goto same_page;
  3372. }
  3373. spin_unlock(ptl);
  3374. }
  3375. *nr_pages = remainder;
  3376. *position = vaddr;
  3377. return i ? i : -EFAULT;
  3378. }
  3379. unsigned long hugetlb_change_protection(struct vm_area_struct *vma,
  3380. unsigned long address, unsigned long end, pgprot_t newprot)
  3381. {
  3382. struct mm_struct *mm = vma->vm_mm;
  3383. unsigned long start = address;
  3384. pte_t *ptep;
  3385. pte_t pte;
  3386. struct hstate *h = hstate_vma(vma);
  3387. unsigned long pages = 0;
  3388. BUG_ON(address >= end);
  3389. flush_cache_range(vma, address, end);
  3390. mmu_notifier_invalidate_range_start(mm, start, end);
  3391. i_mmap_lock_write(vma->vm_file->f_mapping);
  3392. for (; address < end; address += huge_page_size(h)) {
  3393. spinlock_t *ptl;
  3394. ptep = huge_pte_offset(mm, address);
  3395. if (!ptep)
  3396. continue;
  3397. ptl = huge_pte_lock(h, mm, ptep);
  3398. if (huge_pmd_unshare(mm, &address, ptep)) {
  3399. pages++;
  3400. spin_unlock(ptl);
  3401. continue;
  3402. }
  3403. pte = huge_ptep_get(ptep);
  3404. if (unlikely(is_hugetlb_entry_hwpoisoned(pte))) {
  3405. spin_unlock(ptl);
  3406. continue;
  3407. }
  3408. if (unlikely(is_hugetlb_entry_migration(pte))) {
  3409. swp_entry_t entry = pte_to_swp_entry(pte);
  3410. if (is_write_migration_entry(entry)) {
  3411. pte_t newpte;
  3412. make_migration_entry_read(&entry);
  3413. newpte = swp_entry_to_pte(entry);
  3414. set_huge_pte_at(mm, address, ptep, newpte);
  3415. pages++;
  3416. }
  3417. spin_unlock(ptl);
  3418. continue;
  3419. }
  3420. if (!huge_pte_none(pte)) {
  3421. pte = huge_ptep_get_and_clear(mm, address, ptep);
  3422. pte = pte_mkhuge(huge_pte_modify(pte, newprot));
  3423. pte = arch_make_huge_pte(pte, vma, NULL, 0);
  3424. set_huge_pte_at(mm, address, ptep, pte);
  3425. pages++;
  3426. }
  3427. spin_unlock(ptl);
  3428. }
  3429. /*
  3430. * Must flush TLB before releasing i_mmap_rwsem: x86's huge_pmd_unshare
  3431. * may have cleared our pud entry and done put_page on the page table:
  3432. * once we release i_mmap_rwsem, another task can do the final put_page
  3433. * and that page table be reused and filled with junk.
  3434. */
  3435. flush_tlb_range(vma, start, end);
  3436. mmu_notifier_invalidate_range(mm, start, end);
  3437. i_mmap_unlock_write(vma->vm_file->f_mapping);
  3438. mmu_notifier_invalidate_range_end(mm, start, end);
  3439. return pages << h->order;
  3440. }
  3441. int hugetlb_reserve_pages(struct inode *inode,
  3442. long from, long to,
  3443. struct vm_area_struct *vma,
  3444. vm_flags_t vm_flags)
  3445. {
  3446. long ret, chg;
  3447. struct hstate *h = hstate_inode(inode);
  3448. struct hugepage_subpool *spool = subpool_inode(inode);
  3449. struct resv_map *resv_map;
  3450. long gbl_reserve;
  3451. /*
  3452. * Only apply hugepage reservation if asked. At fault time, an
  3453. * attempt will be made for VM_NORESERVE to allocate a page
  3454. * without using reserves
  3455. */
  3456. if (vm_flags & VM_NORESERVE)
  3457. return 0;
  3458. /*
  3459. * Shared mappings base their reservation on the number of pages that
  3460. * are already allocated on behalf of the file. Private mappings need
  3461. * to reserve the full area even if read-only as mprotect() may be
  3462. * called to make the mapping read-write. Assume !vma is a shm mapping
  3463. */
  3464. if (!vma || vma->vm_flags & VM_MAYSHARE) {
  3465. resv_map = inode_resv_map(inode);
  3466. chg = region_chg(resv_map, from, to);
  3467. } else {
  3468. resv_map = resv_map_alloc();
  3469. if (!resv_map)
  3470. return -ENOMEM;
  3471. chg = to - from;
  3472. set_vma_resv_map(vma, resv_map);
  3473. set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
  3474. }
  3475. if (chg < 0) {
  3476. ret = chg;
  3477. goto out_err;
  3478. }
  3479. /*
  3480. * There must be enough pages in the subpool for the mapping. If
  3481. * the subpool has a minimum size, there may be some global
  3482. * reservations already in place (gbl_reserve).
  3483. */
  3484. gbl_reserve = hugepage_subpool_get_pages(spool, chg);
  3485. if (gbl_reserve < 0) {
  3486. ret = -ENOSPC;
  3487. goto out_err;
  3488. }
  3489. /*
  3490. * Check enough hugepages are available for the reservation.
  3491. * Hand the pages back to the subpool if there are not
  3492. */
  3493. ret = hugetlb_acct_memory(h, gbl_reserve);
  3494. if (ret < 0) {
  3495. /* put back original number of pages, chg */
  3496. (void)hugepage_subpool_put_pages(spool, chg);
  3497. goto out_err;
  3498. }
  3499. /*
  3500. * Account for the reservations made. Shared mappings record regions
  3501. * that have reservations as they are shared by multiple VMAs.
  3502. * When the last VMA disappears, the region map says how much
  3503. * the reservation was and the page cache tells how much of
  3504. * the reservation was consumed. Private mappings are per-VMA and
  3505. * only the consumed reservations are tracked. When the VMA
  3506. * disappears, the original reservation is the VMA size and the
  3507. * consumed reservations are stored in the map. Hence, nothing
  3508. * else has to be done for private mappings here
  3509. */
  3510. if (!vma || vma->vm_flags & VM_MAYSHARE) {
  3511. long add = region_add(resv_map, from, to);
  3512. if (unlikely(chg > add)) {
  3513. /*
  3514. * pages in this range were added to the reserve
  3515. * map between region_chg and region_add. This
  3516. * indicates a race with alloc_huge_page. Adjust
  3517. * the subpool and reserve counts modified above
  3518. * based on the difference.
  3519. */
  3520. long rsv_adjust;
  3521. rsv_adjust = hugepage_subpool_put_pages(spool,
  3522. chg - add);
  3523. hugetlb_acct_memory(h, -rsv_adjust);
  3524. }
  3525. }
  3526. return 0;
  3527. out_err:
  3528. if (!vma || vma->vm_flags & VM_MAYSHARE)
  3529. region_abort(resv_map, from, to);
  3530. if (vma && is_vma_resv_set(vma, HPAGE_RESV_OWNER))
  3531. kref_put(&resv_map->refs, resv_map_release);
  3532. return ret;
  3533. }
  3534. long hugetlb_unreserve_pages(struct inode *inode, long start, long end,
  3535. long freed)
  3536. {
  3537. struct hstate *h = hstate_inode(inode);
  3538. struct resv_map *resv_map = inode_resv_map(inode);
  3539. long chg = 0;
  3540. struct hugepage_subpool *spool = subpool_inode(inode);
  3541. long gbl_reserve;
  3542. if (resv_map) {
  3543. chg = region_del(resv_map, start, end);
  3544. /*
  3545. * region_del() can fail in the rare case where a region
  3546. * must be split and another region descriptor can not be
  3547. * allocated. If end == LONG_MAX, it will not fail.
  3548. */
  3549. if (chg < 0)
  3550. return chg;
  3551. }
  3552. spin_lock(&inode->i_lock);
  3553. inode->i_blocks -= (blocks_per_huge_page(h) * freed);
  3554. spin_unlock(&inode->i_lock);
  3555. /*
  3556. * If the subpool has a minimum size, the number of global
  3557. * reservations to be released may be adjusted.
  3558. */
  3559. gbl_reserve = hugepage_subpool_put_pages(spool, (chg - freed));
  3560. hugetlb_acct_memory(h, -gbl_reserve);
  3561. return 0;
  3562. }
  3563. #ifdef CONFIG_ARCH_WANT_HUGE_PMD_SHARE
  3564. static unsigned long page_table_shareable(struct vm_area_struct *svma,
  3565. struct vm_area_struct *vma,
  3566. unsigned long addr, pgoff_t idx)
  3567. {
  3568. unsigned long saddr = ((idx - svma->vm_pgoff) << PAGE_SHIFT) +
  3569. svma->vm_start;
  3570. unsigned long sbase = saddr & PUD_MASK;
  3571. unsigned long s_end = sbase + PUD_SIZE;
  3572. /* Allow segments to share if only one is marked locked */
  3573. unsigned long vm_flags = vma->vm_flags & VM_LOCKED_CLEAR_MASK;
  3574. unsigned long svm_flags = svma->vm_flags & VM_LOCKED_CLEAR_MASK;
  3575. /*
  3576. * match the virtual addresses, permission and the alignment of the
  3577. * page table page.
  3578. */
  3579. if (pmd_index(addr) != pmd_index(saddr) ||
  3580. vm_flags != svm_flags ||
  3581. sbase < svma->vm_start || svma->vm_end < s_end)
  3582. return 0;
  3583. return saddr;
  3584. }
  3585. static bool vma_shareable(struct vm_area_struct *vma, unsigned long addr)
  3586. {
  3587. unsigned long base = addr & PUD_MASK;
  3588. unsigned long end = base + PUD_SIZE;
  3589. /*
  3590. * check on proper vm_flags and page table alignment
  3591. */
  3592. if (vma->vm_flags & VM_MAYSHARE &&
  3593. vma->vm_start <= base && end <= vma->vm_end)
  3594. return true;
  3595. return false;
  3596. }
  3597. /*
  3598. * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc()
  3599. * and returns the corresponding pte. While this is not necessary for the
  3600. * !shared pmd case because we can allocate the pmd later as well, it makes the
  3601. * code much cleaner. pmd allocation is essential for the shared case because
  3602. * pud has to be populated inside the same i_mmap_rwsem section - otherwise
  3603. * racing tasks could either miss the sharing (see huge_pte_offset) or select a
  3604. * bad pmd for sharing.
  3605. */
  3606. pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
  3607. {
  3608. struct vm_area_struct *vma = find_vma(mm, addr);
  3609. struct address_space *mapping = vma->vm_file->f_mapping;
  3610. pgoff_t idx = ((addr - vma->vm_start) >> PAGE_SHIFT) +
  3611. vma->vm_pgoff;
  3612. struct vm_area_struct *svma;
  3613. unsigned long saddr;
  3614. pte_t *spte = NULL;
  3615. pte_t *pte;
  3616. spinlock_t *ptl;
  3617. if (!vma_shareable(vma, addr))
  3618. return (pte_t *)pmd_alloc(mm, pud, addr);
  3619. i_mmap_lock_write(mapping);
  3620. vma_interval_tree_foreach(svma, &mapping->i_mmap, idx, idx) {
  3621. if (svma == vma)
  3622. continue;
  3623. saddr = page_table_shareable(svma, vma, addr, idx);
  3624. if (saddr) {
  3625. spte = huge_pte_offset(svma->vm_mm, saddr);
  3626. if (spte) {
  3627. mm_inc_nr_pmds(mm);
  3628. get_page(virt_to_page(spte));
  3629. break;
  3630. }
  3631. }
  3632. }
  3633. if (!spte)
  3634. goto out;
  3635. ptl = huge_pte_lockptr(hstate_vma(vma), mm, spte);
  3636. spin_lock(ptl);
  3637. if (pud_none(*pud)) {
  3638. pud_populate(mm, pud,
  3639. (pmd_t *)((unsigned long)spte & PAGE_MASK));
  3640. } else {
  3641. put_page(virt_to_page(spte));
  3642. mm_inc_nr_pmds(mm);
  3643. }
  3644. spin_unlock(ptl);
  3645. out:
  3646. pte = (pte_t *)pmd_alloc(mm, pud, addr);
  3647. i_mmap_unlock_write(mapping);
  3648. return pte;
  3649. }
  3650. /*
  3651. * unmap huge page backed by shared pte.
  3652. *
  3653. * Hugetlb pte page is ref counted at the time of mapping. If pte is shared
  3654. * indicated by page_count > 1, unmap is achieved by clearing pud and
  3655. * decrementing the ref count. If count == 1, the pte page is not shared.
  3656. *
  3657. * called with page table lock held.
  3658. *
  3659. * returns: 1 successfully unmapped a shared pte page
  3660. * 0 the underlying pte page is not shared, or it is the last user
  3661. */
  3662. int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
  3663. {
  3664. pgd_t *pgd = pgd_offset(mm, *addr);
  3665. pud_t *pud = pud_offset(pgd, *addr);
  3666. BUG_ON(page_count(virt_to_page(ptep)) == 0);
  3667. if (page_count(virt_to_page(ptep)) == 1)
  3668. return 0;
  3669. pud_clear(pud);
  3670. put_page(virt_to_page(ptep));
  3671. mm_dec_nr_pmds(mm);
  3672. *addr = ALIGN(*addr, HPAGE_SIZE * PTRS_PER_PTE) - HPAGE_SIZE;
  3673. return 1;
  3674. }
  3675. #define want_pmd_share() (1)
  3676. #else /* !CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
  3677. pte_t *huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud)
  3678. {
  3679. return NULL;
  3680. }
  3681. int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep)
  3682. {
  3683. return 0;
  3684. }
  3685. #define want_pmd_share() (0)
  3686. #endif /* CONFIG_ARCH_WANT_HUGE_PMD_SHARE */
  3687. #ifdef CONFIG_ARCH_WANT_GENERAL_HUGETLB
  3688. pte_t *huge_pte_alloc(struct mm_struct *mm,
  3689. unsigned long addr, unsigned long sz)
  3690. {
  3691. pgd_t *pgd;
  3692. pud_t *pud;
  3693. pte_t *pte = NULL;
  3694. pgd = pgd_offset(mm, addr);
  3695. pud = pud_alloc(mm, pgd, addr);
  3696. if (pud) {
  3697. if (sz == PUD_SIZE) {
  3698. pte = (pte_t *)pud;
  3699. } else {
  3700. BUG_ON(sz != PMD_SIZE);
  3701. if (want_pmd_share() && pud_none(*pud))
  3702. pte = huge_pmd_share(mm, addr, pud);
  3703. else
  3704. pte = (pte_t *)pmd_alloc(mm, pud, addr);
  3705. }
  3706. }
  3707. BUG_ON(pte && !pte_none(*pte) && !pte_huge(*pte));
  3708. return pte;
  3709. }
  3710. pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr)
  3711. {
  3712. pgd_t *pgd;
  3713. pud_t *pud;
  3714. pmd_t *pmd = NULL;
  3715. pgd = pgd_offset(mm, addr);
  3716. if (pgd_present(*pgd)) {
  3717. pud = pud_offset(pgd, addr);
  3718. if (pud_present(*pud)) {
  3719. if (pud_huge(*pud))
  3720. return (pte_t *)pud;
  3721. pmd = pmd_offset(pud, addr);
  3722. }
  3723. }
  3724. return (pte_t *) pmd;
  3725. }
  3726. #endif /* CONFIG_ARCH_WANT_GENERAL_HUGETLB */
  3727. /*
  3728. * These functions are overwritable if your architecture needs its own
  3729. * behavior.
  3730. */
  3731. struct page * __weak
  3732. follow_huge_addr(struct mm_struct *mm, unsigned long address,
  3733. int write)
  3734. {
  3735. return ERR_PTR(-EINVAL);
  3736. }
  3737. struct page * __weak
  3738. follow_huge_pmd(struct mm_struct *mm, unsigned long address,
  3739. pmd_t *pmd, int flags)
  3740. {
  3741. struct page *page = NULL;
  3742. spinlock_t *ptl;
  3743. retry:
  3744. ptl = pmd_lockptr(mm, pmd);
  3745. spin_lock(ptl);
  3746. /*
  3747. * make sure that the address range covered by this pmd is not
  3748. * unmapped from other threads.
  3749. */
  3750. if (!pmd_huge(*pmd))
  3751. goto out;
  3752. if (pmd_present(*pmd)) {
  3753. page = pmd_page(*pmd) + ((address & ~PMD_MASK) >> PAGE_SHIFT);
  3754. if (flags & FOLL_GET)
  3755. get_page(page);
  3756. } else {
  3757. if (is_hugetlb_entry_migration(huge_ptep_get((pte_t *)pmd))) {
  3758. spin_unlock(ptl);
  3759. __migration_entry_wait(mm, (pte_t *)pmd, ptl);
  3760. goto retry;
  3761. }
  3762. /*
  3763. * hwpoisoned entry is treated as no_page_table in
  3764. * follow_page_mask().
  3765. */
  3766. }
  3767. out:
  3768. spin_unlock(ptl);
  3769. return page;
  3770. }
  3771. struct page * __weak
  3772. follow_huge_pud(struct mm_struct *mm, unsigned long address,
  3773. pud_t *pud, int flags)
  3774. {
  3775. if (flags & FOLL_GET)
  3776. return NULL;
  3777. return pte_page(*(pte_t *)pud) + ((address & ~PUD_MASK) >> PAGE_SHIFT);
  3778. }
  3779. #ifdef CONFIG_MEMORY_FAILURE
  3780. /*
  3781. * This function is called from memory failure code.
  3782. * Assume the caller holds page lock of the head page.
  3783. */
  3784. int dequeue_hwpoisoned_huge_page(struct page *hpage)
  3785. {
  3786. struct hstate *h = page_hstate(hpage);
  3787. int nid = page_to_nid(hpage);
  3788. int ret = -EBUSY;
  3789. spin_lock(&hugetlb_lock);
  3790. /*
  3791. * Just checking !page_huge_active is not enough, because that could be
  3792. * an isolated/hwpoisoned hugepage (which have >0 refcount).
  3793. */
  3794. if (!page_huge_active(hpage) && !page_count(hpage)) {
  3795. /*
  3796. * Hwpoisoned hugepage isn't linked to activelist or freelist,
  3797. * but dangling hpage->lru can trigger list-debug warnings
  3798. * (this happens when we call unpoison_memory() on it),
  3799. * so let it point to itself with list_del_init().
  3800. */
  3801. list_del_init(&hpage->lru);
  3802. set_page_refcounted(hpage);
  3803. h->free_huge_pages--;
  3804. h->free_huge_pages_node[nid]--;
  3805. ret = 0;
  3806. }
  3807. spin_unlock(&hugetlb_lock);
  3808. return ret;
  3809. }
  3810. #endif
  3811. bool isolate_huge_page(struct page *page, struct list_head *list)
  3812. {
  3813. bool ret = true;
  3814. VM_BUG_ON_PAGE(!PageHead(page), page);
  3815. spin_lock(&hugetlb_lock);
  3816. if (!page_huge_active(page) || !get_page_unless_zero(page)) {
  3817. ret = false;
  3818. goto unlock;
  3819. }
  3820. clear_page_huge_active(page);
  3821. list_move_tail(&page->lru, list);
  3822. unlock:
  3823. spin_unlock(&hugetlb_lock);
  3824. return ret;
  3825. }
  3826. void putback_active_hugepage(struct page *page)
  3827. {
  3828. VM_BUG_ON_PAGE(!PageHead(page), page);
  3829. spin_lock(&hugetlb_lock);
  3830. set_page_huge_active(page);
  3831. list_move_tail(&page->lru, &(page_hstate(page))->hugepage_activelist);
  3832. spin_unlock(&hugetlb_lock);
  3833. put_page(page);
  3834. }