page_alloc.c 133 KB

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