page_alloc.c 136 KB

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