page_alloc.c 139 KB

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