page_alloc.c 139 KB

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