page_alloc.c 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668
  1. /*
  2. * linux/mm/page_alloc.c
  3. *
  4. * Manages the free list, the system allocates free pages here.
  5. * Note that kmalloc() lives in slab.c
  6. *
  7. * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
  8. * Swap reorganised 29.12.95, Stephen Tweedie
  9. * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
  10. * Reshaped it to be a zoned allocator, Ingo Molnar, Red Hat, 1999
  11. * Discontiguous memory support, Kanoj Sarcar, SGI, Nov 1999
  12. * Zone balancing, Kanoj Sarcar, SGI, Jan 2000
  13. * Per cpu hot/cold page lists, bulk allocation, Martin J. Bligh, Sept 2002
  14. * (lots of bits borrowed from Ingo Molnar & Andrew Morton)
  15. */
  16. #include <linux/stddef.h>
  17. #include <linux/mm.h>
  18. #include <linux/swap.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/pagemap.h>
  21. #include <linux/jiffies.h>
  22. #include <linux/bootmem.h>
  23. #include <linux/compiler.h>
  24. #include <linux/kernel.h>
  25. #include <linux/module.h>
  26. #include <linux/suspend.h>
  27. #include <linux/pagevec.h>
  28. #include <linux/blkdev.h>
  29. #include <linux/slab.h>
  30. #include <linux/oom.h>
  31. #include <linux/notifier.h>
  32. #include <linux/topology.h>
  33. #include <linux/sysctl.h>
  34. #include <linux/cpu.h>
  35. #include <linux/cpuset.h>
  36. #include <linux/memory_hotplug.h>
  37. #include <linux/nodemask.h>
  38. #include <linux/vmalloc.h>
  39. #include <linux/mempolicy.h>
  40. #include <linux/stop_machine.h>
  41. #include <linux/sort.h>
  42. #include <linux/pfn.h>
  43. #include <linux/backing-dev.h>
  44. #include <linux/fault-inject.h>
  45. #include <linux/page-isolation.h>
  46. #include <linux/memcontrol.h>
  47. #include <linux/debugobjects.h>
  48. #include <asm/tlbflush.h>
  49. #include <asm/div64.h>
  50. #include "internal.h"
  51. /*
  52. * Array of node states.
  53. */
  54. nodemask_t node_states[NR_NODE_STATES] __read_mostly = {
  55. [N_POSSIBLE] = NODE_MASK_ALL,
  56. [N_ONLINE] = { { [0] = 1UL } },
  57. #ifndef CONFIG_NUMA
  58. [N_NORMAL_MEMORY] = { { [0] = 1UL } },
  59. #ifdef CONFIG_HIGHMEM
  60. [N_HIGH_MEMORY] = { { [0] = 1UL } },
  61. #endif
  62. [N_CPU] = { { [0] = 1UL } },
  63. #endif /* NUMA */
  64. };
  65. EXPORT_SYMBOL(node_states);
  66. unsigned long totalram_pages __read_mostly;
  67. unsigned long totalreserve_pages __read_mostly;
  68. long nr_swap_pages;
  69. int percpu_pagelist_fraction;
  70. #ifdef CONFIG_HUGETLB_PAGE_SIZE_VARIABLE
  71. int pageblock_order __read_mostly;
  72. #endif
  73. static void __free_pages_ok(struct page *page, unsigned int order);
  74. /*
  75. * results with 256, 32 in the lowmem_reserve sysctl:
  76. * 1G machine -> (16M dma, 800M-16M normal, 1G-800M high)
  77. * 1G machine -> (16M dma, 784M normal, 224M high)
  78. * NORMAL allocation will leave 784M/256 of ram reserved in the ZONE_DMA
  79. * HIGHMEM allocation will leave 224M/32 of ram reserved in ZONE_NORMAL
  80. * HIGHMEM allocation will (224M+784M)/256 of ram reserved in ZONE_DMA
  81. *
  82. * TBD: should special case ZONE_DMA32 machines here - in those we normally
  83. * don't need any ZONE_NORMAL reservation
  84. */
  85. int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1] = {
  86. #ifdef CONFIG_ZONE_DMA
  87. 256,
  88. #endif
  89. #ifdef CONFIG_ZONE_DMA32
  90. 256,
  91. #endif
  92. #ifdef CONFIG_HIGHMEM
  93. 32,
  94. #endif
  95. 32,
  96. };
  97. EXPORT_SYMBOL(totalram_pages);
  98. static char * const zone_names[MAX_NR_ZONES] = {
  99. #ifdef CONFIG_ZONE_DMA
  100. "DMA",
  101. #endif
  102. #ifdef CONFIG_ZONE_DMA32
  103. "DMA32",
  104. #endif
  105. "Normal",
  106. #ifdef CONFIG_HIGHMEM
  107. "HighMem",
  108. #endif
  109. "Movable",
  110. };
  111. int min_free_kbytes = 1024;
  112. unsigned long __meminitdata nr_kernel_pages;
  113. unsigned long __meminitdata nr_all_pages;
  114. static unsigned long __meminitdata dma_reserve;
  115. #ifdef CONFIG_ARCH_POPULATES_NODE_MAP
  116. /*
  117. * MAX_ACTIVE_REGIONS determines the maximum number of distinct
  118. * ranges of memory (RAM) that may be registered with add_active_range().
  119. * Ranges passed to add_active_range() will be merged if possible
  120. * so the number of times add_active_range() can be called is
  121. * related to the number of nodes and the number of holes
  122. */
  123. #ifdef CONFIG_MAX_ACTIVE_REGIONS
  124. /* Allow an architecture to set MAX_ACTIVE_REGIONS to save memory */
  125. #define MAX_ACTIVE_REGIONS CONFIG_MAX_ACTIVE_REGIONS
  126. #else
  127. #if MAX_NUMNODES >= 32
  128. /* If there can be many nodes, allow up to 50 holes per node */
  129. #define MAX_ACTIVE_REGIONS (MAX_NUMNODES*50)
  130. #else
  131. /* By default, allow up to 256 distinct regions */
  132. #define MAX_ACTIVE_REGIONS 256
  133. #endif
  134. #endif
  135. static struct node_active_region __meminitdata early_node_map[MAX_ACTIVE_REGIONS];
  136. static int __meminitdata nr_nodemap_entries;
  137. static unsigned long __meminitdata arch_zone_lowest_possible_pfn[MAX_NR_ZONES];
  138. static unsigned long __meminitdata arch_zone_highest_possible_pfn[MAX_NR_ZONES];
  139. #ifdef CONFIG_MEMORY_HOTPLUG_RESERVE
  140. static unsigned long __meminitdata node_boundary_start_pfn[MAX_NUMNODES];
  141. static unsigned long __meminitdata node_boundary_end_pfn[MAX_NUMNODES];
  142. #endif /* CONFIG_MEMORY_HOTPLUG_RESERVE */
  143. static unsigned long __initdata required_kernelcore;
  144. static unsigned long __initdata required_movablecore;
  145. static unsigned long __meminitdata zone_movable_pfn[MAX_NUMNODES];
  146. /* movable_zone is the "real" zone pages in ZONE_MOVABLE are taken from */
  147. int movable_zone;
  148. EXPORT_SYMBOL(movable_zone);
  149. #endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
  150. #if MAX_NUMNODES > 1
  151. int nr_node_ids __read_mostly = MAX_NUMNODES;
  152. EXPORT_SYMBOL(nr_node_ids);
  153. #endif
  154. int page_group_by_mobility_disabled __read_mostly;
  155. static void set_pageblock_migratetype(struct page *page, int migratetype)
  156. {
  157. set_pageblock_flags_group(page, (unsigned long)migratetype,
  158. PB_migrate, PB_migrate_end);
  159. }
  160. #ifdef CONFIG_DEBUG_VM
  161. static int page_outside_zone_boundaries(struct zone *zone, struct page *page)
  162. {
  163. int ret = 0;
  164. unsigned seq;
  165. unsigned long pfn = page_to_pfn(page);
  166. do {
  167. seq = zone_span_seqbegin(zone);
  168. if (pfn >= zone->zone_start_pfn + zone->spanned_pages)
  169. ret = 1;
  170. else if (pfn < zone->zone_start_pfn)
  171. ret = 1;
  172. } while (zone_span_seqretry(zone, seq));
  173. return ret;
  174. }
  175. static int page_is_consistent(struct zone *zone, struct page *page)
  176. {
  177. if (!pfn_valid_within(page_to_pfn(page)))
  178. return 0;
  179. if (zone != page_zone(page))
  180. return 0;
  181. return 1;
  182. }
  183. /*
  184. * Temporary debugging check for pages not lying within a given zone.
  185. */
  186. static int bad_range(struct zone *zone, struct page *page)
  187. {
  188. if (page_outside_zone_boundaries(zone, page))
  189. return 1;
  190. if (!page_is_consistent(zone, page))
  191. return 1;
  192. return 0;
  193. }
  194. #else
  195. static inline int bad_range(struct zone *zone, struct page *page)
  196. {
  197. return 0;
  198. }
  199. #endif
  200. static void bad_page(struct page *page)
  201. {
  202. void *pc = page_get_page_cgroup(page);
  203. printk(KERN_EMERG "Bad page state in process '%s'\n" KERN_EMERG
  204. "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n",
  205. current->comm, page, (int)(2*sizeof(unsigned long)),
  206. (unsigned long)page->flags, page->mapping,
  207. page_mapcount(page), page_count(page));
  208. if (pc) {
  209. printk(KERN_EMERG "cgroup:%p\n", pc);
  210. page_reset_bad_cgroup(page);
  211. }
  212. printk(KERN_EMERG "Trying to fix it up, but a reboot is needed\n"
  213. KERN_EMERG "Backtrace:\n");
  214. dump_stack();
  215. page->flags &= ~PAGE_FLAGS_CLEAR_WHEN_BAD;
  216. set_page_count(page, 0);
  217. reset_page_mapcount(page);
  218. page->mapping = NULL;
  219. add_taint(TAINT_BAD_PAGE);
  220. }
  221. /*
  222. * Higher-order pages are called "compound pages". They are structured thusly:
  223. *
  224. * The first PAGE_SIZE page is called the "head page".
  225. *
  226. * The remaining PAGE_SIZE pages are called "tail pages".
  227. *
  228. * All pages have PG_compound set. All pages have their ->private pointing at
  229. * the head page (even the head page has this).
  230. *
  231. * The first tail page's ->lru.next holds the address of the compound page's
  232. * put_page() function. Its ->lru.prev holds the order of allocation.
  233. * This usage means that zero-order pages may not be compound.
  234. */
  235. static void free_compound_page(struct page *page)
  236. {
  237. __free_pages_ok(page, compound_order(page));
  238. }
  239. void prep_compound_page(struct page *page, unsigned long order)
  240. {
  241. int i;
  242. int nr_pages = 1 << order;
  243. set_compound_page_dtor(page, free_compound_page);
  244. set_compound_order(page, order);
  245. __SetPageHead(page);
  246. for (i = 1; i < nr_pages; i++) {
  247. struct page *p = page + i;
  248. __SetPageTail(p);
  249. p->first_page = page;
  250. }
  251. }
  252. static void destroy_compound_page(struct page *page, unsigned long order)
  253. {
  254. int i;
  255. int nr_pages = 1 << order;
  256. if (unlikely(compound_order(page) != order))
  257. bad_page(page);
  258. if (unlikely(!PageHead(page)))
  259. bad_page(page);
  260. __ClearPageHead(page);
  261. for (i = 1; i < nr_pages; i++) {
  262. struct page *p = page + i;
  263. if (unlikely(!PageTail(p) |
  264. (p->first_page != page)))
  265. bad_page(page);
  266. __ClearPageTail(p);
  267. }
  268. }
  269. static inline void prep_zero_page(struct page *page, int order, gfp_t gfp_flags)
  270. {
  271. int i;
  272. /*
  273. * clear_highpage() will use KM_USER0, so it's a bug to use __GFP_ZERO
  274. * and __GFP_HIGHMEM from hard or soft interrupt context.
  275. */
  276. VM_BUG_ON((gfp_flags & __GFP_HIGHMEM) && in_interrupt());
  277. for (i = 0; i < (1 << order); i++)
  278. clear_highpage(page + i);
  279. }
  280. static inline void set_page_order(struct page *page, int order)
  281. {
  282. set_page_private(page, order);
  283. __SetPageBuddy(page);
  284. }
  285. static inline void rmv_page_order(struct page *page)
  286. {
  287. __ClearPageBuddy(page);
  288. set_page_private(page, 0);
  289. }
  290. /*
  291. * Locate the struct page for both the matching buddy in our
  292. * pair (buddy1) and the combined O(n+1) page they form (page).
  293. *
  294. * 1) Any buddy B1 will have an order O twin B2 which satisfies
  295. * the following equation:
  296. * B2 = B1 ^ (1 << O)
  297. * For example, if the starting buddy (buddy2) is #8 its order
  298. * 1 buddy is #10:
  299. * B2 = 8 ^ (1 << 1) = 8 ^ 2 = 10
  300. *
  301. * 2) Any buddy B will have an order O+1 parent P which
  302. * satisfies the following equation:
  303. * P = B & ~(1 << O)
  304. *
  305. * Assumption: *_mem_map is contiguous at least up to MAX_ORDER
  306. */
  307. static inline struct page *
  308. __page_find_buddy(struct page *page, unsigned long page_idx, unsigned int order)
  309. {
  310. unsigned long buddy_idx = page_idx ^ (1 << order);
  311. return page + (buddy_idx - page_idx);
  312. }
  313. static inline unsigned long
  314. __find_combined_index(unsigned long page_idx, unsigned int order)
  315. {
  316. return (page_idx & ~(1 << order));
  317. }
  318. /*
  319. * This function checks whether a page is free && is the buddy
  320. * we can do coalesce a page and its buddy if
  321. * (a) the buddy is not in a hole &&
  322. * (b) the buddy is in the buddy system &&
  323. * (c) a page and its buddy have the same order &&
  324. * (d) a page and its buddy are in the same zone.
  325. *
  326. * For recording whether a page is in the buddy system, we use PG_buddy.
  327. * Setting, clearing, and testing PG_buddy is serialized by zone->lock.
  328. *
  329. * For recording page's order, we use page_private(page).
  330. */
  331. static inline int page_is_buddy(struct page *page, struct page *buddy,
  332. int order)
  333. {
  334. if (!pfn_valid_within(page_to_pfn(buddy)))
  335. return 0;
  336. if (page_zone_id(page) != page_zone_id(buddy))
  337. return 0;
  338. if (PageBuddy(buddy) && page_order(buddy) == order) {
  339. BUG_ON(page_count(buddy) != 0);
  340. return 1;
  341. }
  342. return 0;
  343. }
  344. /*
  345. * Freeing function for a buddy system allocator.
  346. *
  347. * The concept of a buddy system is to maintain direct-mapped table
  348. * (containing bit values) for memory blocks of various "orders".
  349. * The bottom level table contains the map for the smallest allocatable
  350. * units of memory (here, pages), and each level above it describes
  351. * pairs of units from the levels below, hence, "buddies".
  352. * At a high level, all that happens here is marking the table entry
  353. * at the bottom level available, and propagating the changes upward
  354. * as necessary, plus some accounting needed to play nicely with other
  355. * parts of the VM system.
  356. * At each level, we keep a list of pages, which are heads of continuous
  357. * free pages of length of (1 << order) and marked with PG_buddy. Page's
  358. * order is recorded in page_private(page) field.
  359. * So when we are allocating or freeing one, we can derive the state of the
  360. * other. That is, if we allocate a small block, and both were
  361. * free, the remainder of the region must be split into blocks.
  362. * If a block is freed, and its buddy is also free, then this
  363. * triggers coalescing into a block of larger size.
  364. *
  365. * -- wli
  366. */
  367. static inline void __free_one_page(struct page *page,
  368. struct zone *zone, unsigned int order)
  369. {
  370. unsigned long page_idx;
  371. int order_size = 1 << order;
  372. int migratetype = get_pageblock_migratetype(page);
  373. if (unlikely(PageCompound(page)))
  374. destroy_compound_page(page, order);
  375. page_idx = page_to_pfn(page) & ((1 << MAX_ORDER) - 1);
  376. VM_BUG_ON(page_idx & (order_size - 1));
  377. VM_BUG_ON(bad_range(zone, page));
  378. __mod_zone_page_state(zone, NR_FREE_PAGES, order_size);
  379. while (order < MAX_ORDER-1) {
  380. unsigned long combined_idx;
  381. struct page *buddy;
  382. buddy = __page_find_buddy(page, page_idx, order);
  383. if (!page_is_buddy(page, buddy, order))
  384. break;
  385. /* Our buddy is free, merge with it and move up one order. */
  386. list_del(&buddy->lru);
  387. zone->free_area[order].nr_free--;
  388. rmv_page_order(buddy);
  389. combined_idx = __find_combined_index(page_idx, order);
  390. page = page + (combined_idx - page_idx);
  391. page_idx = combined_idx;
  392. order++;
  393. }
  394. set_page_order(page, order);
  395. list_add(&page->lru,
  396. &zone->free_area[order].free_list[migratetype]);
  397. zone->free_area[order].nr_free++;
  398. }
  399. static inline int free_pages_check(struct page *page)
  400. {
  401. if (unlikely(page_mapcount(page) |
  402. (page->mapping != NULL) |
  403. (page_get_page_cgroup(page) != NULL) |
  404. (page_count(page) != 0) |
  405. (page->flags & PAGE_FLAGS_CHECK_AT_FREE)))
  406. bad_page(page);
  407. if (PageDirty(page))
  408. __ClearPageDirty(page);
  409. /*
  410. * For now, we report if PG_reserved was found set, but do not
  411. * clear it, and do not free the page. But we shall soon need
  412. * to do more, for when the ZERO_PAGE count wraps negative.
  413. */
  414. return PageReserved(page);
  415. }
  416. /*
  417. * Frees a list of pages.
  418. * Assumes all pages on list are in same zone, and of same order.
  419. * count is the number of pages to free.
  420. *
  421. * If the zone was previously in an "all pages pinned" state then look to
  422. * see if this freeing clears that state.
  423. *
  424. * And clear the zone's pages_scanned counter, to hold off the "all pages are
  425. * pinned" detection logic.
  426. */
  427. static void free_pages_bulk(struct zone *zone, int count,
  428. struct list_head *list, int order)
  429. {
  430. spin_lock(&zone->lock);
  431. zone_clear_flag(zone, ZONE_ALL_UNRECLAIMABLE);
  432. zone->pages_scanned = 0;
  433. while (count--) {
  434. struct page *page;
  435. VM_BUG_ON(list_empty(list));
  436. page = list_entry(list->prev, struct page, lru);
  437. /* have to delete it as __free_one_page list manipulates */
  438. list_del(&page->lru);
  439. __free_one_page(page, zone, order);
  440. }
  441. spin_unlock(&zone->lock);
  442. }
  443. static void free_one_page(struct zone *zone, struct page *page, int order)
  444. {
  445. spin_lock(&zone->lock);
  446. zone_clear_flag(zone, ZONE_ALL_UNRECLAIMABLE);
  447. zone->pages_scanned = 0;
  448. __free_one_page(page, zone, order);
  449. spin_unlock(&zone->lock);
  450. }
  451. static void __free_pages_ok(struct page *page, unsigned int order)
  452. {
  453. unsigned long flags;
  454. int i;
  455. int reserved = 0;
  456. for (i = 0 ; i < (1 << order) ; ++i)
  457. reserved += free_pages_check(page + i);
  458. if (reserved)
  459. return;
  460. if (!PageHighMem(page)) {
  461. debug_check_no_locks_freed(page_address(page),PAGE_SIZE<<order);
  462. debug_check_no_obj_freed(page_address(page),
  463. PAGE_SIZE << order);
  464. }
  465. arch_free_page(page, order);
  466. kernel_map_pages(page, 1 << order, 0);
  467. local_irq_save(flags);
  468. __count_vm_events(PGFREE, 1 << order);
  469. free_one_page(page_zone(page), page, order);
  470. local_irq_restore(flags);
  471. }
  472. /*
  473. * permit the bootmem allocator to evade page validation on high-order frees
  474. */
  475. void __meminit __free_pages_bootmem(struct page *page, unsigned int order)
  476. {
  477. if (order == 0) {
  478. __ClearPageReserved(page);
  479. set_page_count(page, 0);
  480. set_page_refcounted(page);
  481. __free_page(page);
  482. } else {
  483. int loop;
  484. prefetchw(page);
  485. for (loop = 0; loop < BITS_PER_LONG; loop++) {
  486. struct page *p = &page[loop];
  487. if (loop + 1 < BITS_PER_LONG)
  488. prefetchw(p + 1);
  489. __ClearPageReserved(p);
  490. set_page_count(p, 0);
  491. }
  492. set_page_refcounted(page);
  493. __free_pages(page, order);
  494. }
  495. }
  496. /*
  497. * The order of subdivision here is critical for the IO subsystem.
  498. * Please do not alter this order without good reasons and regression
  499. * testing. Specifically, as large blocks of memory are subdivided,
  500. * the order in which smaller blocks are delivered depends on the order
  501. * they're subdivided in this function. This is the primary factor
  502. * influencing the order in which pages are delivered to the IO
  503. * subsystem according to empirical testing, and this is also justified
  504. * by considering the behavior of a buddy system containing a single
  505. * large block of memory acted on by a series of small allocations.
  506. * This behavior is a critical factor in sglist merging's success.
  507. *
  508. * -- wli
  509. */
  510. static inline void expand(struct zone *zone, struct page *page,
  511. int low, int high, struct free_area *area,
  512. int migratetype)
  513. {
  514. unsigned long size = 1 << high;
  515. while (high > low) {
  516. area--;
  517. high--;
  518. size >>= 1;
  519. VM_BUG_ON(bad_range(zone, &page[size]));
  520. list_add(&page[size].lru, &area->free_list[migratetype]);
  521. area->nr_free++;
  522. set_page_order(&page[size], high);
  523. }
  524. }
  525. /*
  526. * This page is about to be returned from the page allocator
  527. */
  528. static int prep_new_page(struct page *page, int order, gfp_t gfp_flags)
  529. {
  530. if (unlikely(page_mapcount(page) |
  531. (page->mapping != NULL) |
  532. (page_get_page_cgroup(page) != NULL) |
  533. (page_count(page) != 0) |
  534. (page->flags & PAGE_FLAGS_CHECK_AT_PREP)))
  535. bad_page(page);
  536. /*
  537. * For now, we report if PG_reserved was found set, but do not
  538. * clear it, and do not allocate the page: as a safety net.
  539. */
  540. if (PageReserved(page))
  541. return 1;
  542. page->flags &= ~(1 << PG_uptodate | 1 << PG_error | 1 << PG_reclaim |
  543. 1 << PG_referenced | 1 << PG_arch_1 |
  544. 1 << PG_owner_priv_1 | 1 << PG_mappedtodisk);
  545. set_page_private(page, 0);
  546. set_page_refcounted(page);
  547. arch_alloc_page(page, order);
  548. kernel_map_pages(page, 1 << order, 1);
  549. if (gfp_flags & __GFP_ZERO)
  550. prep_zero_page(page, order, gfp_flags);
  551. if (order && (gfp_flags & __GFP_COMP))
  552. prep_compound_page(page, order);
  553. return 0;
  554. }
  555. /*
  556. * Go through the free lists for the given migratetype and remove
  557. * the smallest available page from the freelists
  558. */
  559. static struct page *__rmqueue_smallest(struct zone *zone, unsigned int order,
  560. int migratetype)
  561. {
  562. unsigned int current_order;
  563. struct free_area * area;
  564. struct page *page;
  565. /* Find a page of the appropriate size in the preferred list */
  566. for (current_order = order; current_order < MAX_ORDER; ++current_order) {
  567. area = &(zone->free_area[current_order]);
  568. if (list_empty(&area->free_list[migratetype]))
  569. continue;
  570. page = list_entry(area->free_list[migratetype].next,
  571. struct page, lru);
  572. list_del(&page->lru);
  573. rmv_page_order(page);
  574. area->nr_free--;
  575. __mod_zone_page_state(zone, NR_FREE_PAGES, - (1UL << order));
  576. expand(zone, page, order, current_order, area, migratetype);
  577. return page;
  578. }
  579. return NULL;
  580. }
  581. /*
  582. * This array describes the order lists are fallen back to when
  583. * the free lists for the desirable migrate type are depleted
  584. */
  585. static int fallbacks[MIGRATE_TYPES][MIGRATE_TYPES-1] = {
  586. [MIGRATE_UNMOVABLE] = { MIGRATE_RECLAIMABLE, MIGRATE_MOVABLE, MIGRATE_RESERVE },
  587. [MIGRATE_RECLAIMABLE] = { MIGRATE_UNMOVABLE, MIGRATE_MOVABLE, MIGRATE_RESERVE },
  588. [MIGRATE_MOVABLE] = { MIGRATE_RECLAIMABLE, MIGRATE_UNMOVABLE, MIGRATE_RESERVE },
  589. [MIGRATE_RESERVE] = { MIGRATE_RESERVE, MIGRATE_RESERVE, MIGRATE_RESERVE }, /* Never used */
  590. };
  591. /*
  592. * Move the free pages in a range to the free lists of the requested type.
  593. * Note that start_page and end_pages are not aligned on a pageblock
  594. * boundary. If alignment is required, use move_freepages_block()
  595. */
  596. static int move_freepages(struct zone *zone,
  597. struct page *start_page, struct page *end_page,
  598. int migratetype)
  599. {
  600. struct page *page;
  601. unsigned long order;
  602. int pages_moved = 0;
  603. #ifndef CONFIG_HOLES_IN_ZONE
  604. /*
  605. * page_zone is not safe to call in this context when
  606. * CONFIG_HOLES_IN_ZONE is set. This bug check is probably redundant
  607. * anyway as we check zone boundaries in move_freepages_block().
  608. * Remove at a later date when no bug reports exist related to
  609. * grouping pages by mobility
  610. */
  611. BUG_ON(page_zone(start_page) != page_zone(end_page));
  612. #endif
  613. for (page = start_page; page <= end_page;) {
  614. /* Make sure we are not inadvertently changing nodes */
  615. VM_BUG_ON(page_to_nid(page) != zone_to_nid(zone));
  616. if (!pfn_valid_within(page_to_pfn(page))) {
  617. page++;
  618. continue;
  619. }
  620. if (!PageBuddy(page)) {
  621. page++;
  622. continue;
  623. }
  624. order = page_order(page);
  625. list_del(&page->lru);
  626. list_add(&page->lru,
  627. &zone->free_area[order].free_list[migratetype]);
  628. page += 1 << order;
  629. pages_moved += 1 << order;
  630. }
  631. return pages_moved;
  632. }
  633. static int move_freepages_block(struct zone *zone, struct page *page,
  634. int migratetype)
  635. {
  636. unsigned long start_pfn, end_pfn;
  637. struct page *start_page, *end_page;
  638. start_pfn = page_to_pfn(page);
  639. start_pfn = start_pfn & ~(pageblock_nr_pages-1);
  640. start_page = pfn_to_page(start_pfn);
  641. end_page = start_page + pageblock_nr_pages - 1;
  642. end_pfn = start_pfn + pageblock_nr_pages - 1;
  643. /* Do not cross zone boundaries */
  644. if (start_pfn < zone->zone_start_pfn)
  645. start_page = page;
  646. if (end_pfn >= zone->zone_start_pfn + zone->spanned_pages)
  647. return 0;
  648. return move_freepages(zone, start_page, end_page, migratetype);
  649. }
  650. /* Remove an element from the buddy allocator from the fallback list */
  651. static struct page *__rmqueue_fallback(struct zone *zone, int order,
  652. int start_migratetype)
  653. {
  654. struct free_area * area;
  655. int current_order;
  656. struct page *page;
  657. int migratetype, i;
  658. /* Find the largest possible block of pages in the other list */
  659. for (current_order = MAX_ORDER-1; current_order >= order;
  660. --current_order) {
  661. for (i = 0; i < MIGRATE_TYPES - 1; i++) {
  662. migratetype = fallbacks[start_migratetype][i];
  663. /* MIGRATE_RESERVE handled later if necessary */
  664. if (migratetype == MIGRATE_RESERVE)
  665. continue;
  666. area = &(zone->free_area[current_order]);
  667. if (list_empty(&area->free_list[migratetype]))
  668. continue;
  669. page = list_entry(area->free_list[migratetype].next,
  670. struct page, lru);
  671. area->nr_free--;
  672. /*
  673. * If breaking a large block of pages, move all free
  674. * pages to the preferred allocation list. If falling
  675. * back for a reclaimable kernel allocation, be more
  676. * agressive about taking ownership of free pages
  677. */
  678. if (unlikely(current_order >= (pageblock_order >> 1)) ||
  679. start_migratetype == MIGRATE_RECLAIMABLE) {
  680. unsigned long pages;
  681. pages = move_freepages_block(zone, page,
  682. start_migratetype);
  683. /* Claim the whole block if over half of it is free */
  684. if (pages >= (1 << (pageblock_order-1)))
  685. set_pageblock_migratetype(page,
  686. start_migratetype);
  687. migratetype = start_migratetype;
  688. }
  689. /* Remove the page from the freelists */
  690. list_del(&page->lru);
  691. rmv_page_order(page);
  692. __mod_zone_page_state(zone, NR_FREE_PAGES,
  693. -(1UL << order));
  694. if (current_order == pageblock_order)
  695. set_pageblock_migratetype(page,
  696. start_migratetype);
  697. expand(zone, page, order, current_order, area, migratetype);
  698. return page;
  699. }
  700. }
  701. /* Use MIGRATE_RESERVE rather than fail an allocation */
  702. return __rmqueue_smallest(zone, order, MIGRATE_RESERVE);
  703. }
  704. /*
  705. * Do the hard work of removing an element from the buddy allocator.
  706. * Call me with the zone->lock already held.
  707. */
  708. static struct page *__rmqueue(struct zone *zone, unsigned int order,
  709. int migratetype)
  710. {
  711. struct page *page;
  712. page = __rmqueue_smallest(zone, order, migratetype);
  713. if (unlikely(!page))
  714. page = __rmqueue_fallback(zone, order, migratetype);
  715. return page;
  716. }
  717. /*
  718. * Obtain a specified number of elements from the buddy allocator, all under
  719. * a single hold of the lock, for efficiency. Add them to the supplied list.
  720. * Returns the number of new pages which were placed at *list.
  721. */
  722. static int rmqueue_bulk(struct zone *zone, unsigned int order,
  723. unsigned long count, struct list_head *list,
  724. int migratetype)
  725. {
  726. int i;
  727. spin_lock(&zone->lock);
  728. for (i = 0; i < count; ++i) {
  729. struct page *page = __rmqueue(zone, order, migratetype);
  730. if (unlikely(page == NULL))
  731. break;
  732. /*
  733. * Split buddy pages returned by expand() are received here
  734. * in physical page order. The page is added to the callers and
  735. * list and the list head then moves forward. From the callers
  736. * perspective, the linked list is ordered by page number in
  737. * some conditions. This is useful for IO devices that can
  738. * merge IO requests if the physical pages are ordered
  739. * properly.
  740. */
  741. list_add(&page->lru, list);
  742. set_page_private(page, migratetype);
  743. list = &page->lru;
  744. }
  745. spin_unlock(&zone->lock);
  746. return i;
  747. }
  748. #ifdef CONFIG_NUMA
  749. /*
  750. * Called from the vmstat counter updater to drain pagesets of this
  751. * currently executing processor on remote nodes after they have
  752. * expired.
  753. *
  754. * Note that this function must be called with the thread pinned to
  755. * a single processor.
  756. */
  757. void drain_zone_pages(struct zone *zone, struct per_cpu_pages *pcp)
  758. {
  759. unsigned long flags;
  760. int to_drain;
  761. local_irq_save(flags);
  762. if (pcp->count >= pcp->batch)
  763. to_drain = pcp->batch;
  764. else
  765. to_drain = pcp->count;
  766. free_pages_bulk(zone, to_drain, &pcp->list, 0);
  767. pcp->count -= to_drain;
  768. local_irq_restore(flags);
  769. }
  770. #endif
  771. /*
  772. * Drain pages of the indicated processor.
  773. *
  774. * The processor must either be the current processor and the
  775. * thread pinned to the current processor or a processor that
  776. * is not online.
  777. */
  778. static void drain_pages(unsigned int cpu)
  779. {
  780. unsigned long flags;
  781. struct zone *zone;
  782. for_each_zone(zone) {
  783. struct per_cpu_pageset *pset;
  784. struct per_cpu_pages *pcp;
  785. if (!populated_zone(zone))
  786. continue;
  787. pset = zone_pcp(zone, cpu);
  788. pcp = &pset->pcp;
  789. local_irq_save(flags);
  790. free_pages_bulk(zone, pcp->count, &pcp->list, 0);
  791. pcp->count = 0;
  792. local_irq_restore(flags);
  793. }
  794. }
  795. /*
  796. * Spill all of this CPU's per-cpu pages back into the buddy allocator.
  797. */
  798. void drain_local_pages(void *arg)
  799. {
  800. drain_pages(smp_processor_id());
  801. }
  802. /*
  803. * Spill all the per-cpu pages from all CPUs back into the buddy allocator
  804. */
  805. void drain_all_pages(void)
  806. {
  807. on_each_cpu(drain_local_pages, NULL, 1);
  808. }
  809. #ifdef CONFIG_HIBERNATION
  810. void mark_free_pages(struct zone *zone)
  811. {
  812. unsigned long pfn, max_zone_pfn;
  813. unsigned long flags;
  814. int order, t;
  815. struct list_head *curr;
  816. if (!zone->spanned_pages)
  817. return;
  818. spin_lock_irqsave(&zone->lock, flags);
  819. max_zone_pfn = zone->zone_start_pfn + zone->spanned_pages;
  820. for (pfn = zone->zone_start_pfn; pfn < max_zone_pfn; pfn++)
  821. if (pfn_valid(pfn)) {
  822. struct page *page = pfn_to_page(pfn);
  823. if (!swsusp_page_is_forbidden(page))
  824. swsusp_unset_page_free(page);
  825. }
  826. for_each_migratetype_order(order, t) {
  827. list_for_each(curr, &zone->free_area[order].free_list[t]) {
  828. unsigned long i;
  829. pfn = page_to_pfn(list_entry(curr, struct page, lru));
  830. for (i = 0; i < (1UL << order); i++)
  831. swsusp_set_page_free(pfn_to_page(pfn + i));
  832. }
  833. }
  834. spin_unlock_irqrestore(&zone->lock, flags);
  835. }
  836. #endif /* CONFIG_PM */
  837. /*
  838. * Free a 0-order page
  839. */
  840. static void free_hot_cold_page(struct page *page, int cold)
  841. {
  842. struct zone *zone = page_zone(page);
  843. struct per_cpu_pages *pcp;
  844. unsigned long flags;
  845. if (PageAnon(page))
  846. page->mapping = NULL;
  847. if (free_pages_check(page))
  848. return;
  849. if (!PageHighMem(page)) {
  850. debug_check_no_locks_freed(page_address(page), PAGE_SIZE);
  851. debug_check_no_obj_freed(page_address(page), PAGE_SIZE);
  852. }
  853. arch_free_page(page, 0);
  854. kernel_map_pages(page, 1, 0);
  855. pcp = &zone_pcp(zone, get_cpu())->pcp;
  856. local_irq_save(flags);
  857. __count_vm_event(PGFREE);
  858. if (cold)
  859. list_add_tail(&page->lru, &pcp->list);
  860. else
  861. list_add(&page->lru, &pcp->list);
  862. set_page_private(page, get_pageblock_migratetype(page));
  863. pcp->count++;
  864. if (pcp->count >= pcp->high) {
  865. free_pages_bulk(zone, pcp->batch, &pcp->list, 0);
  866. pcp->count -= pcp->batch;
  867. }
  868. local_irq_restore(flags);
  869. put_cpu();
  870. }
  871. void free_hot_page(struct page *page)
  872. {
  873. free_hot_cold_page(page, 0);
  874. }
  875. void free_cold_page(struct page *page)
  876. {
  877. free_hot_cold_page(page, 1);
  878. }
  879. /*
  880. * split_page takes a non-compound higher-order page, and splits it into
  881. * n (1<<order) sub-pages: page[0..n]
  882. * Each sub-page must be freed individually.
  883. *
  884. * Note: this is probably too low level an operation for use in drivers.
  885. * Please consult with lkml before using this in your driver.
  886. */
  887. void split_page(struct page *page, unsigned int order)
  888. {
  889. int i;
  890. VM_BUG_ON(PageCompound(page));
  891. VM_BUG_ON(!page_count(page));
  892. for (i = 1; i < (1 << order); i++)
  893. set_page_refcounted(page + i);
  894. }
  895. /*
  896. * Really, prep_compound_page() should be called from __rmqueue_bulk(). But
  897. * we cheat by calling it from here, in the order > 0 path. Saves a branch
  898. * or two.
  899. */
  900. static struct page *buffered_rmqueue(struct zone *preferred_zone,
  901. struct zone *zone, int order, gfp_t gfp_flags)
  902. {
  903. unsigned long flags;
  904. struct page *page;
  905. int cold = !!(gfp_flags & __GFP_COLD);
  906. int cpu;
  907. int migratetype = allocflags_to_migratetype(gfp_flags);
  908. again:
  909. cpu = get_cpu();
  910. if (likely(order == 0)) {
  911. struct per_cpu_pages *pcp;
  912. pcp = &zone_pcp(zone, cpu)->pcp;
  913. local_irq_save(flags);
  914. if (!pcp->count) {
  915. pcp->count = rmqueue_bulk(zone, 0,
  916. pcp->batch, &pcp->list, migratetype);
  917. if (unlikely(!pcp->count))
  918. goto failed;
  919. }
  920. /* Find a page of the appropriate migrate type */
  921. if (cold) {
  922. list_for_each_entry_reverse(page, &pcp->list, lru)
  923. if (page_private(page) == migratetype)
  924. break;
  925. } else {
  926. list_for_each_entry(page, &pcp->list, lru)
  927. if (page_private(page) == migratetype)
  928. break;
  929. }
  930. /* Allocate more to the pcp list if necessary */
  931. if (unlikely(&page->lru == &pcp->list)) {
  932. pcp->count += rmqueue_bulk(zone, 0,
  933. pcp->batch, &pcp->list, migratetype);
  934. page = list_entry(pcp->list.next, struct page, lru);
  935. }
  936. list_del(&page->lru);
  937. pcp->count--;
  938. } else {
  939. spin_lock_irqsave(&zone->lock, flags);
  940. page = __rmqueue(zone, order, migratetype);
  941. spin_unlock(&zone->lock);
  942. if (!page)
  943. goto failed;
  944. }
  945. __count_zone_vm_events(PGALLOC, zone, 1 << order);
  946. zone_statistics(preferred_zone, zone);
  947. local_irq_restore(flags);
  948. put_cpu();
  949. VM_BUG_ON(bad_range(zone, page));
  950. if (prep_new_page(page, order, gfp_flags))
  951. goto again;
  952. return page;
  953. failed:
  954. local_irq_restore(flags);
  955. put_cpu();
  956. return NULL;
  957. }
  958. #define ALLOC_NO_WATERMARKS 0x01 /* don't check watermarks at all */
  959. #define ALLOC_WMARK_MIN 0x02 /* use pages_min watermark */
  960. #define ALLOC_WMARK_LOW 0x04 /* use pages_low watermark */
  961. #define ALLOC_WMARK_HIGH 0x08 /* use pages_high watermark */
  962. #define ALLOC_HARDER 0x10 /* try to alloc harder */
  963. #define ALLOC_HIGH 0x20 /* __GFP_HIGH set */
  964. #define ALLOC_CPUSET 0x40 /* check for correct cpuset */
  965. #ifdef CONFIG_FAIL_PAGE_ALLOC
  966. static struct fail_page_alloc_attr {
  967. struct fault_attr attr;
  968. u32 ignore_gfp_highmem;
  969. u32 ignore_gfp_wait;
  970. u32 min_order;
  971. #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
  972. struct dentry *ignore_gfp_highmem_file;
  973. struct dentry *ignore_gfp_wait_file;
  974. struct dentry *min_order_file;
  975. #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
  976. } fail_page_alloc = {
  977. .attr = FAULT_ATTR_INITIALIZER,
  978. .ignore_gfp_wait = 1,
  979. .ignore_gfp_highmem = 1,
  980. .min_order = 1,
  981. };
  982. static int __init setup_fail_page_alloc(char *str)
  983. {
  984. return setup_fault_attr(&fail_page_alloc.attr, str);
  985. }
  986. __setup("fail_page_alloc=", setup_fail_page_alloc);
  987. static int should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
  988. {
  989. if (order < fail_page_alloc.min_order)
  990. return 0;
  991. if (gfp_mask & __GFP_NOFAIL)
  992. return 0;
  993. if (fail_page_alloc.ignore_gfp_highmem && (gfp_mask & __GFP_HIGHMEM))
  994. return 0;
  995. if (fail_page_alloc.ignore_gfp_wait && (gfp_mask & __GFP_WAIT))
  996. return 0;
  997. return should_fail(&fail_page_alloc.attr, 1 << order);
  998. }
  999. #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
  1000. static int __init fail_page_alloc_debugfs(void)
  1001. {
  1002. mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
  1003. struct dentry *dir;
  1004. int err;
  1005. err = init_fault_attr_dentries(&fail_page_alloc.attr,
  1006. "fail_page_alloc");
  1007. if (err)
  1008. return err;
  1009. dir = fail_page_alloc.attr.dentries.dir;
  1010. fail_page_alloc.ignore_gfp_wait_file =
  1011. debugfs_create_bool("ignore-gfp-wait", mode, dir,
  1012. &fail_page_alloc.ignore_gfp_wait);
  1013. fail_page_alloc.ignore_gfp_highmem_file =
  1014. debugfs_create_bool("ignore-gfp-highmem", mode, dir,
  1015. &fail_page_alloc.ignore_gfp_highmem);
  1016. fail_page_alloc.min_order_file =
  1017. debugfs_create_u32("min-order", mode, dir,
  1018. &fail_page_alloc.min_order);
  1019. if (!fail_page_alloc.ignore_gfp_wait_file ||
  1020. !fail_page_alloc.ignore_gfp_highmem_file ||
  1021. !fail_page_alloc.min_order_file) {
  1022. err = -ENOMEM;
  1023. debugfs_remove(fail_page_alloc.ignore_gfp_wait_file);
  1024. debugfs_remove(fail_page_alloc.ignore_gfp_highmem_file);
  1025. debugfs_remove(fail_page_alloc.min_order_file);
  1026. cleanup_fault_attr_dentries(&fail_page_alloc.attr);
  1027. }
  1028. return err;
  1029. }
  1030. late_initcall(fail_page_alloc_debugfs);
  1031. #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
  1032. #else /* CONFIG_FAIL_PAGE_ALLOC */
  1033. static inline int should_fail_alloc_page(gfp_t gfp_mask, unsigned int order)
  1034. {
  1035. return 0;
  1036. }
  1037. #endif /* CONFIG_FAIL_PAGE_ALLOC */
  1038. /*
  1039. * Return 1 if free pages are above 'mark'. This takes into account the order
  1040. * of the allocation.
  1041. */
  1042. int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
  1043. int classzone_idx, int alloc_flags)
  1044. {
  1045. /* free_pages my go negative - that's OK */
  1046. long min = mark;
  1047. long free_pages = zone_page_state(z, NR_FREE_PAGES) - (1 << order) + 1;
  1048. int o;
  1049. if (alloc_flags & ALLOC_HIGH)
  1050. min -= min / 2;
  1051. if (alloc_flags & ALLOC_HARDER)
  1052. min -= min / 4;
  1053. if (free_pages <= min + z->lowmem_reserve[classzone_idx])
  1054. return 0;
  1055. for (o = 0; o < order; o++) {
  1056. /* At the next order, this order's pages become unavailable */
  1057. free_pages -= z->free_area[o].nr_free << o;
  1058. /* Require fewer higher order pages to be free */
  1059. min >>= 1;
  1060. if (free_pages <= min)
  1061. return 0;
  1062. }
  1063. return 1;
  1064. }
  1065. #ifdef CONFIG_NUMA
  1066. /*
  1067. * zlc_setup - Setup for "zonelist cache". Uses cached zone data to
  1068. * skip over zones that are not allowed by the cpuset, or that have
  1069. * been recently (in last second) found to be nearly full. See further
  1070. * comments in mmzone.h. Reduces cache footprint of zonelist scans
  1071. * that have to skip over a lot of full or unallowed zones.
  1072. *
  1073. * If the zonelist cache is present in the passed in zonelist, then
  1074. * returns a pointer to the allowed node mask (either the current
  1075. * tasks mems_allowed, or node_states[N_HIGH_MEMORY].)
  1076. *
  1077. * If the zonelist cache is not available for this zonelist, does
  1078. * nothing and returns NULL.
  1079. *
  1080. * If the fullzones BITMAP in the zonelist cache is stale (more than
  1081. * a second since last zap'd) then we zap it out (clear its bits.)
  1082. *
  1083. * We hold off even calling zlc_setup, until after we've checked the
  1084. * first zone in the zonelist, on the theory that most allocations will
  1085. * be satisfied from that first zone, so best to examine that zone as
  1086. * quickly as we can.
  1087. */
  1088. static nodemask_t *zlc_setup(struct zonelist *zonelist, int alloc_flags)
  1089. {
  1090. struct zonelist_cache *zlc; /* cached zonelist speedup info */
  1091. nodemask_t *allowednodes; /* zonelist_cache approximation */
  1092. zlc = zonelist->zlcache_ptr;
  1093. if (!zlc)
  1094. return NULL;
  1095. if (time_after(jiffies, zlc->last_full_zap + HZ)) {
  1096. bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
  1097. zlc->last_full_zap = jiffies;
  1098. }
  1099. allowednodes = !in_interrupt() && (alloc_flags & ALLOC_CPUSET) ?
  1100. &cpuset_current_mems_allowed :
  1101. &node_states[N_HIGH_MEMORY];
  1102. return allowednodes;
  1103. }
  1104. /*
  1105. * Given 'z' scanning a zonelist, run a couple of quick checks to see
  1106. * if it is worth looking at further for free memory:
  1107. * 1) Check that the zone isn't thought to be full (doesn't have its
  1108. * bit set in the zonelist_cache fullzones BITMAP).
  1109. * 2) Check that the zones node (obtained from the zonelist_cache
  1110. * z_to_n[] mapping) is allowed in the passed in allowednodes mask.
  1111. * Return true (non-zero) if zone is worth looking at further, or
  1112. * else return false (zero) if it is not.
  1113. *
  1114. * This check -ignores- the distinction between various watermarks,
  1115. * such as GFP_HIGH, GFP_ATOMIC, PF_MEMALLOC, ... If a zone is
  1116. * found to be full for any variation of these watermarks, it will
  1117. * be considered full for up to one second by all requests, unless
  1118. * we are so low on memory on all allowed nodes that we are forced
  1119. * into the second scan of the zonelist.
  1120. *
  1121. * In the second scan we ignore this zonelist cache and exactly
  1122. * apply the watermarks to all zones, even it is slower to do so.
  1123. * We are low on memory in the second scan, and should leave no stone
  1124. * unturned looking for a free page.
  1125. */
  1126. static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
  1127. nodemask_t *allowednodes)
  1128. {
  1129. struct zonelist_cache *zlc; /* cached zonelist speedup info */
  1130. int i; /* index of *z in zonelist zones */
  1131. int n; /* node that zone *z is on */
  1132. zlc = zonelist->zlcache_ptr;
  1133. if (!zlc)
  1134. return 1;
  1135. i = z - zonelist->_zonerefs;
  1136. n = zlc->z_to_n[i];
  1137. /* This zone is worth trying if it is allowed but not full */
  1138. return node_isset(n, *allowednodes) && !test_bit(i, zlc->fullzones);
  1139. }
  1140. /*
  1141. * Given 'z' scanning a zonelist, set the corresponding bit in
  1142. * zlc->fullzones, so that subsequent attempts to allocate a page
  1143. * from that zone don't waste time re-examining it.
  1144. */
  1145. static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
  1146. {
  1147. struct zonelist_cache *zlc; /* cached zonelist speedup info */
  1148. int i; /* index of *z in zonelist zones */
  1149. zlc = zonelist->zlcache_ptr;
  1150. if (!zlc)
  1151. return;
  1152. i = z - zonelist->_zonerefs;
  1153. set_bit(i, zlc->fullzones);
  1154. }
  1155. #else /* CONFIG_NUMA */
  1156. static nodemask_t *zlc_setup(struct zonelist *zonelist, int alloc_flags)
  1157. {
  1158. return NULL;
  1159. }
  1160. static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
  1161. nodemask_t *allowednodes)
  1162. {
  1163. return 1;
  1164. }
  1165. static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
  1166. {
  1167. }
  1168. #endif /* CONFIG_NUMA */
  1169. /*
  1170. * get_page_from_freelist goes through the zonelist trying to allocate
  1171. * a page.
  1172. */
  1173. static struct page *
  1174. get_page_from_freelist(gfp_t gfp_mask, nodemask_t *nodemask, unsigned int order,
  1175. struct zonelist *zonelist, int high_zoneidx, int alloc_flags)
  1176. {
  1177. struct zoneref *z;
  1178. struct page *page = NULL;
  1179. int classzone_idx;
  1180. struct zone *zone, *preferred_zone;
  1181. nodemask_t *allowednodes = NULL;/* zonelist_cache approximation */
  1182. int zlc_active = 0; /* set if using zonelist_cache */
  1183. int did_zlc_setup = 0; /* just call zlc_setup() one time */
  1184. (void)first_zones_zonelist(zonelist, high_zoneidx, nodemask,
  1185. &preferred_zone);
  1186. if (!preferred_zone)
  1187. return NULL;
  1188. classzone_idx = zone_idx(preferred_zone);
  1189. zonelist_scan:
  1190. /*
  1191. * Scan zonelist, looking for a zone with enough free.
  1192. * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
  1193. */
  1194. for_each_zone_zonelist_nodemask(zone, z, zonelist,
  1195. high_zoneidx, nodemask) {
  1196. if (NUMA_BUILD && zlc_active &&
  1197. !zlc_zone_worth_trying(zonelist, z, allowednodes))
  1198. continue;
  1199. if ((alloc_flags & ALLOC_CPUSET) &&
  1200. !cpuset_zone_allowed_softwall(zone, gfp_mask))
  1201. goto try_next_zone;
  1202. if (!(alloc_flags & ALLOC_NO_WATERMARKS)) {
  1203. unsigned long mark;
  1204. if (alloc_flags & ALLOC_WMARK_MIN)
  1205. mark = zone->pages_min;
  1206. else if (alloc_flags & ALLOC_WMARK_LOW)
  1207. mark = zone->pages_low;
  1208. else
  1209. mark = zone->pages_high;
  1210. if (!zone_watermark_ok(zone, order, mark,
  1211. classzone_idx, alloc_flags)) {
  1212. if (!zone_reclaim_mode ||
  1213. !zone_reclaim(zone, gfp_mask, order))
  1214. goto this_zone_full;
  1215. }
  1216. }
  1217. page = buffered_rmqueue(preferred_zone, zone, order, gfp_mask);
  1218. if (page)
  1219. break;
  1220. this_zone_full:
  1221. if (NUMA_BUILD)
  1222. zlc_mark_zone_full(zonelist, z);
  1223. try_next_zone:
  1224. if (NUMA_BUILD && !did_zlc_setup) {
  1225. /* we do zlc_setup after the first zone is tried */
  1226. allowednodes = zlc_setup(zonelist, alloc_flags);
  1227. zlc_active = 1;
  1228. did_zlc_setup = 1;
  1229. }
  1230. }
  1231. if (unlikely(NUMA_BUILD && page == NULL && zlc_active)) {
  1232. /* Disable zlc cache for second zonelist scan */
  1233. zlc_active = 0;
  1234. goto zonelist_scan;
  1235. }
  1236. return page;
  1237. }
  1238. /*
  1239. * This is the 'heart' of the zoned buddy allocator.
  1240. */
  1241. struct page *
  1242. __alloc_pages_internal(gfp_t gfp_mask, unsigned int order,
  1243. struct zonelist *zonelist, nodemask_t *nodemask)
  1244. {
  1245. const gfp_t wait = gfp_mask & __GFP_WAIT;
  1246. enum zone_type high_zoneidx = gfp_zone(gfp_mask);
  1247. struct zoneref *z;
  1248. struct zone *zone;
  1249. struct page *page;
  1250. struct reclaim_state reclaim_state;
  1251. struct task_struct *p = current;
  1252. int do_retry;
  1253. int alloc_flags;
  1254. unsigned long did_some_progress;
  1255. unsigned long pages_reclaimed = 0;
  1256. might_sleep_if(wait);
  1257. if (should_fail_alloc_page(gfp_mask, order))
  1258. return NULL;
  1259. restart:
  1260. z = zonelist->_zonerefs; /* the list of zones suitable for gfp_mask */
  1261. if (unlikely(!z->zone)) {
  1262. /*
  1263. * Happens if we have an empty zonelist as a result of
  1264. * GFP_THISNODE being used on a memoryless node
  1265. */
  1266. return NULL;
  1267. }
  1268. page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, nodemask, order,
  1269. zonelist, high_zoneidx, ALLOC_WMARK_LOW|ALLOC_CPUSET);
  1270. if (page)
  1271. goto got_pg;
  1272. /*
  1273. * GFP_THISNODE (meaning __GFP_THISNODE, __GFP_NORETRY and
  1274. * __GFP_NOWARN set) should not cause reclaim since the subsystem
  1275. * (f.e. slab) using GFP_THISNODE may choose to trigger reclaim
  1276. * using a larger set of nodes after it has established that the
  1277. * allowed per node queues are empty and that nodes are
  1278. * over allocated.
  1279. */
  1280. if (NUMA_BUILD && (gfp_mask & GFP_THISNODE) == GFP_THISNODE)
  1281. goto nopage;
  1282. for_each_zone_zonelist(zone, z, zonelist, high_zoneidx)
  1283. wakeup_kswapd(zone, order);
  1284. /*
  1285. * OK, we're below the kswapd watermark and have kicked background
  1286. * reclaim. Now things get more complex, so set up alloc_flags according
  1287. * to how we want to proceed.
  1288. *
  1289. * The caller may dip into page reserves a bit more if the caller
  1290. * cannot run direct reclaim, or if the caller has realtime scheduling
  1291. * policy or is asking for __GFP_HIGH memory. GFP_ATOMIC requests will
  1292. * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
  1293. */
  1294. alloc_flags = ALLOC_WMARK_MIN;
  1295. if ((unlikely(rt_task(p)) && !in_interrupt()) || !wait)
  1296. alloc_flags |= ALLOC_HARDER;
  1297. if (gfp_mask & __GFP_HIGH)
  1298. alloc_flags |= ALLOC_HIGH;
  1299. if (wait)
  1300. alloc_flags |= ALLOC_CPUSET;
  1301. /*
  1302. * Go through the zonelist again. Let __GFP_HIGH and allocations
  1303. * coming from realtime tasks go deeper into reserves.
  1304. *
  1305. * This is the last chance, in general, before the goto nopage.
  1306. * Ignore cpuset if GFP_ATOMIC (!wait) rather than fail alloc.
  1307. * See also cpuset_zone_allowed() comment in kernel/cpuset.c.
  1308. */
  1309. page = get_page_from_freelist(gfp_mask, nodemask, order, zonelist,
  1310. high_zoneidx, alloc_flags);
  1311. if (page)
  1312. goto got_pg;
  1313. /* This allocation should allow future memory freeing. */
  1314. rebalance:
  1315. if (((p->flags & PF_MEMALLOC) || unlikely(test_thread_flag(TIF_MEMDIE)))
  1316. && !in_interrupt()) {
  1317. if (!(gfp_mask & __GFP_NOMEMALLOC)) {
  1318. nofail_alloc:
  1319. /* go through the zonelist yet again, ignoring mins */
  1320. page = get_page_from_freelist(gfp_mask, nodemask, order,
  1321. zonelist, high_zoneidx, ALLOC_NO_WATERMARKS);
  1322. if (page)
  1323. goto got_pg;
  1324. if (gfp_mask & __GFP_NOFAIL) {
  1325. congestion_wait(WRITE, HZ/50);
  1326. goto nofail_alloc;
  1327. }
  1328. }
  1329. goto nopage;
  1330. }
  1331. /* Atomic allocations - we can't balance anything */
  1332. if (!wait)
  1333. goto nopage;
  1334. cond_resched();
  1335. /* We now go into synchronous reclaim */
  1336. cpuset_memory_pressure_bump();
  1337. p->flags |= PF_MEMALLOC;
  1338. reclaim_state.reclaimed_slab = 0;
  1339. p->reclaim_state = &reclaim_state;
  1340. did_some_progress = try_to_free_pages(zonelist, order, gfp_mask);
  1341. p->reclaim_state = NULL;
  1342. p->flags &= ~PF_MEMALLOC;
  1343. cond_resched();
  1344. if (order != 0)
  1345. drain_all_pages();
  1346. if (likely(did_some_progress)) {
  1347. page = get_page_from_freelist(gfp_mask, nodemask, order,
  1348. zonelist, high_zoneidx, alloc_flags);
  1349. if (page)
  1350. goto got_pg;
  1351. } else if ((gfp_mask & __GFP_FS) && !(gfp_mask & __GFP_NORETRY)) {
  1352. if (!try_set_zone_oom(zonelist, gfp_mask)) {
  1353. schedule_timeout_uninterruptible(1);
  1354. goto restart;
  1355. }
  1356. /*
  1357. * Go through the zonelist yet one more time, keep
  1358. * very high watermark here, this is only to catch
  1359. * a parallel oom killing, we must fail if we're still
  1360. * under heavy pressure.
  1361. */
  1362. page = get_page_from_freelist(gfp_mask|__GFP_HARDWALL, nodemask,
  1363. order, zonelist, high_zoneidx,
  1364. ALLOC_WMARK_HIGH|ALLOC_CPUSET);
  1365. if (page) {
  1366. clear_zonelist_oom(zonelist, gfp_mask);
  1367. goto got_pg;
  1368. }
  1369. /* The OOM killer will not help higher order allocs so fail */
  1370. if (order > PAGE_ALLOC_COSTLY_ORDER) {
  1371. clear_zonelist_oom(zonelist, gfp_mask);
  1372. goto nopage;
  1373. }
  1374. out_of_memory(zonelist, gfp_mask, order);
  1375. clear_zonelist_oom(zonelist, gfp_mask);
  1376. goto restart;
  1377. }
  1378. /*
  1379. * Don't let big-order allocations loop unless the caller explicitly
  1380. * requests that. Wait for some write requests to complete then retry.
  1381. *
  1382. * In this implementation, order <= PAGE_ALLOC_COSTLY_ORDER
  1383. * means __GFP_NOFAIL, but that may not be true in other
  1384. * implementations.
  1385. *
  1386. * For order > PAGE_ALLOC_COSTLY_ORDER, if __GFP_REPEAT is
  1387. * specified, then we retry until we no longer reclaim any pages
  1388. * (above), or we've reclaimed an order of pages at least as
  1389. * large as the allocation's order. In both cases, if the
  1390. * allocation still fails, we stop retrying.
  1391. */
  1392. pages_reclaimed += did_some_progress;
  1393. do_retry = 0;
  1394. if (!(gfp_mask & __GFP_NORETRY)) {
  1395. if (order <= PAGE_ALLOC_COSTLY_ORDER) {
  1396. do_retry = 1;
  1397. } else {
  1398. if (gfp_mask & __GFP_REPEAT &&
  1399. pages_reclaimed < (1 << order))
  1400. do_retry = 1;
  1401. }
  1402. if (gfp_mask & __GFP_NOFAIL)
  1403. do_retry = 1;
  1404. }
  1405. if (do_retry) {
  1406. congestion_wait(WRITE, HZ/50);
  1407. goto rebalance;
  1408. }
  1409. nopage:
  1410. if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit()) {
  1411. printk(KERN_WARNING "%s: page allocation failure."
  1412. " order:%d, mode:0x%x\n",
  1413. p->comm, order, gfp_mask);
  1414. dump_stack();
  1415. show_mem();
  1416. }
  1417. got_pg:
  1418. return page;
  1419. }
  1420. EXPORT_SYMBOL(__alloc_pages_internal);
  1421. /*
  1422. * Common helper functions.
  1423. */
  1424. unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order)
  1425. {
  1426. struct page * page;
  1427. page = alloc_pages(gfp_mask, order);
  1428. if (!page)
  1429. return 0;
  1430. return (unsigned long) page_address(page);
  1431. }
  1432. EXPORT_SYMBOL(__get_free_pages);
  1433. unsigned long get_zeroed_page(gfp_t gfp_mask)
  1434. {
  1435. struct page * page;
  1436. /*
  1437. * get_zeroed_page() returns a 32-bit address, which cannot represent
  1438. * a highmem page
  1439. */
  1440. VM_BUG_ON((gfp_mask & __GFP_HIGHMEM) != 0);
  1441. page = alloc_pages(gfp_mask | __GFP_ZERO, 0);
  1442. if (page)
  1443. return (unsigned long) page_address(page);
  1444. return 0;
  1445. }
  1446. EXPORT_SYMBOL(get_zeroed_page);
  1447. void __pagevec_free(struct pagevec *pvec)
  1448. {
  1449. int i = pagevec_count(pvec);
  1450. while (--i >= 0)
  1451. free_hot_cold_page(pvec->pages[i], pvec->cold);
  1452. }
  1453. void __free_pages(struct page *page, unsigned int order)
  1454. {
  1455. if (put_page_testzero(page)) {
  1456. if (order == 0)
  1457. free_hot_page(page);
  1458. else
  1459. __free_pages_ok(page, order);
  1460. }
  1461. }
  1462. EXPORT_SYMBOL(__free_pages);
  1463. void free_pages(unsigned long addr, unsigned int order)
  1464. {
  1465. if (addr != 0) {
  1466. VM_BUG_ON(!virt_addr_valid((void *)addr));
  1467. __free_pages(virt_to_page((void *)addr), order);
  1468. }
  1469. }
  1470. EXPORT_SYMBOL(free_pages);
  1471. /**
  1472. * alloc_pages_exact - allocate an exact number physically-contiguous pages.
  1473. * @size: the number of bytes to allocate
  1474. * @gfp_mask: GFP flags for the allocation
  1475. *
  1476. * This function is similar to alloc_pages(), except that it allocates the
  1477. * minimum number of pages to satisfy the request. alloc_pages() can only
  1478. * allocate memory in power-of-two pages.
  1479. *
  1480. * This function is also limited by MAX_ORDER.
  1481. *
  1482. * Memory allocated by this function must be released by free_pages_exact().
  1483. */
  1484. void *alloc_pages_exact(size_t size, gfp_t gfp_mask)
  1485. {
  1486. unsigned int order = get_order(size);
  1487. unsigned long addr;
  1488. addr = __get_free_pages(gfp_mask, order);
  1489. if (addr) {
  1490. unsigned long alloc_end = addr + (PAGE_SIZE << order);
  1491. unsigned long used = addr + PAGE_ALIGN(size);
  1492. split_page(virt_to_page(addr), order);
  1493. while (used < alloc_end) {
  1494. free_page(used);
  1495. used += PAGE_SIZE;
  1496. }
  1497. }
  1498. return (void *)addr;
  1499. }
  1500. EXPORT_SYMBOL(alloc_pages_exact);
  1501. /**
  1502. * free_pages_exact - release memory allocated via alloc_pages_exact()
  1503. * @virt: the value returned by alloc_pages_exact.
  1504. * @size: size of allocation, same value as passed to alloc_pages_exact().
  1505. *
  1506. * Release the memory allocated by a previous call to alloc_pages_exact.
  1507. */
  1508. void free_pages_exact(void *virt, size_t size)
  1509. {
  1510. unsigned long addr = (unsigned long)virt;
  1511. unsigned long end = addr + PAGE_ALIGN(size);
  1512. while (addr < end) {
  1513. free_page(addr);
  1514. addr += PAGE_SIZE;
  1515. }
  1516. }
  1517. EXPORT_SYMBOL(free_pages_exact);
  1518. static unsigned int nr_free_zone_pages(int offset)
  1519. {
  1520. struct zoneref *z;
  1521. struct zone *zone;
  1522. /* Just pick one node, since fallback list is circular */
  1523. unsigned int sum = 0;
  1524. struct zonelist *zonelist = node_zonelist(numa_node_id(), GFP_KERNEL);
  1525. for_each_zone_zonelist(zone, z, zonelist, offset) {
  1526. unsigned long size = zone->present_pages;
  1527. unsigned long high = zone->pages_high;
  1528. if (size > high)
  1529. sum += size - high;
  1530. }
  1531. return sum;
  1532. }
  1533. /*
  1534. * Amount of free RAM allocatable within ZONE_DMA and ZONE_NORMAL
  1535. */
  1536. unsigned int nr_free_buffer_pages(void)
  1537. {
  1538. return nr_free_zone_pages(gfp_zone(GFP_USER));
  1539. }
  1540. EXPORT_SYMBOL_GPL(nr_free_buffer_pages);
  1541. /*
  1542. * Amount of free RAM allocatable within all zones
  1543. */
  1544. unsigned int nr_free_pagecache_pages(void)
  1545. {
  1546. return nr_free_zone_pages(gfp_zone(GFP_HIGHUSER_MOVABLE));
  1547. }
  1548. static inline void show_node(struct zone *zone)
  1549. {
  1550. if (NUMA_BUILD)
  1551. printk("Node %d ", zone_to_nid(zone));
  1552. }
  1553. void si_meminfo(struct sysinfo *val)
  1554. {
  1555. val->totalram = totalram_pages;
  1556. val->sharedram = 0;
  1557. val->freeram = global_page_state(NR_FREE_PAGES);
  1558. val->bufferram = nr_blockdev_pages();
  1559. val->totalhigh = totalhigh_pages;
  1560. val->freehigh = nr_free_highpages();
  1561. val->mem_unit = PAGE_SIZE;
  1562. }
  1563. EXPORT_SYMBOL(si_meminfo);
  1564. #ifdef CONFIG_NUMA
  1565. void si_meminfo_node(struct sysinfo *val, int nid)
  1566. {
  1567. pg_data_t *pgdat = NODE_DATA(nid);
  1568. val->totalram = pgdat->node_present_pages;
  1569. val->freeram = node_page_state(nid, NR_FREE_PAGES);
  1570. #ifdef CONFIG_HIGHMEM
  1571. val->totalhigh = pgdat->node_zones[ZONE_HIGHMEM].present_pages;
  1572. val->freehigh = zone_page_state(&pgdat->node_zones[ZONE_HIGHMEM],
  1573. NR_FREE_PAGES);
  1574. #else
  1575. val->totalhigh = 0;
  1576. val->freehigh = 0;
  1577. #endif
  1578. val->mem_unit = PAGE_SIZE;
  1579. }
  1580. #endif
  1581. #define K(x) ((x) << (PAGE_SHIFT-10))
  1582. /*
  1583. * Show free area list (used inside shift_scroll-lock stuff)
  1584. * We also calculate the percentage fragmentation. We do this by counting the
  1585. * memory on each free list with the exception of the first item on the list.
  1586. */
  1587. void show_free_areas(void)
  1588. {
  1589. int cpu;
  1590. struct zone *zone;
  1591. for_each_zone(zone) {
  1592. if (!populated_zone(zone))
  1593. continue;
  1594. show_node(zone);
  1595. printk("%s per-cpu:\n", zone->name);
  1596. for_each_online_cpu(cpu) {
  1597. struct per_cpu_pageset *pageset;
  1598. pageset = zone_pcp(zone, cpu);
  1599. printk("CPU %4d: hi:%5d, btch:%4d usd:%4d\n",
  1600. cpu, pageset->pcp.high,
  1601. pageset->pcp.batch, pageset->pcp.count);
  1602. }
  1603. }
  1604. printk("Active:%lu inactive:%lu dirty:%lu writeback:%lu unstable:%lu\n"
  1605. " free:%lu slab:%lu mapped:%lu pagetables:%lu bounce:%lu\n",
  1606. global_page_state(NR_ACTIVE),
  1607. global_page_state(NR_INACTIVE),
  1608. global_page_state(NR_FILE_DIRTY),
  1609. global_page_state(NR_WRITEBACK),
  1610. global_page_state(NR_UNSTABLE_NFS),
  1611. global_page_state(NR_FREE_PAGES),
  1612. global_page_state(NR_SLAB_RECLAIMABLE) +
  1613. global_page_state(NR_SLAB_UNRECLAIMABLE),
  1614. global_page_state(NR_FILE_MAPPED),
  1615. global_page_state(NR_PAGETABLE),
  1616. global_page_state(NR_BOUNCE));
  1617. for_each_zone(zone) {
  1618. int i;
  1619. if (!populated_zone(zone))
  1620. continue;
  1621. show_node(zone);
  1622. printk("%s"
  1623. " free:%lukB"
  1624. " min:%lukB"
  1625. " low:%lukB"
  1626. " high:%lukB"
  1627. " active:%lukB"
  1628. " inactive:%lukB"
  1629. " present:%lukB"
  1630. " pages_scanned:%lu"
  1631. " all_unreclaimable? %s"
  1632. "\n",
  1633. zone->name,
  1634. K(zone_page_state(zone, NR_FREE_PAGES)),
  1635. K(zone->pages_min),
  1636. K(zone->pages_low),
  1637. K(zone->pages_high),
  1638. K(zone_page_state(zone, NR_ACTIVE)),
  1639. K(zone_page_state(zone, NR_INACTIVE)),
  1640. K(zone->present_pages),
  1641. zone->pages_scanned,
  1642. (zone_is_all_unreclaimable(zone) ? "yes" : "no")
  1643. );
  1644. printk("lowmem_reserve[]:");
  1645. for (i = 0; i < MAX_NR_ZONES; i++)
  1646. printk(" %lu", zone->lowmem_reserve[i]);
  1647. printk("\n");
  1648. }
  1649. for_each_zone(zone) {
  1650. unsigned long nr[MAX_ORDER], flags, order, total = 0;
  1651. if (!populated_zone(zone))
  1652. continue;
  1653. show_node(zone);
  1654. printk("%s: ", zone->name);
  1655. spin_lock_irqsave(&zone->lock, flags);
  1656. for (order = 0; order < MAX_ORDER; order++) {
  1657. nr[order] = zone->free_area[order].nr_free;
  1658. total += nr[order] << order;
  1659. }
  1660. spin_unlock_irqrestore(&zone->lock, flags);
  1661. for (order = 0; order < MAX_ORDER; order++)
  1662. printk("%lu*%lukB ", nr[order], K(1UL) << order);
  1663. printk("= %lukB\n", K(total));
  1664. }
  1665. printk("%ld total pagecache pages\n", global_page_state(NR_FILE_PAGES));
  1666. show_swap_cache_info();
  1667. }
  1668. static void zoneref_set_zone(struct zone *zone, struct zoneref *zoneref)
  1669. {
  1670. zoneref->zone = zone;
  1671. zoneref->zone_idx = zone_idx(zone);
  1672. }
  1673. /*
  1674. * Builds allocation fallback zone lists.
  1675. *
  1676. * Add all populated zones of a node to the zonelist.
  1677. */
  1678. static int build_zonelists_node(pg_data_t *pgdat, struct zonelist *zonelist,
  1679. int nr_zones, enum zone_type zone_type)
  1680. {
  1681. struct zone *zone;
  1682. BUG_ON(zone_type >= MAX_NR_ZONES);
  1683. zone_type++;
  1684. do {
  1685. zone_type--;
  1686. zone = pgdat->node_zones + zone_type;
  1687. if (populated_zone(zone)) {
  1688. zoneref_set_zone(zone,
  1689. &zonelist->_zonerefs[nr_zones++]);
  1690. check_highest_zone(zone_type);
  1691. }
  1692. } while (zone_type);
  1693. return nr_zones;
  1694. }
  1695. /*
  1696. * zonelist_order:
  1697. * 0 = automatic detection of better ordering.
  1698. * 1 = order by ([node] distance, -zonetype)
  1699. * 2 = order by (-zonetype, [node] distance)
  1700. *
  1701. * If not NUMA, ZONELIST_ORDER_ZONE and ZONELIST_ORDER_NODE will create
  1702. * the same zonelist. So only NUMA can configure this param.
  1703. */
  1704. #define ZONELIST_ORDER_DEFAULT 0
  1705. #define ZONELIST_ORDER_NODE 1
  1706. #define ZONELIST_ORDER_ZONE 2
  1707. /* zonelist order in the kernel.
  1708. * set_zonelist_order() will set this to NODE or ZONE.
  1709. */
  1710. static int current_zonelist_order = ZONELIST_ORDER_DEFAULT;
  1711. static char zonelist_order_name[3][8] = {"Default", "Node", "Zone"};
  1712. #ifdef CONFIG_NUMA
  1713. /* The value user specified ....changed by config */
  1714. static int user_zonelist_order = ZONELIST_ORDER_DEFAULT;
  1715. /* string for sysctl */
  1716. #define NUMA_ZONELIST_ORDER_LEN 16
  1717. char numa_zonelist_order[16] = "default";
  1718. /*
  1719. * interface for configure zonelist ordering.
  1720. * command line option "numa_zonelist_order"
  1721. * = "[dD]efault - default, automatic configuration.
  1722. * = "[nN]ode - order by node locality, then by zone within node
  1723. * = "[zZ]one - order by zone, then by locality within zone
  1724. */
  1725. static int __parse_numa_zonelist_order(char *s)
  1726. {
  1727. if (*s == 'd' || *s == 'D') {
  1728. user_zonelist_order = ZONELIST_ORDER_DEFAULT;
  1729. } else if (*s == 'n' || *s == 'N') {
  1730. user_zonelist_order = ZONELIST_ORDER_NODE;
  1731. } else if (*s == 'z' || *s == 'Z') {
  1732. user_zonelist_order = ZONELIST_ORDER_ZONE;
  1733. } else {
  1734. printk(KERN_WARNING
  1735. "Ignoring invalid numa_zonelist_order value: "
  1736. "%s\n", s);
  1737. return -EINVAL;
  1738. }
  1739. return 0;
  1740. }
  1741. static __init int setup_numa_zonelist_order(char *s)
  1742. {
  1743. if (s)
  1744. return __parse_numa_zonelist_order(s);
  1745. return 0;
  1746. }
  1747. early_param("numa_zonelist_order", setup_numa_zonelist_order);
  1748. /*
  1749. * sysctl handler for numa_zonelist_order
  1750. */
  1751. int numa_zonelist_order_handler(ctl_table *table, int write,
  1752. struct file *file, void __user *buffer, size_t *length,
  1753. loff_t *ppos)
  1754. {
  1755. char saved_string[NUMA_ZONELIST_ORDER_LEN];
  1756. int ret;
  1757. if (write)
  1758. strncpy(saved_string, (char*)table->data,
  1759. NUMA_ZONELIST_ORDER_LEN);
  1760. ret = proc_dostring(table, write, file, buffer, length, ppos);
  1761. if (ret)
  1762. return ret;
  1763. if (write) {
  1764. int oldval = user_zonelist_order;
  1765. if (__parse_numa_zonelist_order((char*)table->data)) {
  1766. /*
  1767. * bogus value. restore saved string
  1768. */
  1769. strncpy((char*)table->data, saved_string,
  1770. NUMA_ZONELIST_ORDER_LEN);
  1771. user_zonelist_order = oldval;
  1772. } else if (oldval != user_zonelist_order)
  1773. build_all_zonelists();
  1774. }
  1775. return 0;
  1776. }
  1777. #define MAX_NODE_LOAD (num_online_nodes())
  1778. static int node_load[MAX_NUMNODES];
  1779. /**
  1780. * find_next_best_node - find the next node that should appear in a given node's fallback list
  1781. * @node: node whose fallback list we're appending
  1782. * @used_node_mask: nodemask_t of already used nodes
  1783. *
  1784. * We use a number of factors to determine which is the next node that should
  1785. * appear on a given node's fallback list. The node should not have appeared
  1786. * already in @node's fallback list, and it should be the next closest node
  1787. * according to the distance array (which contains arbitrary distance values
  1788. * from each node to each node in the system), and should also prefer nodes
  1789. * with no CPUs, since presumably they'll have very little allocation pressure
  1790. * on them otherwise.
  1791. * It returns -1 if no node is found.
  1792. */
  1793. static int find_next_best_node(int node, nodemask_t *used_node_mask)
  1794. {
  1795. int n, val;
  1796. int min_val = INT_MAX;
  1797. int best_node = -1;
  1798. node_to_cpumask_ptr(tmp, 0);
  1799. /* Use the local node if we haven't already */
  1800. if (!node_isset(node, *used_node_mask)) {
  1801. node_set(node, *used_node_mask);
  1802. return node;
  1803. }
  1804. for_each_node_state(n, N_HIGH_MEMORY) {
  1805. /* Don't want a node to appear more than once */
  1806. if (node_isset(n, *used_node_mask))
  1807. continue;
  1808. /* Use the distance array to find the distance */
  1809. val = node_distance(node, n);
  1810. /* Penalize nodes under us ("prefer the next node") */
  1811. val += (n < node);
  1812. /* Give preference to headless and unused nodes */
  1813. node_to_cpumask_ptr_next(tmp, n);
  1814. if (!cpus_empty(*tmp))
  1815. val += PENALTY_FOR_NODE_WITH_CPUS;
  1816. /* Slight preference for less loaded node */
  1817. val *= (MAX_NODE_LOAD*MAX_NUMNODES);
  1818. val += node_load[n];
  1819. if (val < min_val) {
  1820. min_val = val;
  1821. best_node = n;
  1822. }
  1823. }
  1824. if (best_node >= 0)
  1825. node_set(best_node, *used_node_mask);
  1826. return best_node;
  1827. }
  1828. /*
  1829. * Build zonelists ordered by node and zones within node.
  1830. * This results in maximum locality--normal zone overflows into local
  1831. * DMA zone, if any--but risks exhausting DMA zone.
  1832. */
  1833. static void build_zonelists_in_node_order(pg_data_t *pgdat, int node)
  1834. {
  1835. int j;
  1836. struct zonelist *zonelist;
  1837. zonelist = &pgdat->node_zonelists[0];
  1838. for (j = 0; zonelist->_zonerefs[j].zone != NULL; j++)
  1839. ;
  1840. j = build_zonelists_node(NODE_DATA(node), zonelist, j,
  1841. MAX_NR_ZONES - 1);
  1842. zonelist->_zonerefs[j].zone = NULL;
  1843. zonelist->_zonerefs[j].zone_idx = 0;
  1844. }
  1845. /*
  1846. * Build gfp_thisnode zonelists
  1847. */
  1848. static void build_thisnode_zonelists(pg_data_t *pgdat)
  1849. {
  1850. int j;
  1851. struct zonelist *zonelist;
  1852. zonelist = &pgdat->node_zonelists[1];
  1853. j = build_zonelists_node(pgdat, zonelist, 0, MAX_NR_ZONES - 1);
  1854. zonelist->_zonerefs[j].zone = NULL;
  1855. zonelist->_zonerefs[j].zone_idx = 0;
  1856. }
  1857. /*
  1858. * Build zonelists ordered by zone and nodes within zones.
  1859. * This results in conserving DMA zone[s] until all Normal memory is
  1860. * exhausted, but results in overflowing to remote node while memory
  1861. * may still exist in local DMA zone.
  1862. */
  1863. static int node_order[MAX_NUMNODES];
  1864. static void build_zonelists_in_zone_order(pg_data_t *pgdat, int nr_nodes)
  1865. {
  1866. int pos, j, node;
  1867. int zone_type; /* needs to be signed */
  1868. struct zone *z;
  1869. struct zonelist *zonelist;
  1870. zonelist = &pgdat->node_zonelists[0];
  1871. pos = 0;
  1872. for (zone_type = MAX_NR_ZONES - 1; zone_type >= 0; zone_type--) {
  1873. for (j = 0; j < nr_nodes; j++) {
  1874. node = node_order[j];
  1875. z = &NODE_DATA(node)->node_zones[zone_type];
  1876. if (populated_zone(z)) {
  1877. zoneref_set_zone(z,
  1878. &zonelist->_zonerefs[pos++]);
  1879. check_highest_zone(zone_type);
  1880. }
  1881. }
  1882. }
  1883. zonelist->_zonerefs[pos].zone = NULL;
  1884. zonelist->_zonerefs[pos].zone_idx = 0;
  1885. }
  1886. static int default_zonelist_order(void)
  1887. {
  1888. int nid, zone_type;
  1889. unsigned long low_kmem_size,total_size;
  1890. struct zone *z;
  1891. int average_size;
  1892. /*
  1893. * ZONE_DMA and ZONE_DMA32 can be very small area in the sytem.
  1894. * If they are really small and used heavily, the system can fall
  1895. * into OOM very easily.
  1896. * This function detect ZONE_DMA/DMA32 size and confgigures zone order.
  1897. */
  1898. /* Is there ZONE_NORMAL ? (ex. ppc has only DMA zone..) */
  1899. low_kmem_size = 0;
  1900. total_size = 0;
  1901. for_each_online_node(nid) {
  1902. for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
  1903. z = &NODE_DATA(nid)->node_zones[zone_type];
  1904. if (populated_zone(z)) {
  1905. if (zone_type < ZONE_NORMAL)
  1906. low_kmem_size += z->present_pages;
  1907. total_size += z->present_pages;
  1908. }
  1909. }
  1910. }
  1911. if (!low_kmem_size || /* there are no DMA area. */
  1912. low_kmem_size > total_size/2) /* DMA/DMA32 is big. */
  1913. return ZONELIST_ORDER_NODE;
  1914. /*
  1915. * look into each node's config.
  1916. * If there is a node whose DMA/DMA32 memory is very big area on
  1917. * local memory, NODE_ORDER may be suitable.
  1918. */
  1919. average_size = total_size /
  1920. (nodes_weight(node_states[N_HIGH_MEMORY]) + 1);
  1921. for_each_online_node(nid) {
  1922. low_kmem_size = 0;
  1923. total_size = 0;
  1924. for (zone_type = 0; zone_type < MAX_NR_ZONES; zone_type++) {
  1925. z = &NODE_DATA(nid)->node_zones[zone_type];
  1926. if (populated_zone(z)) {
  1927. if (zone_type < ZONE_NORMAL)
  1928. low_kmem_size += z->present_pages;
  1929. total_size += z->present_pages;
  1930. }
  1931. }
  1932. if (low_kmem_size &&
  1933. total_size > average_size && /* ignore small node */
  1934. low_kmem_size > total_size * 70/100)
  1935. return ZONELIST_ORDER_NODE;
  1936. }
  1937. return ZONELIST_ORDER_ZONE;
  1938. }
  1939. static void set_zonelist_order(void)
  1940. {
  1941. if (user_zonelist_order == ZONELIST_ORDER_DEFAULT)
  1942. current_zonelist_order = default_zonelist_order();
  1943. else
  1944. current_zonelist_order = user_zonelist_order;
  1945. }
  1946. static void build_zonelists(pg_data_t *pgdat)
  1947. {
  1948. int j, node, load;
  1949. enum zone_type i;
  1950. nodemask_t used_mask;
  1951. int local_node, prev_node;
  1952. struct zonelist *zonelist;
  1953. int order = current_zonelist_order;
  1954. /* initialize zonelists */
  1955. for (i = 0; i < MAX_ZONELISTS; i++) {
  1956. zonelist = pgdat->node_zonelists + i;
  1957. zonelist->_zonerefs[0].zone = NULL;
  1958. zonelist->_zonerefs[0].zone_idx = 0;
  1959. }
  1960. /* NUMA-aware ordering of nodes */
  1961. local_node = pgdat->node_id;
  1962. load = num_online_nodes();
  1963. prev_node = local_node;
  1964. nodes_clear(used_mask);
  1965. memset(node_load, 0, sizeof(node_load));
  1966. memset(node_order, 0, sizeof(node_order));
  1967. j = 0;
  1968. while ((node = find_next_best_node(local_node, &used_mask)) >= 0) {
  1969. int distance = node_distance(local_node, node);
  1970. /*
  1971. * If another node is sufficiently far away then it is better
  1972. * to reclaim pages in a zone before going off node.
  1973. */
  1974. if (distance > RECLAIM_DISTANCE)
  1975. zone_reclaim_mode = 1;
  1976. /*
  1977. * We don't want to pressure a particular node.
  1978. * So adding penalty to the first node in same
  1979. * distance group to make it round-robin.
  1980. */
  1981. if (distance != node_distance(local_node, prev_node))
  1982. node_load[node] = load;
  1983. prev_node = node;
  1984. load--;
  1985. if (order == ZONELIST_ORDER_NODE)
  1986. build_zonelists_in_node_order(pgdat, node);
  1987. else
  1988. node_order[j++] = node; /* remember order */
  1989. }
  1990. if (order == ZONELIST_ORDER_ZONE) {
  1991. /* calculate node order -- i.e., DMA last! */
  1992. build_zonelists_in_zone_order(pgdat, j);
  1993. }
  1994. build_thisnode_zonelists(pgdat);
  1995. }
  1996. /* Construct the zonelist performance cache - see further mmzone.h */
  1997. static void build_zonelist_cache(pg_data_t *pgdat)
  1998. {
  1999. struct zonelist *zonelist;
  2000. struct zonelist_cache *zlc;
  2001. struct zoneref *z;
  2002. zonelist = &pgdat->node_zonelists[0];
  2003. zonelist->zlcache_ptr = zlc = &zonelist->zlcache;
  2004. bitmap_zero(zlc->fullzones, MAX_ZONES_PER_ZONELIST);
  2005. for (z = zonelist->_zonerefs; z->zone; z++)
  2006. zlc->z_to_n[z - zonelist->_zonerefs] = zonelist_node_idx(z);
  2007. }
  2008. #else /* CONFIG_NUMA */
  2009. static void set_zonelist_order(void)
  2010. {
  2011. current_zonelist_order = ZONELIST_ORDER_ZONE;
  2012. }
  2013. static void build_zonelists(pg_data_t *pgdat)
  2014. {
  2015. int node, local_node;
  2016. enum zone_type j;
  2017. struct zonelist *zonelist;
  2018. local_node = pgdat->node_id;
  2019. zonelist = &pgdat->node_zonelists[0];
  2020. j = build_zonelists_node(pgdat, zonelist, 0, MAX_NR_ZONES - 1);
  2021. /*
  2022. * Now we build the zonelist so that it contains the zones
  2023. * of all the other nodes.
  2024. * We don't want to pressure a particular node, so when
  2025. * building the zones for node N, we make sure that the
  2026. * zones coming right after the local ones are those from
  2027. * node N+1 (modulo N)
  2028. */
  2029. for (node = local_node + 1; node < MAX_NUMNODES; node++) {
  2030. if (!node_online(node))
  2031. continue;
  2032. j = build_zonelists_node(NODE_DATA(node), zonelist, j,
  2033. MAX_NR_ZONES - 1);
  2034. }
  2035. for (node = 0; node < local_node; node++) {
  2036. if (!node_online(node))
  2037. continue;
  2038. j = build_zonelists_node(NODE_DATA(node), zonelist, j,
  2039. MAX_NR_ZONES - 1);
  2040. }
  2041. zonelist->_zonerefs[j].zone = NULL;
  2042. zonelist->_zonerefs[j].zone_idx = 0;
  2043. }
  2044. /* non-NUMA variant of zonelist performance cache - just NULL zlcache_ptr */
  2045. static void build_zonelist_cache(pg_data_t *pgdat)
  2046. {
  2047. pgdat->node_zonelists[0].zlcache_ptr = NULL;
  2048. }
  2049. #endif /* CONFIG_NUMA */
  2050. /* return values int ....just for stop_machine() */
  2051. static int __build_all_zonelists(void *dummy)
  2052. {
  2053. int nid;
  2054. for_each_online_node(nid) {
  2055. pg_data_t *pgdat = NODE_DATA(nid);
  2056. build_zonelists(pgdat);
  2057. build_zonelist_cache(pgdat);
  2058. }
  2059. return 0;
  2060. }
  2061. void build_all_zonelists(void)
  2062. {
  2063. set_zonelist_order();
  2064. if (system_state == SYSTEM_BOOTING) {
  2065. __build_all_zonelists(NULL);
  2066. mminit_verify_zonelist();
  2067. cpuset_init_current_mems_allowed();
  2068. } else {
  2069. /* we have to stop all cpus to guarantee there is no user
  2070. of zonelist */
  2071. stop_machine(__build_all_zonelists, NULL, NULL);
  2072. /* cpuset refresh routine should be here */
  2073. }
  2074. vm_total_pages = nr_free_pagecache_pages();
  2075. /*
  2076. * Disable grouping by mobility if the number of pages in the
  2077. * system is too low to allow the mechanism to work. It would be
  2078. * more accurate, but expensive to check per-zone. This check is
  2079. * made on memory-hotadd so a system can start with mobility
  2080. * disabled and enable it later
  2081. */
  2082. if (vm_total_pages < (pageblock_nr_pages * MIGRATE_TYPES))
  2083. page_group_by_mobility_disabled = 1;
  2084. else
  2085. page_group_by_mobility_disabled = 0;
  2086. printk("Built %i zonelists in %s order, mobility grouping %s. "
  2087. "Total pages: %ld\n",
  2088. num_online_nodes(),
  2089. zonelist_order_name[current_zonelist_order],
  2090. page_group_by_mobility_disabled ? "off" : "on",
  2091. vm_total_pages);
  2092. #ifdef CONFIG_NUMA
  2093. printk("Policy zone: %s\n", zone_names[policy_zone]);
  2094. #endif
  2095. }
  2096. /*
  2097. * Helper functions to size the waitqueue hash table.
  2098. * Essentially these want to choose hash table sizes sufficiently
  2099. * large so that collisions trying to wait on pages are rare.
  2100. * But in fact, the number of active page waitqueues on typical
  2101. * systems is ridiculously low, less than 200. So this is even
  2102. * conservative, even though it seems large.
  2103. *
  2104. * The constant PAGES_PER_WAITQUEUE specifies the ratio of pages to
  2105. * waitqueues, i.e. the size of the waitq table given the number of pages.
  2106. */
  2107. #define PAGES_PER_WAITQUEUE 256
  2108. #ifndef CONFIG_MEMORY_HOTPLUG
  2109. static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
  2110. {
  2111. unsigned long size = 1;
  2112. pages /= PAGES_PER_WAITQUEUE;
  2113. while (size < pages)
  2114. size <<= 1;
  2115. /*
  2116. * Once we have dozens or even hundreds of threads sleeping
  2117. * on IO we've got bigger problems than wait queue collision.
  2118. * Limit the size of the wait table to a reasonable size.
  2119. */
  2120. size = min(size, 4096UL);
  2121. return max(size, 4UL);
  2122. }
  2123. #else
  2124. /*
  2125. * A zone's size might be changed by hot-add, so it is not possible to determine
  2126. * a suitable size for its wait_table. So we use the maximum size now.
  2127. *
  2128. * The max wait table size = 4096 x sizeof(wait_queue_head_t). ie:
  2129. *
  2130. * i386 (preemption config) : 4096 x 16 = 64Kbyte.
  2131. * ia64, x86-64 (no preemption): 4096 x 20 = 80Kbyte.
  2132. * ia64, x86-64 (preemption) : 4096 x 24 = 96Kbyte.
  2133. *
  2134. * The maximum entries are prepared when a zone's memory is (512K + 256) pages
  2135. * or more by the traditional way. (See above). It equals:
  2136. *
  2137. * i386, x86-64, powerpc(4K page size) : = ( 2G + 1M)byte.
  2138. * ia64(16K page size) : = ( 8G + 4M)byte.
  2139. * powerpc (64K page size) : = (32G +16M)byte.
  2140. */
  2141. static inline unsigned long wait_table_hash_nr_entries(unsigned long pages)
  2142. {
  2143. return 4096UL;
  2144. }
  2145. #endif
  2146. /*
  2147. * This is an integer logarithm so that shifts can be used later
  2148. * to extract the more random high bits from the multiplicative
  2149. * hash function before the remainder is taken.
  2150. */
  2151. static inline unsigned long wait_table_bits(unsigned long size)
  2152. {
  2153. return ffz(~size);
  2154. }
  2155. #define LONG_ALIGN(x) (((x)+(sizeof(long))-1)&~((sizeof(long))-1))
  2156. /*
  2157. * Mark a number of pageblocks as MIGRATE_RESERVE. The number
  2158. * of blocks reserved is based on zone->pages_min. The memory within the
  2159. * reserve will tend to store contiguous free pages. Setting min_free_kbytes
  2160. * higher will lead to a bigger reserve which will get freed as contiguous
  2161. * blocks as reclaim kicks in
  2162. */
  2163. static void setup_zone_migrate_reserve(struct zone *zone)
  2164. {
  2165. unsigned long start_pfn, pfn, end_pfn;
  2166. struct page *page;
  2167. unsigned long reserve, block_migratetype;
  2168. /* Get the start pfn, end pfn and the number of blocks to reserve */
  2169. start_pfn = zone->zone_start_pfn;
  2170. end_pfn = start_pfn + zone->spanned_pages;
  2171. reserve = roundup(zone->pages_min, pageblock_nr_pages) >>
  2172. pageblock_order;
  2173. for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
  2174. if (!pfn_valid(pfn))
  2175. continue;
  2176. page = pfn_to_page(pfn);
  2177. /* Watch out for overlapping nodes */
  2178. if (page_to_nid(page) != zone_to_nid(zone))
  2179. continue;
  2180. /* Blocks with reserved pages will never free, skip them. */
  2181. if (PageReserved(page))
  2182. continue;
  2183. block_migratetype = get_pageblock_migratetype(page);
  2184. /* If this block is reserved, account for it */
  2185. if (reserve > 0 && block_migratetype == MIGRATE_RESERVE) {
  2186. reserve--;
  2187. continue;
  2188. }
  2189. /* Suitable for reserving if this block is movable */
  2190. if (reserve > 0 && block_migratetype == MIGRATE_MOVABLE) {
  2191. set_pageblock_migratetype(page, MIGRATE_RESERVE);
  2192. move_freepages_block(zone, page, MIGRATE_RESERVE);
  2193. reserve--;
  2194. continue;
  2195. }
  2196. /*
  2197. * If the reserve is met and this is a previous reserved block,
  2198. * take it back
  2199. */
  2200. if (block_migratetype == MIGRATE_RESERVE) {
  2201. set_pageblock_migratetype(page, MIGRATE_MOVABLE);
  2202. move_freepages_block(zone, page, MIGRATE_MOVABLE);
  2203. }
  2204. }
  2205. }
  2206. /*
  2207. * Initially all pages are reserved - free ones are freed
  2208. * up by free_all_bootmem() once the early boot process is
  2209. * done. Non-atomic initialization, single-pass.
  2210. */
  2211. void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone,
  2212. unsigned long start_pfn, enum memmap_context context)
  2213. {
  2214. struct page *page;
  2215. unsigned long end_pfn = start_pfn + size;
  2216. unsigned long pfn;
  2217. struct zone *z;
  2218. z = &NODE_DATA(nid)->node_zones[zone];
  2219. for (pfn = start_pfn; pfn < end_pfn; pfn++) {
  2220. /*
  2221. * There can be holes in boot-time mem_map[]s
  2222. * handed to this function. They do not
  2223. * exist on hotplugged memory.
  2224. */
  2225. if (context == MEMMAP_EARLY) {
  2226. if (!early_pfn_valid(pfn))
  2227. continue;
  2228. if (!early_pfn_in_nid(pfn, nid))
  2229. continue;
  2230. }
  2231. page = pfn_to_page(pfn);
  2232. set_page_links(page, zone, nid, pfn);
  2233. mminit_verify_page_links(page, zone, nid, pfn);
  2234. init_page_count(page);
  2235. reset_page_mapcount(page);
  2236. SetPageReserved(page);
  2237. /*
  2238. * Mark the block movable so that blocks are reserved for
  2239. * movable at startup. This will force kernel allocations
  2240. * to reserve their blocks rather than leaking throughout
  2241. * the address space during boot when many long-lived
  2242. * kernel allocations are made. Later some blocks near
  2243. * the start are marked MIGRATE_RESERVE by
  2244. * setup_zone_migrate_reserve()
  2245. *
  2246. * bitmap is created for zone's valid pfn range. but memmap
  2247. * can be created for invalid pages (for alignment)
  2248. * check here not to call set_pageblock_migratetype() against
  2249. * pfn out of zone.
  2250. */
  2251. if ((z->zone_start_pfn <= pfn)
  2252. && (pfn < z->zone_start_pfn + z->spanned_pages)
  2253. && !(pfn & (pageblock_nr_pages - 1)))
  2254. set_pageblock_migratetype(page, MIGRATE_MOVABLE);
  2255. INIT_LIST_HEAD(&page->lru);
  2256. #ifdef WANT_PAGE_VIRTUAL
  2257. /* The shift won't overflow because ZONE_NORMAL is below 4G. */
  2258. if (!is_highmem_idx(zone))
  2259. set_page_address(page, __va(pfn << PAGE_SHIFT));
  2260. #endif
  2261. }
  2262. }
  2263. static void __meminit zone_init_free_lists(struct zone *zone)
  2264. {
  2265. int order, t;
  2266. for_each_migratetype_order(order, t) {
  2267. INIT_LIST_HEAD(&zone->free_area[order].free_list[t]);
  2268. zone->free_area[order].nr_free = 0;
  2269. }
  2270. }
  2271. #ifndef __HAVE_ARCH_MEMMAP_INIT
  2272. #define memmap_init(size, nid, zone, start_pfn) \
  2273. memmap_init_zone((size), (nid), (zone), (start_pfn), MEMMAP_EARLY)
  2274. #endif
  2275. static int zone_batchsize(struct zone *zone)
  2276. {
  2277. int batch;
  2278. /*
  2279. * The per-cpu-pages pools are set to around 1000th of the
  2280. * size of the zone. But no more than 1/2 of a meg.
  2281. *
  2282. * OK, so we don't know how big the cache is. So guess.
  2283. */
  2284. batch = zone->present_pages / 1024;
  2285. if (batch * PAGE_SIZE > 512 * 1024)
  2286. batch = (512 * 1024) / PAGE_SIZE;
  2287. batch /= 4; /* We effectively *= 4 below */
  2288. if (batch < 1)
  2289. batch = 1;
  2290. /*
  2291. * Clamp the batch to a 2^n - 1 value. Having a power
  2292. * of 2 value was found to be more likely to have
  2293. * suboptimal cache aliasing properties in some cases.
  2294. *
  2295. * For example if 2 tasks are alternately allocating
  2296. * batches of pages, one task can end up with a lot
  2297. * of pages of one half of the possible page colors
  2298. * and the other with pages of the other colors.
  2299. */
  2300. batch = (1 << (fls(batch + batch/2)-1)) - 1;
  2301. return batch;
  2302. }
  2303. static void setup_pageset(struct per_cpu_pageset *p, unsigned long batch)
  2304. {
  2305. struct per_cpu_pages *pcp;
  2306. memset(p, 0, sizeof(*p));
  2307. pcp = &p->pcp;
  2308. pcp->count = 0;
  2309. pcp->high = 6 * batch;
  2310. pcp->batch = max(1UL, 1 * batch);
  2311. INIT_LIST_HEAD(&pcp->list);
  2312. }
  2313. /*
  2314. * setup_pagelist_highmark() sets the high water mark for hot per_cpu_pagelist
  2315. * to the value high for the pageset p.
  2316. */
  2317. static void setup_pagelist_highmark(struct per_cpu_pageset *p,
  2318. unsigned long high)
  2319. {
  2320. struct per_cpu_pages *pcp;
  2321. pcp = &p->pcp;
  2322. pcp->high = high;
  2323. pcp->batch = max(1UL, high/4);
  2324. if ((high/4) > (PAGE_SHIFT * 8))
  2325. pcp->batch = PAGE_SHIFT * 8;
  2326. }
  2327. #ifdef CONFIG_NUMA
  2328. /*
  2329. * Boot pageset table. One per cpu which is going to be used for all
  2330. * zones and all nodes. The parameters will be set in such a way
  2331. * that an item put on a list will immediately be handed over to
  2332. * the buddy list. This is safe since pageset manipulation is done
  2333. * with interrupts disabled.
  2334. *
  2335. * Some NUMA counter updates may also be caught by the boot pagesets.
  2336. *
  2337. * The boot_pagesets must be kept even after bootup is complete for
  2338. * unused processors and/or zones. They do play a role for bootstrapping
  2339. * hotplugged processors.
  2340. *
  2341. * zoneinfo_show() and maybe other functions do
  2342. * not check if the processor is online before following the pageset pointer.
  2343. * Other parts of the kernel may not check if the zone is available.
  2344. */
  2345. static struct per_cpu_pageset boot_pageset[NR_CPUS];
  2346. /*
  2347. * Dynamically allocate memory for the
  2348. * per cpu pageset array in struct zone.
  2349. */
  2350. static int __cpuinit process_zones(int cpu)
  2351. {
  2352. struct zone *zone, *dzone;
  2353. int node = cpu_to_node(cpu);
  2354. node_set_state(node, N_CPU); /* this node has a cpu */
  2355. for_each_zone(zone) {
  2356. if (!populated_zone(zone))
  2357. continue;
  2358. zone_pcp(zone, cpu) = kmalloc_node(sizeof(struct per_cpu_pageset),
  2359. GFP_KERNEL, node);
  2360. if (!zone_pcp(zone, cpu))
  2361. goto bad;
  2362. setup_pageset(zone_pcp(zone, cpu), zone_batchsize(zone));
  2363. if (percpu_pagelist_fraction)
  2364. setup_pagelist_highmark(zone_pcp(zone, cpu),
  2365. (zone->present_pages / percpu_pagelist_fraction));
  2366. }
  2367. return 0;
  2368. bad:
  2369. for_each_zone(dzone) {
  2370. if (!populated_zone(dzone))
  2371. continue;
  2372. if (dzone == zone)
  2373. break;
  2374. kfree(zone_pcp(dzone, cpu));
  2375. zone_pcp(dzone, cpu) = NULL;
  2376. }
  2377. return -ENOMEM;
  2378. }
  2379. static inline void free_zone_pagesets(int cpu)
  2380. {
  2381. struct zone *zone;
  2382. for_each_zone(zone) {
  2383. struct per_cpu_pageset *pset = zone_pcp(zone, cpu);
  2384. /* Free per_cpu_pageset if it is slab allocated */
  2385. if (pset != &boot_pageset[cpu])
  2386. kfree(pset);
  2387. zone_pcp(zone, cpu) = NULL;
  2388. }
  2389. }
  2390. static int __cpuinit pageset_cpuup_callback(struct notifier_block *nfb,
  2391. unsigned long action,
  2392. void *hcpu)
  2393. {
  2394. int cpu = (long)hcpu;
  2395. int ret = NOTIFY_OK;
  2396. switch (action) {
  2397. case CPU_UP_PREPARE:
  2398. case CPU_UP_PREPARE_FROZEN:
  2399. if (process_zones(cpu))
  2400. ret = NOTIFY_BAD;
  2401. break;
  2402. case CPU_UP_CANCELED:
  2403. case CPU_UP_CANCELED_FROZEN:
  2404. case CPU_DEAD:
  2405. case CPU_DEAD_FROZEN:
  2406. free_zone_pagesets(cpu);
  2407. break;
  2408. default:
  2409. break;
  2410. }
  2411. return ret;
  2412. }
  2413. static struct notifier_block __cpuinitdata pageset_notifier =
  2414. { &pageset_cpuup_callback, NULL, 0 };
  2415. void __init setup_per_cpu_pageset(void)
  2416. {
  2417. int err;
  2418. /* Initialize per_cpu_pageset for cpu 0.
  2419. * A cpuup callback will do this for every cpu
  2420. * as it comes online
  2421. */
  2422. err = process_zones(smp_processor_id());
  2423. BUG_ON(err);
  2424. register_cpu_notifier(&pageset_notifier);
  2425. }
  2426. #endif
  2427. static noinline __init_refok
  2428. int zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
  2429. {
  2430. int i;
  2431. struct pglist_data *pgdat = zone->zone_pgdat;
  2432. size_t alloc_size;
  2433. /*
  2434. * The per-page waitqueue mechanism uses hashed waitqueues
  2435. * per zone.
  2436. */
  2437. zone->wait_table_hash_nr_entries =
  2438. wait_table_hash_nr_entries(zone_size_pages);
  2439. zone->wait_table_bits =
  2440. wait_table_bits(zone->wait_table_hash_nr_entries);
  2441. alloc_size = zone->wait_table_hash_nr_entries
  2442. * sizeof(wait_queue_head_t);
  2443. if (!slab_is_available()) {
  2444. zone->wait_table = (wait_queue_head_t *)
  2445. alloc_bootmem_node(pgdat, alloc_size);
  2446. } else {
  2447. /*
  2448. * This case means that a zone whose size was 0 gets new memory
  2449. * via memory hot-add.
  2450. * But it may be the case that a new node was hot-added. In
  2451. * this case vmalloc() will not be able to use this new node's
  2452. * memory - this wait_table must be initialized to use this new
  2453. * node itself as well.
  2454. * To use this new node's memory, further consideration will be
  2455. * necessary.
  2456. */
  2457. zone->wait_table = vmalloc(alloc_size);
  2458. }
  2459. if (!zone->wait_table)
  2460. return -ENOMEM;
  2461. for(i = 0; i < zone->wait_table_hash_nr_entries; ++i)
  2462. init_waitqueue_head(zone->wait_table + i);
  2463. return 0;
  2464. }
  2465. static __meminit void zone_pcp_init(struct zone *zone)
  2466. {
  2467. int cpu;
  2468. unsigned long batch = zone_batchsize(zone);
  2469. for (cpu = 0; cpu < NR_CPUS; cpu++) {
  2470. #ifdef CONFIG_NUMA
  2471. /* Early boot. Slab allocator not functional yet */
  2472. zone_pcp(zone, cpu) = &boot_pageset[cpu];
  2473. setup_pageset(&boot_pageset[cpu],0);
  2474. #else
  2475. setup_pageset(zone_pcp(zone,cpu), batch);
  2476. #endif
  2477. }
  2478. if (zone->present_pages)
  2479. printk(KERN_DEBUG " %s zone: %lu pages, LIFO batch:%lu\n",
  2480. zone->name, zone->present_pages, batch);
  2481. }
  2482. __meminit int init_currently_empty_zone(struct zone *zone,
  2483. unsigned long zone_start_pfn,
  2484. unsigned long size,
  2485. enum memmap_context context)
  2486. {
  2487. struct pglist_data *pgdat = zone->zone_pgdat;
  2488. int ret;
  2489. ret = zone_wait_table_init(zone, size);
  2490. if (ret)
  2491. return ret;
  2492. pgdat->nr_zones = zone_idx(zone) + 1;
  2493. zone->zone_start_pfn = zone_start_pfn;
  2494. mminit_dprintk(MMINIT_TRACE, "memmap_init",
  2495. "Initialising map node %d zone %lu pfns %lu -> %lu\n",
  2496. pgdat->node_id,
  2497. (unsigned long)zone_idx(zone),
  2498. zone_start_pfn, (zone_start_pfn + size));
  2499. zone_init_free_lists(zone);
  2500. return 0;
  2501. }
  2502. #ifdef CONFIG_ARCH_POPULATES_NODE_MAP
  2503. /*
  2504. * Basic iterator support. Return the first range of PFNs for a node
  2505. * Note: nid == MAX_NUMNODES returns first region regardless of node
  2506. */
  2507. static int __meminit first_active_region_index_in_nid(int nid)
  2508. {
  2509. int i;
  2510. for (i = 0; i < nr_nodemap_entries; i++)
  2511. if (nid == MAX_NUMNODES || early_node_map[i].nid == nid)
  2512. return i;
  2513. return -1;
  2514. }
  2515. /*
  2516. * Basic iterator support. Return the next active range of PFNs for a node
  2517. * Note: nid == MAX_NUMNODES returns next region regardless of node
  2518. */
  2519. static int __meminit next_active_region_index_in_nid(int index, int nid)
  2520. {
  2521. for (index = index + 1; index < nr_nodemap_entries; index++)
  2522. if (nid == MAX_NUMNODES || early_node_map[index].nid == nid)
  2523. return index;
  2524. return -1;
  2525. }
  2526. #ifndef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID
  2527. /*
  2528. * Required by SPARSEMEM. Given a PFN, return what node the PFN is on.
  2529. * Architectures may implement their own version but if add_active_range()
  2530. * was used and there are no special requirements, this is a convenient
  2531. * alternative
  2532. */
  2533. int __meminit early_pfn_to_nid(unsigned long pfn)
  2534. {
  2535. int i;
  2536. for (i = 0; i < nr_nodemap_entries; i++) {
  2537. unsigned long start_pfn = early_node_map[i].start_pfn;
  2538. unsigned long end_pfn = early_node_map[i].end_pfn;
  2539. if (start_pfn <= pfn && pfn < end_pfn)
  2540. return early_node_map[i].nid;
  2541. }
  2542. return 0;
  2543. }
  2544. #endif /* CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID */
  2545. /* Basic iterator support to walk early_node_map[] */
  2546. #define for_each_active_range_index_in_nid(i, nid) \
  2547. for (i = first_active_region_index_in_nid(nid); i != -1; \
  2548. i = next_active_region_index_in_nid(i, nid))
  2549. /**
  2550. * free_bootmem_with_active_regions - Call free_bootmem_node for each active range
  2551. * @nid: The node to free memory on. If MAX_NUMNODES, all nodes are freed.
  2552. * @max_low_pfn: The highest PFN that will be passed to free_bootmem_node
  2553. *
  2554. * If an architecture guarantees that all ranges registered with
  2555. * add_active_ranges() contain no holes and may be freed, this
  2556. * this function may be used instead of calling free_bootmem() manually.
  2557. */
  2558. void __init free_bootmem_with_active_regions(int nid,
  2559. unsigned long max_low_pfn)
  2560. {
  2561. int i;
  2562. for_each_active_range_index_in_nid(i, nid) {
  2563. unsigned long size_pages = 0;
  2564. unsigned long end_pfn = early_node_map[i].end_pfn;
  2565. if (early_node_map[i].start_pfn >= max_low_pfn)
  2566. continue;
  2567. if (end_pfn > max_low_pfn)
  2568. end_pfn = max_low_pfn;
  2569. size_pages = end_pfn - early_node_map[i].start_pfn;
  2570. free_bootmem_node(NODE_DATA(early_node_map[i].nid),
  2571. PFN_PHYS(early_node_map[i].start_pfn),
  2572. size_pages << PAGE_SHIFT);
  2573. }
  2574. }
  2575. void __init work_with_active_regions(int nid, work_fn_t work_fn, void *data)
  2576. {
  2577. int i;
  2578. int ret;
  2579. for_each_active_range_index_in_nid(i, nid) {
  2580. ret = work_fn(early_node_map[i].start_pfn,
  2581. early_node_map[i].end_pfn, data);
  2582. if (ret)
  2583. break;
  2584. }
  2585. }
  2586. /**
  2587. * sparse_memory_present_with_active_regions - Call memory_present for each active range
  2588. * @nid: The node to call memory_present for. If MAX_NUMNODES, all nodes will be used.
  2589. *
  2590. * If an architecture guarantees that all ranges registered with
  2591. * add_active_ranges() contain no holes and may be freed, this
  2592. * function may be used instead of calling memory_present() manually.
  2593. */
  2594. void __init sparse_memory_present_with_active_regions(int nid)
  2595. {
  2596. int i;
  2597. for_each_active_range_index_in_nid(i, nid)
  2598. memory_present(early_node_map[i].nid,
  2599. early_node_map[i].start_pfn,
  2600. early_node_map[i].end_pfn);
  2601. }
  2602. /**
  2603. * push_node_boundaries - Push node boundaries to at least the requested boundary
  2604. * @nid: The nid of the node to push the boundary for
  2605. * @start_pfn: The start pfn of the node
  2606. * @end_pfn: The end pfn of the node
  2607. *
  2608. * In reserve-based hot-add, mem_map is allocated that is unused until hotadd
  2609. * time. Specifically, on x86_64, SRAT will report ranges that can potentially
  2610. * be hotplugged even though no physical memory exists. This function allows
  2611. * an arch to push out the node boundaries so mem_map is allocated that can
  2612. * be used later.
  2613. */
  2614. #ifdef CONFIG_MEMORY_HOTPLUG_RESERVE
  2615. void __init push_node_boundaries(unsigned int nid,
  2616. unsigned long start_pfn, unsigned long end_pfn)
  2617. {
  2618. mminit_dprintk(MMINIT_TRACE, "zoneboundary",
  2619. "Entering push_node_boundaries(%u, %lu, %lu)\n",
  2620. nid, start_pfn, end_pfn);
  2621. /* Initialise the boundary for this node if necessary */
  2622. if (node_boundary_end_pfn[nid] == 0)
  2623. node_boundary_start_pfn[nid] = -1UL;
  2624. /* Update the boundaries */
  2625. if (node_boundary_start_pfn[nid] > start_pfn)
  2626. node_boundary_start_pfn[nid] = start_pfn;
  2627. if (node_boundary_end_pfn[nid] < end_pfn)
  2628. node_boundary_end_pfn[nid] = end_pfn;
  2629. }
  2630. /* If necessary, push the node boundary out for reserve hotadd */
  2631. static void __meminit account_node_boundary(unsigned int nid,
  2632. unsigned long *start_pfn, unsigned long *end_pfn)
  2633. {
  2634. mminit_dprintk(MMINIT_TRACE, "zoneboundary",
  2635. "Entering account_node_boundary(%u, %lu, %lu)\n",
  2636. nid, *start_pfn, *end_pfn);
  2637. /* Return if boundary information has not been provided */
  2638. if (node_boundary_end_pfn[nid] == 0)
  2639. return;
  2640. /* Check the boundaries and update if necessary */
  2641. if (node_boundary_start_pfn[nid] < *start_pfn)
  2642. *start_pfn = node_boundary_start_pfn[nid];
  2643. if (node_boundary_end_pfn[nid] > *end_pfn)
  2644. *end_pfn = node_boundary_end_pfn[nid];
  2645. }
  2646. #else
  2647. void __init push_node_boundaries(unsigned int nid,
  2648. unsigned long start_pfn, unsigned long end_pfn) {}
  2649. static void __meminit account_node_boundary(unsigned int nid,
  2650. unsigned long *start_pfn, unsigned long *end_pfn) {}
  2651. #endif
  2652. /**
  2653. * get_pfn_range_for_nid - Return the start and end page frames for a node
  2654. * @nid: The nid to return the range for. If MAX_NUMNODES, the min and max PFN are returned.
  2655. * @start_pfn: Passed by reference. On return, it will have the node start_pfn.
  2656. * @end_pfn: Passed by reference. On return, it will have the node end_pfn.
  2657. *
  2658. * It returns the start and end page frame of a node based on information
  2659. * provided by an arch calling add_active_range(). If called for a node
  2660. * with no available memory, a warning is printed and the start and end
  2661. * PFNs will be 0.
  2662. */
  2663. void __meminit get_pfn_range_for_nid(unsigned int nid,
  2664. unsigned long *start_pfn, unsigned long *end_pfn)
  2665. {
  2666. int i;
  2667. *start_pfn = -1UL;
  2668. *end_pfn = 0;
  2669. for_each_active_range_index_in_nid(i, nid) {
  2670. *start_pfn = min(*start_pfn, early_node_map[i].start_pfn);
  2671. *end_pfn = max(*end_pfn, early_node_map[i].end_pfn);
  2672. }
  2673. if (*start_pfn == -1UL)
  2674. *start_pfn = 0;
  2675. /* Push the node boundaries out if requested */
  2676. account_node_boundary(nid, start_pfn, end_pfn);
  2677. }
  2678. /*
  2679. * This finds a zone that can be used for ZONE_MOVABLE pages. The
  2680. * assumption is made that zones within a node are ordered in monotonic
  2681. * increasing memory addresses so that the "highest" populated zone is used
  2682. */
  2683. static void __init find_usable_zone_for_movable(void)
  2684. {
  2685. int zone_index;
  2686. for (zone_index = MAX_NR_ZONES - 1; zone_index >= 0; zone_index--) {
  2687. if (zone_index == ZONE_MOVABLE)
  2688. continue;
  2689. if (arch_zone_highest_possible_pfn[zone_index] >
  2690. arch_zone_lowest_possible_pfn[zone_index])
  2691. break;
  2692. }
  2693. VM_BUG_ON(zone_index == -1);
  2694. movable_zone = zone_index;
  2695. }
  2696. /*
  2697. * The zone ranges provided by the architecture do not include ZONE_MOVABLE
  2698. * because it is sized independant of architecture. Unlike the other zones,
  2699. * the starting point for ZONE_MOVABLE is not fixed. It may be different
  2700. * in each node depending on the size of each node and how evenly kernelcore
  2701. * is distributed. This helper function adjusts the zone ranges
  2702. * provided by the architecture for a given node by using the end of the
  2703. * highest usable zone for ZONE_MOVABLE. This preserves the assumption that
  2704. * zones within a node are in order of monotonic increases memory addresses
  2705. */
  2706. static void __meminit adjust_zone_range_for_zone_movable(int nid,
  2707. unsigned long zone_type,
  2708. unsigned long node_start_pfn,
  2709. unsigned long node_end_pfn,
  2710. unsigned long *zone_start_pfn,
  2711. unsigned long *zone_end_pfn)
  2712. {
  2713. /* Only adjust if ZONE_MOVABLE is on this node */
  2714. if (zone_movable_pfn[nid]) {
  2715. /* Size ZONE_MOVABLE */
  2716. if (zone_type == ZONE_MOVABLE) {
  2717. *zone_start_pfn = zone_movable_pfn[nid];
  2718. *zone_end_pfn = min(node_end_pfn,
  2719. arch_zone_highest_possible_pfn[movable_zone]);
  2720. /* Adjust for ZONE_MOVABLE starting within this range */
  2721. } else if (*zone_start_pfn < zone_movable_pfn[nid] &&
  2722. *zone_end_pfn > zone_movable_pfn[nid]) {
  2723. *zone_end_pfn = zone_movable_pfn[nid];
  2724. /* Check if this whole range is within ZONE_MOVABLE */
  2725. } else if (*zone_start_pfn >= zone_movable_pfn[nid])
  2726. *zone_start_pfn = *zone_end_pfn;
  2727. }
  2728. }
  2729. /*
  2730. * Return the number of pages a zone spans in a node, including holes
  2731. * present_pages = zone_spanned_pages_in_node() - zone_absent_pages_in_node()
  2732. */
  2733. static unsigned long __meminit zone_spanned_pages_in_node(int nid,
  2734. unsigned long zone_type,
  2735. unsigned long *ignored)
  2736. {
  2737. unsigned long node_start_pfn, node_end_pfn;
  2738. unsigned long zone_start_pfn, zone_end_pfn;
  2739. /* Get the start and end of the node and zone */
  2740. get_pfn_range_for_nid(nid, &node_start_pfn, &node_end_pfn);
  2741. zone_start_pfn = arch_zone_lowest_possible_pfn[zone_type];
  2742. zone_end_pfn = arch_zone_highest_possible_pfn[zone_type];
  2743. adjust_zone_range_for_zone_movable(nid, zone_type,
  2744. node_start_pfn, node_end_pfn,
  2745. &zone_start_pfn, &zone_end_pfn);
  2746. /* Check that this node has pages within the zone's required range */
  2747. if (zone_end_pfn < node_start_pfn || zone_start_pfn > node_end_pfn)
  2748. return 0;
  2749. /* Move the zone boundaries inside the node if necessary */
  2750. zone_end_pfn = min(zone_end_pfn, node_end_pfn);
  2751. zone_start_pfn = max(zone_start_pfn, node_start_pfn);
  2752. /* Return the spanned pages */
  2753. return zone_end_pfn - zone_start_pfn;
  2754. }
  2755. /*
  2756. * Return the number of holes in a range on a node. If nid is MAX_NUMNODES,
  2757. * then all holes in the requested range will be accounted for.
  2758. */
  2759. static unsigned long __meminit __absent_pages_in_range(int nid,
  2760. unsigned long range_start_pfn,
  2761. unsigned long range_end_pfn)
  2762. {
  2763. int i = 0;
  2764. unsigned long prev_end_pfn = 0, hole_pages = 0;
  2765. unsigned long start_pfn;
  2766. /* Find the end_pfn of the first active range of pfns in the node */
  2767. i = first_active_region_index_in_nid(nid);
  2768. if (i == -1)
  2769. return 0;
  2770. prev_end_pfn = min(early_node_map[i].start_pfn, range_end_pfn);
  2771. /* Account for ranges before physical memory on this node */
  2772. if (early_node_map[i].start_pfn > range_start_pfn)
  2773. hole_pages = prev_end_pfn - range_start_pfn;
  2774. /* Find all holes for the zone within the node */
  2775. for (; i != -1; i = next_active_region_index_in_nid(i, nid)) {
  2776. /* No need to continue if prev_end_pfn is outside the zone */
  2777. if (prev_end_pfn >= range_end_pfn)
  2778. break;
  2779. /* Make sure the end of the zone is not within the hole */
  2780. start_pfn = min(early_node_map[i].start_pfn, range_end_pfn);
  2781. prev_end_pfn = max(prev_end_pfn, range_start_pfn);
  2782. /* Update the hole size cound and move on */
  2783. if (start_pfn > range_start_pfn) {
  2784. BUG_ON(prev_end_pfn > start_pfn);
  2785. hole_pages += start_pfn - prev_end_pfn;
  2786. }
  2787. prev_end_pfn = early_node_map[i].end_pfn;
  2788. }
  2789. /* Account for ranges past physical memory on this node */
  2790. if (range_end_pfn > prev_end_pfn)
  2791. hole_pages += range_end_pfn -
  2792. max(range_start_pfn, prev_end_pfn);
  2793. return hole_pages;
  2794. }
  2795. /**
  2796. * absent_pages_in_range - Return number of page frames in holes within a range
  2797. * @start_pfn: The start PFN to start searching for holes
  2798. * @end_pfn: The end PFN to stop searching for holes
  2799. *
  2800. * It returns the number of pages frames in memory holes within a range.
  2801. */
  2802. unsigned long __init absent_pages_in_range(unsigned long start_pfn,
  2803. unsigned long end_pfn)
  2804. {
  2805. return __absent_pages_in_range(MAX_NUMNODES, start_pfn, end_pfn);
  2806. }
  2807. /* Return the number of page frames in holes in a zone on a node */
  2808. static unsigned long __meminit zone_absent_pages_in_node(int nid,
  2809. unsigned long zone_type,
  2810. unsigned long *ignored)
  2811. {
  2812. unsigned long node_start_pfn, node_end_pfn;
  2813. unsigned long zone_start_pfn, zone_end_pfn;
  2814. get_pfn_range_for_nid(nid, &node_start_pfn, &node_end_pfn);
  2815. zone_start_pfn = max(arch_zone_lowest_possible_pfn[zone_type],
  2816. node_start_pfn);
  2817. zone_end_pfn = min(arch_zone_highest_possible_pfn[zone_type],
  2818. node_end_pfn);
  2819. adjust_zone_range_for_zone_movable(nid, zone_type,
  2820. node_start_pfn, node_end_pfn,
  2821. &zone_start_pfn, &zone_end_pfn);
  2822. return __absent_pages_in_range(nid, zone_start_pfn, zone_end_pfn);
  2823. }
  2824. #else
  2825. static inline unsigned long __meminit zone_spanned_pages_in_node(int nid,
  2826. unsigned long zone_type,
  2827. unsigned long *zones_size)
  2828. {
  2829. return zones_size[zone_type];
  2830. }
  2831. static inline unsigned long __meminit zone_absent_pages_in_node(int nid,
  2832. unsigned long zone_type,
  2833. unsigned long *zholes_size)
  2834. {
  2835. if (!zholes_size)
  2836. return 0;
  2837. return zholes_size[zone_type];
  2838. }
  2839. #endif
  2840. static void __meminit calculate_node_totalpages(struct pglist_data *pgdat,
  2841. unsigned long *zones_size, unsigned long *zholes_size)
  2842. {
  2843. unsigned long realtotalpages, totalpages = 0;
  2844. enum zone_type i;
  2845. for (i = 0; i < MAX_NR_ZONES; i++)
  2846. totalpages += zone_spanned_pages_in_node(pgdat->node_id, i,
  2847. zones_size);
  2848. pgdat->node_spanned_pages = totalpages;
  2849. realtotalpages = totalpages;
  2850. for (i = 0; i < MAX_NR_ZONES; i++)
  2851. realtotalpages -=
  2852. zone_absent_pages_in_node(pgdat->node_id, i,
  2853. zholes_size);
  2854. pgdat->node_present_pages = realtotalpages;
  2855. printk(KERN_DEBUG "On node %d totalpages: %lu\n", pgdat->node_id,
  2856. realtotalpages);
  2857. }
  2858. #ifndef CONFIG_SPARSEMEM
  2859. /*
  2860. * Calculate the size of the zone->blockflags rounded to an unsigned long
  2861. * Start by making sure zonesize is a multiple of pageblock_order by rounding
  2862. * up. Then use 1 NR_PAGEBLOCK_BITS worth of bits per pageblock, finally
  2863. * round what is now in bits to nearest long in bits, then return it in
  2864. * bytes.
  2865. */
  2866. static unsigned long __init usemap_size(unsigned long zonesize)
  2867. {
  2868. unsigned long usemapsize;
  2869. usemapsize = roundup(zonesize, pageblock_nr_pages);
  2870. usemapsize = usemapsize >> pageblock_order;
  2871. usemapsize *= NR_PAGEBLOCK_BITS;
  2872. usemapsize = roundup(usemapsize, 8 * sizeof(unsigned long));
  2873. return usemapsize / 8;
  2874. }
  2875. static void __init setup_usemap(struct pglist_data *pgdat,
  2876. struct zone *zone, unsigned long zonesize)
  2877. {
  2878. unsigned long usemapsize = usemap_size(zonesize);
  2879. zone->pageblock_flags = NULL;
  2880. if (usemapsize) {
  2881. zone->pageblock_flags = alloc_bootmem_node(pgdat, usemapsize);
  2882. memset(zone->pageblock_flags, 0, usemapsize);
  2883. }
  2884. }
  2885. #else
  2886. static void inline setup_usemap(struct pglist_data *pgdat,
  2887. struct zone *zone, unsigned long zonesize) {}
  2888. #endif /* CONFIG_SPARSEMEM */
  2889. #ifdef CONFIG_HUGETLB_PAGE_SIZE_VARIABLE
  2890. /* Return a sensible default order for the pageblock size. */
  2891. static inline int pageblock_default_order(void)
  2892. {
  2893. if (HPAGE_SHIFT > PAGE_SHIFT)
  2894. return HUGETLB_PAGE_ORDER;
  2895. return MAX_ORDER-1;
  2896. }
  2897. /* Initialise the number of pages represented by NR_PAGEBLOCK_BITS */
  2898. static inline void __init set_pageblock_order(unsigned int order)
  2899. {
  2900. /* Check that pageblock_nr_pages has not already been setup */
  2901. if (pageblock_order)
  2902. return;
  2903. /*
  2904. * Assume the largest contiguous order of interest is a huge page.
  2905. * This value may be variable depending on boot parameters on IA64
  2906. */
  2907. pageblock_order = order;
  2908. }
  2909. #else /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */
  2910. /*
  2911. * When CONFIG_HUGETLB_PAGE_SIZE_VARIABLE is not set, set_pageblock_order()
  2912. * and pageblock_default_order() are unused as pageblock_order is set
  2913. * at compile-time. See include/linux/pageblock-flags.h for the values of
  2914. * pageblock_order based on the kernel config
  2915. */
  2916. static inline int pageblock_default_order(unsigned int order)
  2917. {
  2918. return MAX_ORDER-1;
  2919. }
  2920. #define set_pageblock_order(x) do {} while (0)
  2921. #endif /* CONFIG_HUGETLB_PAGE_SIZE_VARIABLE */
  2922. /*
  2923. * Set up the zone data structures:
  2924. * - mark all pages reserved
  2925. * - mark all memory queues empty
  2926. * - clear the memory bitmaps
  2927. */
  2928. static void __paginginit free_area_init_core(struct pglist_data *pgdat,
  2929. unsigned long *zones_size, unsigned long *zholes_size)
  2930. {
  2931. enum zone_type j;
  2932. int nid = pgdat->node_id;
  2933. unsigned long zone_start_pfn = pgdat->node_start_pfn;
  2934. int ret;
  2935. pgdat_resize_init(pgdat);
  2936. pgdat->nr_zones = 0;
  2937. init_waitqueue_head(&pgdat->kswapd_wait);
  2938. pgdat->kswapd_max_order = 0;
  2939. for (j = 0; j < MAX_NR_ZONES; j++) {
  2940. struct zone *zone = pgdat->node_zones + j;
  2941. unsigned long size, realsize, memmap_pages;
  2942. size = zone_spanned_pages_in_node(nid, j, zones_size);
  2943. realsize = size - zone_absent_pages_in_node(nid, j,
  2944. zholes_size);
  2945. /*
  2946. * Adjust realsize so that it accounts for how much memory
  2947. * is used by this zone for memmap. This affects the watermark
  2948. * and per-cpu initialisations
  2949. */
  2950. memmap_pages =
  2951. PAGE_ALIGN(size * sizeof(struct page)) >> PAGE_SHIFT;
  2952. if (realsize >= memmap_pages) {
  2953. realsize -= memmap_pages;
  2954. mminit_dprintk(MMINIT_TRACE, "memmap_init",
  2955. "%s zone: %lu pages used for memmap\n",
  2956. zone_names[j], memmap_pages);
  2957. } else
  2958. printk(KERN_WARNING
  2959. " %s zone: %lu pages exceeds realsize %lu\n",
  2960. zone_names[j], memmap_pages, realsize);
  2961. /* Account for reserved pages */
  2962. if (j == 0 && realsize > dma_reserve) {
  2963. realsize -= dma_reserve;
  2964. mminit_dprintk(MMINIT_TRACE, "memmap_init",
  2965. "%s zone: %lu pages reserved\n",
  2966. zone_names[0], dma_reserve);
  2967. }
  2968. if (!is_highmem_idx(j))
  2969. nr_kernel_pages += realsize;
  2970. nr_all_pages += realsize;
  2971. zone->spanned_pages = size;
  2972. zone->present_pages = realsize;
  2973. #ifdef CONFIG_NUMA
  2974. zone->node = nid;
  2975. zone->min_unmapped_pages = (realsize*sysctl_min_unmapped_ratio)
  2976. / 100;
  2977. zone->min_slab_pages = (realsize * sysctl_min_slab_ratio) / 100;
  2978. #endif
  2979. zone->name = zone_names[j];
  2980. spin_lock_init(&zone->lock);
  2981. spin_lock_init(&zone->lru_lock);
  2982. zone_seqlock_init(zone);
  2983. zone->zone_pgdat = pgdat;
  2984. zone->prev_priority = DEF_PRIORITY;
  2985. zone_pcp_init(zone);
  2986. INIT_LIST_HEAD(&zone->active_list);
  2987. INIT_LIST_HEAD(&zone->inactive_list);
  2988. zone->nr_scan_active = 0;
  2989. zone->nr_scan_inactive = 0;
  2990. zap_zone_vm_stats(zone);
  2991. zone->flags = 0;
  2992. if (!size)
  2993. continue;
  2994. set_pageblock_order(pageblock_default_order());
  2995. setup_usemap(pgdat, zone, size);
  2996. ret = init_currently_empty_zone(zone, zone_start_pfn,
  2997. size, MEMMAP_EARLY);
  2998. BUG_ON(ret);
  2999. memmap_init(size, nid, j, zone_start_pfn);
  3000. zone_start_pfn += size;
  3001. }
  3002. }
  3003. static void __init_refok alloc_node_mem_map(struct pglist_data *pgdat)
  3004. {
  3005. /* Skip empty nodes */
  3006. if (!pgdat->node_spanned_pages)
  3007. return;
  3008. #ifdef CONFIG_FLAT_NODE_MEM_MAP
  3009. /* ia64 gets its own node_mem_map, before this, without bootmem */
  3010. if (!pgdat->node_mem_map) {
  3011. unsigned long size, start, end;
  3012. struct page *map;
  3013. /*
  3014. * The zone's endpoints aren't required to be MAX_ORDER
  3015. * aligned but the node_mem_map endpoints must be in order
  3016. * for the buddy allocator to function correctly.
  3017. */
  3018. start = pgdat->node_start_pfn & ~(MAX_ORDER_NR_PAGES - 1);
  3019. end = pgdat->node_start_pfn + pgdat->node_spanned_pages;
  3020. end = ALIGN(end, MAX_ORDER_NR_PAGES);
  3021. size = (end - start) * sizeof(struct page);
  3022. map = alloc_remap(pgdat->node_id, size);
  3023. if (!map)
  3024. map = alloc_bootmem_node(pgdat, size);
  3025. pgdat->node_mem_map = map + (pgdat->node_start_pfn - start);
  3026. }
  3027. #ifndef CONFIG_NEED_MULTIPLE_NODES
  3028. /*
  3029. * With no DISCONTIG, the global mem_map is just set as node 0's
  3030. */
  3031. if (pgdat == NODE_DATA(0)) {
  3032. mem_map = NODE_DATA(0)->node_mem_map;
  3033. #ifdef CONFIG_ARCH_POPULATES_NODE_MAP
  3034. if (page_to_pfn(mem_map) != pgdat->node_start_pfn)
  3035. mem_map -= (pgdat->node_start_pfn - ARCH_PFN_OFFSET);
  3036. #endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
  3037. }
  3038. #endif
  3039. #endif /* CONFIG_FLAT_NODE_MEM_MAP */
  3040. }
  3041. void __paginginit free_area_init_node(int nid, unsigned long *zones_size,
  3042. unsigned long node_start_pfn, unsigned long *zholes_size)
  3043. {
  3044. pg_data_t *pgdat = NODE_DATA(nid);
  3045. pgdat->node_id = nid;
  3046. pgdat->node_start_pfn = node_start_pfn;
  3047. calculate_node_totalpages(pgdat, zones_size, zholes_size);
  3048. alloc_node_mem_map(pgdat);
  3049. #ifdef CONFIG_FLAT_NODE_MEM_MAP
  3050. printk(KERN_DEBUG "free_area_init_node: node %d, pgdat %08lx, node_mem_map %08lx\n",
  3051. nid, (unsigned long)pgdat,
  3052. (unsigned long)pgdat->node_mem_map);
  3053. #endif
  3054. free_area_init_core(pgdat, zones_size, zholes_size);
  3055. }
  3056. #ifdef CONFIG_ARCH_POPULATES_NODE_MAP
  3057. #if MAX_NUMNODES > 1
  3058. /*
  3059. * Figure out the number of possible node ids.
  3060. */
  3061. static void __init setup_nr_node_ids(void)
  3062. {
  3063. unsigned int node;
  3064. unsigned int highest = 0;
  3065. for_each_node_mask(node, node_possible_map)
  3066. highest = node;
  3067. nr_node_ids = highest + 1;
  3068. }
  3069. #else
  3070. static inline void setup_nr_node_ids(void)
  3071. {
  3072. }
  3073. #endif
  3074. /**
  3075. * add_active_range - Register a range of PFNs backed by physical memory
  3076. * @nid: The node ID the range resides on
  3077. * @start_pfn: The start PFN of the available physical memory
  3078. * @end_pfn: The end PFN of the available physical memory
  3079. *
  3080. * These ranges are stored in an early_node_map[] and later used by
  3081. * free_area_init_nodes() to calculate zone sizes and holes. If the
  3082. * range spans a memory hole, it is up to the architecture to ensure
  3083. * the memory is not freed by the bootmem allocator. If possible
  3084. * the range being registered will be merged with existing ranges.
  3085. */
  3086. void __init add_active_range(unsigned int nid, unsigned long start_pfn,
  3087. unsigned long end_pfn)
  3088. {
  3089. int i;
  3090. mminit_dprintk(MMINIT_TRACE, "memory_register",
  3091. "Entering add_active_range(%d, %#lx, %#lx) "
  3092. "%d entries of %d used\n",
  3093. nid, start_pfn, end_pfn,
  3094. nr_nodemap_entries, MAX_ACTIVE_REGIONS);
  3095. mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
  3096. /* Merge with existing active regions if possible */
  3097. for (i = 0; i < nr_nodemap_entries; i++) {
  3098. if (early_node_map[i].nid != nid)
  3099. continue;
  3100. /* Skip if an existing region covers this new one */
  3101. if (start_pfn >= early_node_map[i].start_pfn &&
  3102. end_pfn <= early_node_map[i].end_pfn)
  3103. return;
  3104. /* Merge forward if suitable */
  3105. if (start_pfn <= early_node_map[i].end_pfn &&
  3106. end_pfn > early_node_map[i].end_pfn) {
  3107. early_node_map[i].end_pfn = end_pfn;
  3108. return;
  3109. }
  3110. /* Merge backward if suitable */
  3111. if (start_pfn < early_node_map[i].end_pfn &&
  3112. end_pfn >= early_node_map[i].start_pfn) {
  3113. early_node_map[i].start_pfn = start_pfn;
  3114. return;
  3115. }
  3116. }
  3117. /* Check that early_node_map is large enough */
  3118. if (i >= MAX_ACTIVE_REGIONS) {
  3119. printk(KERN_CRIT "More than %d memory regions, truncating\n",
  3120. MAX_ACTIVE_REGIONS);
  3121. return;
  3122. }
  3123. early_node_map[i].nid = nid;
  3124. early_node_map[i].start_pfn = start_pfn;
  3125. early_node_map[i].end_pfn = end_pfn;
  3126. nr_nodemap_entries = i + 1;
  3127. }
  3128. /**
  3129. * remove_active_range - Shrink an existing registered range of PFNs
  3130. * @nid: The node id the range is on that should be shrunk
  3131. * @start_pfn: The new PFN of the range
  3132. * @end_pfn: The new PFN of the range
  3133. *
  3134. * i386 with NUMA use alloc_remap() to store a node_mem_map on a local node.
  3135. * The map is kept near the end physical page range that has already been
  3136. * registered. This function allows an arch to shrink an existing registered
  3137. * range.
  3138. */
  3139. void __init remove_active_range(unsigned int nid, unsigned long start_pfn,
  3140. unsigned long end_pfn)
  3141. {
  3142. int i, j;
  3143. int removed = 0;
  3144. printk(KERN_DEBUG "remove_active_range (%d, %lu, %lu)\n",
  3145. nid, start_pfn, end_pfn);
  3146. /* Find the old active region end and shrink */
  3147. for_each_active_range_index_in_nid(i, nid) {
  3148. if (early_node_map[i].start_pfn >= start_pfn &&
  3149. early_node_map[i].end_pfn <= end_pfn) {
  3150. /* clear it */
  3151. early_node_map[i].start_pfn = 0;
  3152. early_node_map[i].end_pfn = 0;
  3153. removed = 1;
  3154. continue;
  3155. }
  3156. if (early_node_map[i].start_pfn < start_pfn &&
  3157. early_node_map[i].end_pfn > start_pfn) {
  3158. unsigned long temp_end_pfn = early_node_map[i].end_pfn;
  3159. early_node_map[i].end_pfn = start_pfn;
  3160. if (temp_end_pfn > end_pfn)
  3161. add_active_range(nid, end_pfn, temp_end_pfn);
  3162. continue;
  3163. }
  3164. if (early_node_map[i].start_pfn >= start_pfn &&
  3165. early_node_map[i].end_pfn > end_pfn &&
  3166. early_node_map[i].start_pfn < end_pfn) {
  3167. early_node_map[i].start_pfn = end_pfn;
  3168. continue;
  3169. }
  3170. }
  3171. if (!removed)
  3172. return;
  3173. /* remove the blank ones */
  3174. for (i = nr_nodemap_entries - 1; i > 0; i--) {
  3175. if (early_node_map[i].nid != nid)
  3176. continue;
  3177. if (early_node_map[i].end_pfn)
  3178. continue;
  3179. /* we found it, get rid of it */
  3180. for (j = i; j < nr_nodemap_entries - 1; j++)
  3181. memcpy(&early_node_map[j], &early_node_map[j+1],
  3182. sizeof(early_node_map[j]));
  3183. j = nr_nodemap_entries - 1;
  3184. memset(&early_node_map[j], 0, sizeof(early_node_map[j]));
  3185. nr_nodemap_entries--;
  3186. }
  3187. }
  3188. /**
  3189. * remove_all_active_ranges - Remove all currently registered regions
  3190. *
  3191. * During discovery, it may be found that a table like SRAT is invalid
  3192. * and an alternative discovery method must be used. This function removes
  3193. * all currently registered regions.
  3194. */
  3195. void __init remove_all_active_ranges(void)
  3196. {
  3197. memset(early_node_map, 0, sizeof(early_node_map));
  3198. nr_nodemap_entries = 0;
  3199. #ifdef CONFIG_MEMORY_HOTPLUG_RESERVE
  3200. memset(node_boundary_start_pfn, 0, sizeof(node_boundary_start_pfn));
  3201. memset(node_boundary_end_pfn, 0, sizeof(node_boundary_end_pfn));
  3202. #endif /* CONFIG_MEMORY_HOTPLUG_RESERVE */
  3203. }
  3204. /* Compare two active node_active_regions */
  3205. static int __init cmp_node_active_region(const void *a, const void *b)
  3206. {
  3207. struct node_active_region *arange = (struct node_active_region *)a;
  3208. struct node_active_region *brange = (struct node_active_region *)b;
  3209. /* Done this way to avoid overflows */
  3210. if (arange->start_pfn > brange->start_pfn)
  3211. return 1;
  3212. if (arange->start_pfn < brange->start_pfn)
  3213. return -1;
  3214. return 0;
  3215. }
  3216. /* sort the node_map by start_pfn */
  3217. static void __init sort_node_map(void)
  3218. {
  3219. sort(early_node_map, (size_t)nr_nodemap_entries,
  3220. sizeof(struct node_active_region),
  3221. cmp_node_active_region, NULL);
  3222. }
  3223. /* Find the lowest pfn for a node */
  3224. static unsigned long __init find_min_pfn_for_node(int nid)
  3225. {
  3226. int i;
  3227. unsigned long min_pfn = ULONG_MAX;
  3228. /* Assuming a sorted map, the first range found has the starting pfn */
  3229. for_each_active_range_index_in_nid(i, nid)
  3230. min_pfn = min(min_pfn, early_node_map[i].start_pfn);
  3231. if (min_pfn == ULONG_MAX) {
  3232. printk(KERN_WARNING
  3233. "Could not find start_pfn for node %d\n", nid);
  3234. return 0;
  3235. }
  3236. return min_pfn;
  3237. }
  3238. /**
  3239. * find_min_pfn_with_active_regions - Find the minimum PFN registered
  3240. *
  3241. * It returns the minimum PFN based on information provided via
  3242. * add_active_range().
  3243. */
  3244. unsigned long __init find_min_pfn_with_active_regions(void)
  3245. {
  3246. return find_min_pfn_for_node(MAX_NUMNODES);
  3247. }
  3248. /*
  3249. * early_calculate_totalpages()
  3250. * Sum pages in active regions for movable zone.
  3251. * Populate N_HIGH_MEMORY for calculating usable_nodes.
  3252. */
  3253. static unsigned long __init early_calculate_totalpages(void)
  3254. {
  3255. int i;
  3256. unsigned long totalpages = 0;
  3257. for (i = 0; i < nr_nodemap_entries; i++) {
  3258. unsigned long pages = early_node_map[i].end_pfn -
  3259. early_node_map[i].start_pfn;
  3260. totalpages += pages;
  3261. if (pages)
  3262. node_set_state(early_node_map[i].nid, N_HIGH_MEMORY);
  3263. }
  3264. return totalpages;
  3265. }
  3266. /*
  3267. * Find the PFN the Movable zone begins in each node. Kernel memory
  3268. * is spread evenly between nodes as long as the nodes have enough
  3269. * memory. When they don't, some nodes will have more kernelcore than
  3270. * others
  3271. */
  3272. static void __init find_zone_movable_pfns_for_nodes(unsigned long *movable_pfn)
  3273. {
  3274. int i, nid;
  3275. unsigned long usable_startpfn;
  3276. unsigned long kernelcore_node, kernelcore_remaining;
  3277. unsigned long totalpages = early_calculate_totalpages();
  3278. int usable_nodes = nodes_weight(node_states[N_HIGH_MEMORY]);
  3279. /*
  3280. * If movablecore was specified, calculate what size of
  3281. * kernelcore that corresponds so that memory usable for
  3282. * any allocation type is evenly spread. If both kernelcore
  3283. * and movablecore are specified, then the value of kernelcore
  3284. * will be used for required_kernelcore if it's greater than
  3285. * what movablecore would have allowed.
  3286. */
  3287. if (required_movablecore) {
  3288. unsigned long corepages;
  3289. /*
  3290. * Round-up so that ZONE_MOVABLE is at least as large as what
  3291. * was requested by the user
  3292. */
  3293. required_movablecore =
  3294. roundup(required_movablecore, MAX_ORDER_NR_PAGES);
  3295. corepages = totalpages - required_movablecore;
  3296. required_kernelcore = max(required_kernelcore, corepages);
  3297. }
  3298. /* If kernelcore was not specified, there is no ZONE_MOVABLE */
  3299. if (!required_kernelcore)
  3300. return;
  3301. /* usable_startpfn is the lowest possible pfn ZONE_MOVABLE can be at */
  3302. find_usable_zone_for_movable();
  3303. usable_startpfn = arch_zone_lowest_possible_pfn[movable_zone];
  3304. restart:
  3305. /* Spread kernelcore memory as evenly as possible throughout nodes */
  3306. kernelcore_node = required_kernelcore / usable_nodes;
  3307. for_each_node_state(nid, N_HIGH_MEMORY) {
  3308. /*
  3309. * Recalculate kernelcore_node if the division per node
  3310. * now exceeds what is necessary to satisfy the requested
  3311. * amount of memory for the kernel
  3312. */
  3313. if (required_kernelcore < kernelcore_node)
  3314. kernelcore_node = required_kernelcore / usable_nodes;
  3315. /*
  3316. * As the map is walked, we track how much memory is usable
  3317. * by the kernel using kernelcore_remaining. When it is
  3318. * 0, the rest of the node is usable by ZONE_MOVABLE
  3319. */
  3320. kernelcore_remaining = kernelcore_node;
  3321. /* Go through each range of PFNs within this node */
  3322. for_each_active_range_index_in_nid(i, nid) {
  3323. unsigned long start_pfn, end_pfn;
  3324. unsigned long size_pages;
  3325. start_pfn = max(early_node_map[i].start_pfn,
  3326. zone_movable_pfn[nid]);
  3327. end_pfn = early_node_map[i].end_pfn;
  3328. if (start_pfn >= end_pfn)
  3329. continue;
  3330. /* Account for what is only usable for kernelcore */
  3331. if (start_pfn < usable_startpfn) {
  3332. unsigned long kernel_pages;
  3333. kernel_pages = min(end_pfn, usable_startpfn)
  3334. - start_pfn;
  3335. kernelcore_remaining -= min(kernel_pages,
  3336. kernelcore_remaining);
  3337. required_kernelcore -= min(kernel_pages,
  3338. required_kernelcore);
  3339. /* Continue if range is now fully accounted */
  3340. if (end_pfn <= usable_startpfn) {
  3341. /*
  3342. * Push zone_movable_pfn to the end so
  3343. * that if we have to rebalance
  3344. * kernelcore across nodes, we will
  3345. * not double account here
  3346. */
  3347. zone_movable_pfn[nid] = end_pfn;
  3348. continue;
  3349. }
  3350. start_pfn = usable_startpfn;
  3351. }
  3352. /*
  3353. * The usable PFN range for ZONE_MOVABLE is from
  3354. * start_pfn->end_pfn. Calculate size_pages as the
  3355. * number of pages used as kernelcore
  3356. */
  3357. size_pages = end_pfn - start_pfn;
  3358. if (size_pages > kernelcore_remaining)
  3359. size_pages = kernelcore_remaining;
  3360. zone_movable_pfn[nid] = start_pfn + size_pages;
  3361. /*
  3362. * Some kernelcore has been met, update counts and
  3363. * break if the kernelcore for this node has been
  3364. * satisified
  3365. */
  3366. required_kernelcore -= min(required_kernelcore,
  3367. size_pages);
  3368. kernelcore_remaining -= size_pages;
  3369. if (!kernelcore_remaining)
  3370. break;
  3371. }
  3372. }
  3373. /*
  3374. * If there is still required_kernelcore, we do another pass with one
  3375. * less node in the count. This will push zone_movable_pfn[nid] further
  3376. * along on the nodes that still have memory until kernelcore is
  3377. * satisified
  3378. */
  3379. usable_nodes--;
  3380. if (usable_nodes && required_kernelcore > usable_nodes)
  3381. goto restart;
  3382. /* Align start of ZONE_MOVABLE on all nids to MAX_ORDER_NR_PAGES */
  3383. for (nid = 0; nid < MAX_NUMNODES; nid++)
  3384. zone_movable_pfn[nid] =
  3385. roundup(zone_movable_pfn[nid], MAX_ORDER_NR_PAGES);
  3386. }
  3387. /* Any regular memory on that node ? */
  3388. static void check_for_regular_memory(pg_data_t *pgdat)
  3389. {
  3390. #ifdef CONFIG_HIGHMEM
  3391. enum zone_type zone_type;
  3392. for (zone_type = 0; zone_type <= ZONE_NORMAL; zone_type++) {
  3393. struct zone *zone = &pgdat->node_zones[zone_type];
  3394. if (zone->present_pages)
  3395. node_set_state(zone_to_nid(zone), N_NORMAL_MEMORY);
  3396. }
  3397. #endif
  3398. }
  3399. /**
  3400. * free_area_init_nodes - Initialise all pg_data_t and zone data
  3401. * @max_zone_pfn: an array of max PFNs for each zone
  3402. *
  3403. * This will call free_area_init_node() for each active node in the system.
  3404. * Using the page ranges provided by add_active_range(), the size of each
  3405. * zone in each node and their holes is calculated. If the maximum PFN
  3406. * between two adjacent zones match, it is assumed that the zone is empty.
  3407. * For example, if arch_max_dma_pfn == arch_max_dma32_pfn, it is assumed
  3408. * that arch_max_dma32_pfn has no pages. It is also assumed that a zone
  3409. * starts where the previous one ended. For example, ZONE_DMA32 starts
  3410. * at arch_max_dma_pfn.
  3411. */
  3412. void __init free_area_init_nodes(unsigned long *max_zone_pfn)
  3413. {
  3414. unsigned long nid;
  3415. enum zone_type i;
  3416. /* Sort early_node_map as initialisation assumes it is sorted */
  3417. sort_node_map();
  3418. /* Record where the zone boundaries are */
  3419. memset(arch_zone_lowest_possible_pfn, 0,
  3420. sizeof(arch_zone_lowest_possible_pfn));
  3421. memset(arch_zone_highest_possible_pfn, 0,
  3422. sizeof(arch_zone_highest_possible_pfn));
  3423. arch_zone_lowest_possible_pfn[0] = find_min_pfn_with_active_regions();
  3424. arch_zone_highest_possible_pfn[0] = max_zone_pfn[0];
  3425. for (i = 1; i < MAX_NR_ZONES; i++) {
  3426. if (i == ZONE_MOVABLE)
  3427. continue;
  3428. arch_zone_lowest_possible_pfn[i] =
  3429. arch_zone_highest_possible_pfn[i-1];
  3430. arch_zone_highest_possible_pfn[i] =
  3431. max(max_zone_pfn[i], arch_zone_lowest_possible_pfn[i]);
  3432. }
  3433. arch_zone_lowest_possible_pfn[ZONE_MOVABLE] = 0;
  3434. arch_zone_highest_possible_pfn[ZONE_MOVABLE] = 0;
  3435. /* Find the PFNs that ZONE_MOVABLE begins at in each node */
  3436. memset(zone_movable_pfn, 0, sizeof(zone_movable_pfn));
  3437. find_zone_movable_pfns_for_nodes(zone_movable_pfn);
  3438. /* Print out the zone ranges */
  3439. printk("Zone PFN ranges:\n");
  3440. for (i = 0; i < MAX_NR_ZONES; i++) {
  3441. if (i == ZONE_MOVABLE)
  3442. continue;
  3443. printk(" %-8s %0#10lx -> %0#10lx\n",
  3444. zone_names[i],
  3445. arch_zone_lowest_possible_pfn[i],
  3446. arch_zone_highest_possible_pfn[i]);
  3447. }
  3448. /* Print out the PFNs ZONE_MOVABLE begins at in each node */
  3449. printk("Movable zone start PFN for each node\n");
  3450. for (i = 0; i < MAX_NUMNODES; i++) {
  3451. if (zone_movable_pfn[i])
  3452. printk(" Node %d: %lu\n", i, zone_movable_pfn[i]);
  3453. }
  3454. /* Print out the early_node_map[] */
  3455. printk("early_node_map[%d] active PFN ranges\n", nr_nodemap_entries);
  3456. for (i = 0; i < nr_nodemap_entries; i++)
  3457. printk(" %3d: %0#10lx -> %0#10lx\n", early_node_map[i].nid,
  3458. early_node_map[i].start_pfn,
  3459. early_node_map[i].end_pfn);
  3460. /* Initialise every node */
  3461. mminit_verify_pageflags_layout();
  3462. setup_nr_node_ids();
  3463. for_each_online_node(nid) {
  3464. pg_data_t *pgdat = NODE_DATA(nid);
  3465. free_area_init_node(nid, NULL,
  3466. find_min_pfn_for_node(nid), NULL);
  3467. /* Any memory on that node */
  3468. if (pgdat->node_present_pages)
  3469. node_set_state(nid, N_HIGH_MEMORY);
  3470. check_for_regular_memory(pgdat);
  3471. }
  3472. }
  3473. static int __init cmdline_parse_core(char *p, unsigned long *core)
  3474. {
  3475. unsigned long long coremem;
  3476. if (!p)
  3477. return -EINVAL;
  3478. coremem = memparse(p, &p);
  3479. *core = coremem >> PAGE_SHIFT;
  3480. /* Paranoid check that UL is enough for the coremem value */
  3481. WARN_ON((coremem >> PAGE_SHIFT) > ULONG_MAX);
  3482. return 0;
  3483. }
  3484. /*
  3485. * kernelcore=size sets the amount of memory for use for allocations that
  3486. * cannot be reclaimed or migrated.
  3487. */
  3488. static int __init cmdline_parse_kernelcore(char *p)
  3489. {
  3490. return cmdline_parse_core(p, &required_kernelcore);
  3491. }
  3492. /*
  3493. * movablecore=size sets the amount of memory for use for allocations that
  3494. * can be reclaimed or migrated.
  3495. */
  3496. static int __init cmdline_parse_movablecore(char *p)
  3497. {
  3498. return cmdline_parse_core(p, &required_movablecore);
  3499. }
  3500. early_param("kernelcore", cmdline_parse_kernelcore);
  3501. early_param("movablecore", cmdline_parse_movablecore);
  3502. #endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
  3503. /**
  3504. * set_dma_reserve - set the specified number of pages reserved in the first zone
  3505. * @new_dma_reserve: The number of pages to mark reserved
  3506. *
  3507. * The per-cpu batchsize and zone watermarks are determined by present_pages.
  3508. * In the DMA zone, a significant percentage may be consumed by kernel image
  3509. * and other unfreeable allocations which can skew the watermarks badly. This
  3510. * function may optionally be used to account for unfreeable pages in the
  3511. * first zone (e.g., ZONE_DMA). The effect will be lower watermarks and
  3512. * smaller per-cpu batchsize.
  3513. */
  3514. void __init set_dma_reserve(unsigned long new_dma_reserve)
  3515. {
  3516. dma_reserve = new_dma_reserve;
  3517. }
  3518. #ifndef CONFIG_NEED_MULTIPLE_NODES
  3519. struct pglist_data __refdata contig_page_data = { .bdata = &bootmem_node_data[0] };
  3520. EXPORT_SYMBOL(contig_page_data);
  3521. #endif
  3522. void __init free_area_init(unsigned long *zones_size)
  3523. {
  3524. free_area_init_node(0, zones_size,
  3525. __pa(PAGE_OFFSET) >> PAGE_SHIFT, NULL);
  3526. }
  3527. static int page_alloc_cpu_notify(struct notifier_block *self,
  3528. unsigned long action, void *hcpu)
  3529. {
  3530. int cpu = (unsigned long)hcpu;
  3531. if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
  3532. drain_pages(cpu);
  3533. /*
  3534. * Spill the event counters of the dead processor
  3535. * into the current processors event counters.
  3536. * This artificially elevates the count of the current
  3537. * processor.
  3538. */
  3539. vm_events_fold_cpu(cpu);
  3540. /*
  3541. * Zero the differential counters of the dead processor
  3542. * so that the vm statistics are consistent.
  3543. *
  3544. * This is only okay since the processor is dead and cannot
  3545. * race with what we are doing.
  3546. */
  3547. refresh_cpu_vm_stats(cpu);
  3548. }
  3549. return NOTIFY_OK;
  3550. }
  3551. void __init page_alloc_init(void)
  3552. {
  3553. hotcpu_notifier(page_alloc_cpu_notify, 0);
  3554. }
  3555. /*
  3556. * calculate_totalreserve_pages - called when sysctl_lower_zone_reserve_ratio
  3557. * or min_free_kbytes changes.
  3558. */
  3559. static void calculate_totalreserve_pages(void)
  3560. {
  3561. struct pglist_data *pgdat;
  3562. unsigned long reserve_pages = 0;
  3563. enum zone_type i, j;
  3564. for_each_online_pgdat(pgdat) {
  3565. for (i = 0; i < MAX_NR_ZONES; i++) {
  3566. struct zone *zone = pgdat->node_zones + i;
  3567. unsigned long max = 0;
  3568. /* Find valid and maximum lowmem_reserve in the zone */
  3569. for (j = i; j < MAX_NR_ZONES; j++) {
  3570. if (zone->lowmem_reserve[j] > max)
  3571. max = zone->lowmem_reserve[j];
  3572. }
  3573. /* we treat pages_high as reserved pages. */
  3574. max += zone->pages_high;
  3575. if (max > zone->present_pages)
  3576. max = zone->present_pages;
  3577. reserve_pages += max;
  3578. }
  3579. }
  3580. totalreserve_pages = reserve_pages;
  3581. }
  3582. /*
  3583. * setup_per_zone_lowmem_reserve - called whenever
  3584. * sysctl_lower_zone_reserve_ratio changes. Ensures that each zone
  3585. * has a correct pages reserved value, so an adequate number of
  3586. * pages are left in the zone after a successful __alloc_pages().
  3587. */
  3588. static void setup_per_zone_lowmem_reserve(void)
  3589. {
  3590. struct pglist_data *pgdat;
  3591. enum zone_type j, idx;
  3592. for_each_online_pgdat(pgdat) {
  3593. for (j = 0; j < MAX_NR_ZONES; j++) {
  3594. struct zone *zone = pgdat->node_zones + j;
  3595. unsigned long present_pages = zone->present_pages;
  3596. zone->lowmem_reserve[j] = 0;
  3597. idx = j;
  3598. while (idx) {
  3599. struct zone *lower_zone;
  3600. idx--;
  3601. if (sysctl_lowmem_reserve_ratio[idx] < 1)
  3602. sysctl_lowmem_reserve_ratio[idx] = 1;
  3603. lower_zone = pgdat->node_zones + idx;
  3604. lower_zone->lowmem_reserve[j] = present_pages /
  3605. sysctl_lowmem_reserve_ratio[idx];
  3606. present_pages += lower_zone->present_pages;
  3607. }
  3608. }
  3609. }
  3610. /* update totalreserve_pages */
  3611. calculate_totalreserve_pages();
  3612. }
  3613. /**
  3614. * setup_per_zone_pages_min - called when min_free_kbytes changes.
  3615. *
  3616. * Ensures that the pages_{min,low,high} values for each zone are set correctly
  3617. * with respect to min_free_kbytes.
  3618. */
  3619. void setup_per_zone_pages_min(void)
  3620. {
  3621. unsigned long pages_min = min_free_kbytes >> (PAGE_SHIFT - 10);
  3622. unsigned long lowmem_pages = 0;
  3623. struct zone *zone;
  3624. unsigned long flags;
  3625. /* Calculate total number of !ZONE_HIGHMEM pages */
  3626. for_each_zone(zone) {
  3627. if (!is_highmem(zone))
  3628. lowmem_pages += zone->present_pages;
  3629. }
  3630. for_each_zone(zone) {
  3631. u64 tmp;
  3632. spin_lock_irqsave(&zone->lru_lock, flags);
  3633. tmp = (u64)pages_min * zone->present_pages;
  3634. do_div(tmp, lowmem_pages);
  3635. if (is_highmem(zone)) {
  3636. /*
  3637. * __GFP_HIGH and PF_MEMALLOC allocations usually don't
  3638. * need highmem pages, so cap pages_min to a small
  3639. * value here.
  3640. *
  3641. * The (pages_high-pages_low) and (pages_low-pages_min)
  3642. * deltas controls asynch page reclaim, and so should
  3643. * not be capped for highmem.
  3644. */
  3645. int min_pages;
  3646. min_pages = zone->present_pages / 1024;
  3647. if (min_pages < SWAP_CLUSTER_MAX)
  3648. min_pages = SWAP_CLUSTER_MAX;
  3649. if (min_pages > 128)
  3650. min_pages = 128;
  3651. zone->pages_min = min_pages;
  3652. } else {
  3653. /*
  3654. * If it's a lowmem zone, reserve a number of pages
  3655. * proportionate to the zone's size.
  3656. */
  3657. zone->pages_min = tmp;
  3658. }
  3659. zone->pages_low = zone->pages_min + (tmp >> 2);
  3660. zone->pages_high = zone->pages_min + (tmp >> 1);
  3661. setup_zone_migrate_reserve(zone);
  3662. spin_unlock_irqrestore(&zone->lru_lock, flags);
  3663. }
  3664. /* update totalreserve_pages */
  3665. calculate_totalreserve_pages();
  3666. }
  3667. /*
  3668. * Initialise min_free_kbytes.
  3669. *
  3670. * For small machines we want it small (128k min). For large machines
  3671. * we want it large (64MB max). But it is not linear, because network
  3672. * bandwidth does not increase linearly with machine size. We use
  3673. *
  3674. * min_free_kbytes = 4 * sqrt(lowmem_kbytes), for better accuracy:
  3675. * min_free_kbytes = sqrt(lowmem_kbytes * 16)
  3676. *
  3677. * which yields
  3678. *
  3679. * 16MB: 512k
  3680. * 32MB: 724k
  3681. * 64MB: 1024k
  3682. * 128MB: 1448k
  3683. * 256MB: 2048k
  3684. * 512MB: 2896k
  3685. * 1024MB: 4096k
  3686. * 2048MB: 5792k
  3687. * 4096MB: 8192k
  3688. * 8192MB: 11584k
  3689. * 16384MB: 16384k
  3690. */
  3691. static int __init init_per_zone_pages_min(void)
  3692. {
  3693. unsigned long lowmem_kbytes;
  3694. lowmem_kbytes = nr_free_buffer_pages() * (PAGE_SIZE >> 10);
  3695. min_free_kbytes = int_sqrt(lowmem_kbytes * 16);
  3696. if (min_free_kbytes < 128)
  3697. min_free_kbytes = 128;
  3698. if (min_free_kbytes > 65536)
  3699. min_free_kbytes = 65536;
  3700. setup_per_zone_pages_min();
  3701. setup_per_zone_lowmem_reserve();
  3702. return 0;
  3703. }
  3704. module_init(init_per_zone_pages_min)
  3705. /*
  3706. * min_free_kbytes_sysctl_handler - just a wrapper around proc_dointvec() so
  3707. * that we can call two helper functions whenever min_free_kbytes
  3708. * changes.
  3709. */
  3710. int min_free_kbytes_sysctl_handler(ctl_table *table, int write,
  3711. struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
  3712. {
  3713. proc_dointvec(table, write, file, buffer, length, ppos);
  3714. if (write)
  3715. setup_per_zone_pages_min();
  3716. return 0;
  3717. }
  3718. #ifdef CONFIG_NUMA
  3719. int sysctl_min_unmapped_ratio_sysctl_handler(ctl_table *table, int write,
  3720. struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
  3721. {
  3722. struct zone *zone;
  3723. int rc;
  3724. rc = proc_dointvec_minmax(table, write, file, buffer, length, ppos);
  3725. if (rc)
  3726. return rc;
  3727. for_each_zone(zone)
  3728. zone->min_unmapped_pages = (zone->present_pages *
  3729. sysctl_min_unmapped_ratio) / 100;
  3730. return 0;
  3731. }
  3732. int sysctl_min_slab_ratio_sysctl_handler(ctl_table *table, int write,
  3733. struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
  3734. {
  3735. struct zone *zone;
  3736. int rc;
  3737. rc = proc_dointvec_minmax(table, write, file, buffer, length, ppos);
  3738. if (rc)
  3739. return rc;
  3740. for_each_zone(zone)
  3741. zone->min_slab_pages = (zone->present_pages *
  3742. sysctl_min_slab_ratio) / 100;
  3743. return 0;
  3744. }
  3745. #endif
  3746. /*
  3747. * lowmem_reserve_ratio_sysctl_handler - just a wrapper around
  3748. * proc_dointvec() so that we can call setup_per_zone_lowmem_reserve()
  3749. * whenever sysctl_lowmem_reserve_ratio changes.
  3750. *
  3751. * The reserve ratio obviously has absolutely no relation with the
  3752. * pages_min watermarks. The lowmem reserve ratio can only make sense
  3753. * if in function of the boot time zone sizes.
  3754. */
  3755. int lowmem_reserve_ratio_sysctl_handler(ctl_table *table, int write,
  3756. struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
  3757. {
  3758. proc_dointvec_minmax(table, write, file, buffer, length, ppos);
  3759. setup_per_zone_lowmem_reserve();
  3760. return 0;
  3761. }
  3762. /*
  3763. * percpu_pagelist_fraction - changes the pcp->high for each zone on each
  3764. * cpu. It is the fraction of total pages in each zone that a hot per cpu pagelist
  3765. * can have before it gets flushed back to buddy allocator.
  3766. */
  3767. int percpu_pagelist_fraction_sysctl_handler(ctl_table *table, int write,
  3768. struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
  3769. {
  3770. struct zone *zone;
  3771. unsigned int cpu;
  3772. int ret;
  3773. ret = proc_dointvec_minmax(table, write, file, buffer, length, ppos);
  3774. if (!write || (ret == -EINVAL))
  3775. return ret;
  3776. for_each_zone(zone) {
  3777. for_each_online_cpu(cpu) {
  3778. unsigned long high;
  3779. high = zone->present_pages / percpu_pagelist_fraction;
  3780. setup_pagelist_highmark(zone_pcp(zone, cpu), high);
  3781. }
  3782. }
  3783. return 0;
  3784. }
  3785. int hashdist = HASHDIST_DEFAULT;
  3786. #ifdef CONFIG_NUMA
  3787. static int __init set_hashdist(char *str)
  3788. {
  3789. if (!str)
  3790. return 0;
  3791. hashdist = simple_strtoul(str, &str, 0);
  3792. return 1;
  3793. }
  3794. __setup("hashdist=", set_hashdist);
  3795. #endif
  3796. /*
  3797. * allocate a large system hash table from bootmem
  3798. * - it is assumed that the hash table must contain an exact power-of-2
  3799. * quantity of entries
  3800. * - limit is the number of hash buckets, not the total allocation size
  3801. */
  3802. void *__init alloc_large_system_hash(const char *tablename,
  3803. unsigned long bucketsize,
  3804. unsigned long numentries,
  3805. int scale,
  3806. int flags,
  3807. unsigned int *_hash_shift,
  3808. unsigned int *_hash_mask,
  3809. unsigned long limit)
  3810. {
  3811. unsigned long long max = limit;
  3812. unsigned long log2qty, size;
  3813. void *table = NULL;
  3814. /* allow the kernel cmdline to have a say */
  3815. if (!numentries) {
  3816. /* round applicable memory size up to nearest megabyte */
  3817. numentries = nr_kernel_pages;
  3818. numentries += (1UL << (20 - PAGE_SHIFT)) - 1;
  3819. numentries >>= 20 - PAGE_SHIFT;
  3820. numentries <<= 20 - PAGE_SHIFT;
  3821. /* limit to 1 bucket per 2^scale bytes of low memory */
  3822. if (scale > PAGE_SHIFT)
  3823. numentries >>= (scale - PAGE_SHIFT);
  3824. else
  3825. numentries <<= (PAGE_SHIFT - scale);
  3826. /* Make sure we've got at least a 0-order allocation.. */
  3827. if (unlikely((numentries * bucketsize) < PAGE_SIZE))
  3828. numentries = PAGE_SIZE / bucketsize;
  3829. }
  3830. numentries = roundup_pow_of_two(numentries);
  3831. /* limit allocation size to 1/16 total memory by default */
  3832. if (max == 0) {
  3833. max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4;
  3834. do_div(max, bucketsize);
  3835. }
  3836. if (numentries > max)
  3837. numentries = max;
  3838. log2qty = ilog2(numentries);
  3839. do {
  3840. size = bucketsize << log2qty;
  3841. if (flags & HASH_EARLY)
  3842. table = alloc_bootmem_nopanic(size);
  3843. else if (hashdist)
  3844. table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL);
  3845. else {
  3846. unsigned long order = get_order(size);
  3847. table = (void*) __get_free_pages(GFP_ATOMIC, order);
  3848. /*
  3849. * If bucketsize is not a power-of-two, we may free
  3850. * some pages at the end of hash table.
  3851. */
  3852. if (table) {
  3853. unsigned long alloc_end = (unsigned long)table +
  3854. (PAGE_SIZE << order);
  3855. unsigned long used = (unsigned long)table +
  3856. PAGE_ALIGN(size);
  3857. split_page(virt_to_page(table), order);
  3858. while (used < alloc_end) {
  3859. free_page(used);
  3860. used += PAGE_SIZE;
  3861. }
  3862. }
  3863. }
  3864. } while (!table && size > PAGE_SIZE && --log2qty);
  3865. if (!table)
  3866. panic("Failed to allocate %s hash table\n", tablename);
  3867. printk(KERN_INFO "%s hash table entries: %d (order: %d, %lu bytes)\n",
  3868. tablename,
  3869. (1U << log2qty),
  3870. ilog2(size) - PAGE_SHIFT,
  3871. size);
  3872. if (_hash_shift)
  3873. *_hash_shift = log2qty;
  3874. if (_hash_mask)
  3875. *_hash_mask = (1 << log2qty) - 1;
  3876. return table;
  3877. }
  3878. #ifdef CONFIG_OUT_OF_LINE_PFN_TO_PAGE
  3879. struct page *pfn_to_page(unsigned long pfn)
  3880. {
  3881. return __pfn_to_page(pfn);
  3882. }
  3883. unsigned long page_to_pfn(struct page *page)
  3884. {
  3885. return __page_to_pfn(page);
  3886. }
  3887. EXPORT_SYMBOL(pfn_to_page);
  3888. EXPORT_SYMBOL(page_to_pfn);
  3889. #endif /* CONFIG_OUT_OF_LINE_PFN_TO_PAGE */
  3890. /* Return a pointer to the bitmap storing bits affecting a block of pages */
  3891. static inline unsigned long *get_pageblock_bitmap(struct zone *zone,
  3892. unsigned long pfn)
  3893. {
  3894. #ifdef CONFIG_SPARSEMEM
  3895. return __pfn_to_section(pfn)->pageblock_flags;
  3896. #else
  3897. return zone->pageblock_flags;
  3898. #endif /* CONFIG_SPARSEMEM */
  3899. }
  3900. static inline int pfn_to_bitidx(struct zone *zone, unsigned long pfn)
  3901. {
  3902. #ifdef CONFIG_SPARSEMEM
  3903. pfn &= (PAGES_PER_SECTION-1);
  3904. return (pfn >> pageblock_order) * NR_PAGEBLOCK_BITS;
  3905. #else
  3906. pfn = pfn - zone->zone_start_pfn;
  3907. return (pfn >> pageblock_order) * NR_PAGEBLOCK_BITS;
  3908. #endif /* CONFIG_SPARSEMEM */
  3909. }
  3910. /**
  3911. * get_pageblock_flags_group - Return the requested group of flags for the pageblock_nr_pages block of pages
  3912. * @page: The page within the block of interest
  3913. * @start_bitidx: The first bit of interest to retrieve
  3914. * @end_bitidx: The last bit of interest
  3915. * returns pageblock_bits flags
  3916. */
  3917. unsigned long get_pageblock_flags_group(struct page *page,
  3918. int start_bitidx, int end_bitidx)
  3919. {
  3920. struct zone *zone;
  3921. unsigned long *bitmap;
  3922. unsigned long pfn, bitidx;
  3923. unsigned long flags = 0;
  3924. unsigned long value = 1;
  3925. zone = page_zone(page);
  3926. pfn = page_to_pfn(page);
  3927. bitmap = get_pageblock_bitmap(zone, pfn);
  3928. bitidx = pfn_to_bitidx(zone, pfn);
  3929. for (; start_bitidx <= end_bitidx; start_bitidx++, value <<= 1)
  3930. if (test_bit(bitidx + start_bitidx, bitmap))
  3931. flags |= value;
  3932. return flags;
  3933. }
  3934. /**
  3935. * set_pageblock_flags_group - Set the requested group of flags for a pageblock_nr_pages block of pages
  3936. * @page: The page within the block of interest
  3937. * @start_bitidx: The first bit of interest
  3938. * @end_bitidx: The last bit of interest
  3939. * @flags: The flags to set
  3940. */
  3941. void set_pageblock_flags_group(struct page *page, unsigned long flags,
  3942. int start_bitidx, int end_bitidx)
  3943. {
  3944. struct zone *zone;
  3945. unsigned long *bitmap;
  3946. unsigned long pfn, bitidx;
  3947. unsigned long value = 1;
  3948. zone = page_zone(page);
  3949. pfn = page_to_pfn(page);
  3950. bitmap = get_pageblock_bitmap(zone, pfn);
  3951. bitidx = pfn_to_bitidx(zone, pfn);
  3952. VM_BUG_ON(pfn < zone->zone_start_pfn);
  3953. VM_BUG_ON(pfn >= zone->zone_start_pfn + zone->spanned_pages);
  3954. for (; start_bitidx <= end_bitidx; start_bitidx++, value <<= 1)
  3955. if (flags & value)
  3956. __set_bit(bitidx + start_bitidx, bitmap);
  3957. else
  3958. __clear_bit(bitidx + start_bitidx, bitmap);
  3959. }
  3960. /*
  3961. * This is designed as sub function...plz see page_isolation.c also.
  3962. * set/clear page block's type to be ISOLATE.
  3963. * page allocater never alloc memory from ISOLATE block.
  3964. */
  3965. int set_migratetype_isolate(struct page *page)
  3966. {
  3967. struct zone *zone;
  3968. unsigned long flags;
  3969. int ret = -EBUSY;
  3970. zone = page_zone(page);
  3971. spin_lock_irqsave(&zone->lock, flags);
  3972. /*
  3973. * In future, more migrate types will be able to be isolation target.
  3974. */
  3975. if (get_pageblock_migratetype(page) != MIGRATE_MOVABLE)
  3976. goto out;
  3977. set_pageblock_migratetype(page, MIGRATE_ISOLATE);
  3978. move_freepages_block(zone, page, MIGRATE_ISOLATE);
  3979. ret = 0;
  3980. out:
  3981. spin_unlock_irqrestore(&zone->lock, flags);
  3982. if (!ret)
  3983. drain_all_pages();
  3984. return ret;
  3985. }
  3986. void unset_migratetype_isolate(struct page *page)
  3987. {
  3988. struct zone *zone;
  3989. unsigned long flags;
  3990. zone = page_zone(page);
  3991. spin_lock_irqsave(&zone->lock, flags);
  3992. if (get_pageblock_migratetype(page) != MIGRATE_ISOLATE)
  3993. goto out;
  3994. set_pageblock_migratetype(page, MIGRATE_MOVABLE);
  3995. move_freepages_block(zone, page, MIGRATE_MOVABLE);
  3996. out:
  3997. spin_unlock_irqrestore(&zone->lock, flags);
  3998. }
  3999. #ifdef CONFIG_MEMORY_HOTREMOVE
  4000. /*
  4001. * All pages in the range must be isolated before calling this.
  4002. */
  4003. void
  4004. __offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
  4005. {
  4006. struct page *page;
  4007. struct zone *zone;
  4008. int order, i;
  4009. unsigned long pfn;
  4010. unsigned long flags;
  4011. /* find the first valid pfn */
  4012. for (pfn = start_pfn; pfn < end_pfn; pfn++)
  4013. if (pfn_valid(pfn))
  4014. break;
  4015. if (pfn == end_pfn)
  4016. return;
  4017. zone = page_zone(pfn_to_page(pfn));
  4018. spin_lock_irqsave(&zone->lock, flags);
  4019. pfn = start_pfn;
  4020. while (pfn < end_pfn) {
  4021. if (!pfn_valid(pfn)) {
  4022. pfn++;
  4023. continue;
  4024. }
  4025. page = pfn_to_page(pfn);
  4026. BUG_ON(page_count(page));
  4027. BUG_ON(!PageBuddy(page));
  4028. order = page_order(page);
  4029. #ifdef CONFIG_DEBUG_VM
  4030. printk(KERN_INFO "remove from free list %lx %d %lx\n",
  4031. pfn, 1 << order, end_pfn);
  4032. #endif
  4033. list_del(&page->lru);
  4034. rmv_page_order(page);
  4035. zone->free_area[order].nr_free--;
  4036. __mod_zone_page_state(zone, NR_FREE_PAGES,
  4037. - (1UL << order));
  4038. for (i = 0; i < (1 << order); i++)
  4039. SetPageReserved((page+i));
  4040. pfn += (1 << order);
  4041. }
  4042. spin_unlock_irqrestore(&zone->lock, flags);
  4043. }
  4044. #endif