page_alloc.c 129 KB

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