slab.c 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461
  1. /*
  2. * linux/mm/slab.c
  3. * Written by Mark Hemment, 1996/97.
  4. * (markhe@nextd.demon.co.uk)
  5. *
  6. * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
  7. *
  8. * Major cleanup, different bufctl logic, per-cpu arrays
  9. * (c) 2000 Manfred Spraul
  10. *
  11. * Cleanup, make the head arrays unconditional, preparation for NUMA
  12. * (c) 2002 Manfred Spraul
  13. *
  14. * An implementation of the Slab Allocator as described in outline in;
  15. * UNIX Internals: The New Frontiers by Uresh Vahalia
  16. * Pub: Prentice Hall ISBN 0-13-101908-2
  17. * or with a little more detail in;
  18. * The Slab Allocator: An Object-Caching Kernel Memory Allocator
  19. * Jeff Bonwick (Sun Microsystems).
  20. * Presented at: USENIX Summer 1994 Technical Conference
  21. *
  22. * The memory is organized in caches, one cache for each object type.
  23. * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
  24. * Each cache consists out of many slabs (they are small (usually one
  25. * page long) and always contiguous), and each slab contains multiple
  26. * initialized objects.
  27. *
  28. * This means, that your constructor is used only for newly allocated
  29. * slabs and you must pass objects with the same intializations to
  30. * kmem_cache_free.
  31. *
  32. * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
  33. * normal). If you need a special memory type, then must create a new
  34. * cache for that memory type.
  35. *
  36. * In order to reduce fragmentation, the slabs are sorted in 3 groups:
  37. * full slabs with 0 free objects
  38. * partial slabs
  39. * empty slabs with no allocated objects
  40. *
  41. * If partial slabs exist, then new allocations come from these slabs,
  42. * otherwise from empty slabs or new slabs are allocated.
  43. *
  44. * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
  45. * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
  46. *
  47. * Each cache has a short per-cpu head array, most allocs
  48. * and frees go into that array, and if that array overflows, then 1/2
  49. * of the entries in the array are given back into the global cache.
  50. * The head array is strictly LIFO and should improve the cache hit rates.
  51. * On SMP, it additionally reduces the spinlock operations.
  52. *
  53. * The c_cpuarray may not be read with enabled local interrupts -
  54. * it's changed with a smp_call_function().
  55. *
  56. * SMP synchronization:
  57. * constructors and destructors are called without any locking.
  58. * Several members in struct kmem_cache and struct slab never change, they
  59. * are accessed without any locking.
  60. * The per-cpu arrays are never accessed from the wrong cpu, no locking,
  61. * and local interrupts are disabled so slab code is preempt-safe.
  62. * The non-constant members are protected with a per-cache irq spinlock.
  63. *
  64. * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
  65. * in 2000 - many ideas in the current implementation are derived from
  66. * his patch.
  67. *
  68. * Further notes from the original documentation:
  69. *
  70. * 11 April '97. Started multi-threading - markhe
  71. * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
  72. * The sem is only needed when accessing/extending the cache-chain, which
  73. * can never happen inside an interrupt (kmem_cache_create(),
  74. * kmem_cache_shrink() and kmem_cache_reap()).
  75. *
  76. * At present, each engine can be growing a cache. This should be blocked.
  77. *
  78. * 15 March 2005. NUMA slab allocator.
  79. * Shai Fultheim <shai@scalex86.org>.
  80. * Shobhit Dayal <shobhit@calsoftinc.com>
  81. * Alok N Kataria <alokk@calsoftinc.com>
  82. * Christoph Lameter <christoph@lameter.com>
  83. *
  84. * Modified the slab allocator to be node aware on NUMA systems.
  85. * Each node has its own list of partial, free and full slabs.
  86. * All object allocations for a node occur from node specific slab lists.
  87. */
  88. #include <linux/slab.h>
  89. #include <linux/mm.h>
  90. #include <linux/poison.h>
  91. #include <linux/swap.h>
  92. #include <linux/cache.h>
  93. #include <linux/interrupt.h>
  94. #include <linux/init.h>
  95. #include <linux/compiler.h>
  96. #include <linux/cpuset.h>
  97. #include <linux/seq_file.h>
  98. #include <linux/notifier.h>
  99. #include <linux/kallsyms.h>
  100. #include <linux/cpu.h>
  101. #include <linux/sysctl.h>
  102. #include <linux/module.h>
  103. #include <linux/rcupdate.h>
  104. #include <linux/string.h>
  105. #include <linux/uaccess.h>
  106. #include <linux/nodemask.h>
  107. #include <linux/mempolicy.h>
  108. #include <linux/mutex.h>
  109. #include <linux/fault-inject.h>
  110. #include <linux/rtmutex.h>
  111. #include <linux/reciprocal_div.h>
  112. #include <asm/cacheflush.h>
  113. #include <asm/tlbflush.h>
  114. #include <asm/page.h>
  115. /*
  116. * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
  117. * SLAB_RED_ZONE & SLAB_POISON.
  118. * 0 for faster, smaller code (especially in the critical paths).
  119. *
  120. * STATS - 1 to collect stats for /proc/slabinfo.
  121. * 0 for faster, smaller code (especially in the critical paths).
  122. *
  123. * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
  124. */
  125. #ifdef CONFIG_DEBUG_SLAB
  126. #define DEBUG 1
  127. #define STATS 1
  128. #define FORCED_DEBUG 1
  129. #else
  130. #define DEBUG 0
  131. #define STATS 0
  132. #define FORCED_DEBUG 0
  133. #endif
  134. /* Shouldn't this be in a header file somewhere? */
  135. #define BYTES_PER_WORD sizeof(void *)
  136. #ifndef cache_line_size
  137. #define cache_line_size() L1_CACHE_BYTES
  138. #endif
  139. #ifndef ARCH_KMALLOC_MINALIGN
  140. /*
  141. * Enforce a minimum alignment for the kmalloc caches.
  142. * Usually, the kmalloc caches are cache_line_size() aligned, except when
  143. * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
  144. * Some archs want to perform DMA into kmalloc caches and need a guaranteed
  145. * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
  146. * Note that this flag disables some debug features.
  147. */
  148. #define ARCH_KMALLOC_MINALIGN 0
  149. #endif
  150. #ifndef ARCH_SLAB_MINALIGN
  151. /*
  152. * Enforce a minimum alignment for all caches.
  153. * Intended for archs that get misalignment faults even for BYTES_PER_WORD
  154. * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
  155. * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
  156. * some debug features.
  157. */
  158. #define ARCH_SLAB_MINALIGN 0
  159. #endif
  160. #ifndef ARCH_KMALLOC_FLAGS
  161. #define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
  162. #endif
  163. /* Legal flag mask for kmem_cache_create(). */
  164. #if DEBUG
  165. # define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
  166. SLAB_POISON | SLAB_HWCACHE_ALIGN | \
  167. SLAB_CACHE_DMA | \
  168. SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
  169. SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
  170. SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
  171. #else
  172. # define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
  173. SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
  174. SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
  175. SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
  176. #endif
  177. /*
  178. * kmem_bufctl_t:
  179. *
  180. * Bufctl's are used for linking objs within a slab
  181. * linked offsets.
  182. *
  183. * This implementation relies on "struct page" for locating the cache &
  184. * slab an object belongs to.
  185. * This allows the bufctl structure to be small (one int), but limits
  186. * the number of objects a slab (not a cache) can contain when off-slab
  187. * bufctls are used. The limit is the size of the largest general cache
  188. * that does not use off-slab slabs.
  189. * For 32bit archs with 4 kB pages, is this 56.
  190. * This is not serious, as it is only for large objects, when it is unwise
  191. * to have too many per slab.
  192. * Note: This limit can be raised by introducing a general cache whose size
  193. * is less than 512 (PAGE_SIZE<<3), but greater than 256.
  194. */
  195. typedef unsigned int kmem_bufctl_t;
  196. #define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
  197. #define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
  198. #define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
  199. #define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
  200. /*
  201. * struct slab
  202. *
  203. * Manages the objs in a slab. Placed either at the beginning of mem allocated
  204. * for a slab, or allocated from an general cache.
  205. * Slabs are chained into three list: fully used, partial, fully free slabs.
  206. */
  207. struct slab {
  208. struct list_head list;
  209. unsigned long colouroff;
  210. void *s_mem; /* including colour offset */
  211. unsigned int inuse; /* num of objs active in slab */
  212. kmem_bufctl_t free;
  213. unsigned short nodeid;
  214. };
  215. /*
  216. * struct slab_rcu
  217. *
  218. * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
  219. * arrange for kmem_freepages to be called via RCU. This is useful if
  220. * we need to approach a kernel structure obliquely, from its address
  221. * obtained without the usual locking. We can lock the structure to
  222. * stabilize it and check it's still at the given address, only if we
  223. * can be sure that the memory has not been meanwhile reused for some
  224. * other kind of object (which our subsystem's lock might corrupt).
  225. *
  226. * rcu_read_lock before reading the address, then rcu_read_unlock after
  227. * taking the spinlock within the structure expected at that address.
  228. *
  229. * We assume struct slab_rcu can overlay struct slab when destroying.
  230. */
  231. struct slab_rcu {
  232. struct rcu_head head;
  233. struct kmem_cache *cachep;
  234. void *addr;
  235. };
  236. /*
  237. * struct array_cache
  238. *
  239. * Purpose:
  240. * - LIFO ordering, to hand out cache-warm objects from _alloc
  241. * - reduce the number of linked list operations
  242. * - reduce spinlock operations
  243. *
  244. * The limit is stored in the per-cpu structure to reduce the data cache
  245. * footprint.
  246. *
  247. */
  248. struct array_cache {
  249. unsigned int avail;
  250. unsigned int limit;
  251. unsigned int batchcount;
  252. unsigned int touched;
  253. spinlock_t lock;
  254. void *entry[0]; /*
  255. * Must have this definition in here for the proper
  256. * alignment of array_cache. Also simplifies accessing
  257. * the entries.
  258. * [0] is for gcc 2.95. It should really be [].
  259. */
  260. };
  261. /*
  262. * bootstrap: The caches do not work without cpuarrays anymore, but the
  263. * cpuarrays are allocated from the generic caches...
  264. */
  265. #define BOOT_CPUCACHE_ENTRIES 1
  266. struct arraycache_init {
  267. struct array_cache cache;
  268. void *entries[BOOT_CPUCACHE_ENTRIES];
  269. };
  270. /*
  271. * The slab lists for all objects.
  272. */
  273. struct kmem_list3 {
  274. struct list_head slabs_partial; /* partial list first, better asm code */
  275. struct list_head slabs_full;
  276. struct list_head slabs_free;
  277. unsigned long free_objects;
  278. unsigned int free_limit;
  279. unsigned int colour_next; /* Per-node cache coloring */
  280. spinlock_t list_lock;
  281. struct array_cache *shared; /* shared per node */
  282. struct array_cache **alien; /* on other nodes */
  283. unsigned long next_reap; /* updated without locking */
  284. int free_touched; /* updated without locking */
  285. };
  286. /*
  287. * Need this for bootstrapping a per node allocator.
  288. */
  289. #define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
  290. struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
  291. #define CACHE_CACHE 0
  292. #define SIZE_AC 1
  293. #define SIZE_L3 (1 + MAX_NUMNODES)
  294. static int drain_freelist(struct kmem_cache *cache,
  295. struct kmem_list3 *l3, int tofree);
  296. static void free_block(struct kmem_cache *cachep, void **objpp, int len,
  297. int node);
  298. static int enable_cpucache(struct kmem_cache *cachep);
  299. static void cache_reap(struct work_struct *unused);
  300. /*
  301. * This function must be completely optimized away if a constant is passed to
  302. * it. Mostly the same as what is in linux/slab.h except it returns an index.
  303. */
  304. static __always_inline int index_of(const size_t size)
  305. {
  306. extern void __bad_size(void);
  307. if (__builtin_constant_p(size)) {
  308. int i = 0;
  309. #define CACHE(x) \
  310. if (size <=x) \
  311. return i; \
  312. else \
  313. i++;
  314. #include "linux/kmalloc_sizes.h"
  315. #undef CACHE
  316. __bad_size();
  317. } else
  318. __bad_size();
  319. return 0;
  320. }
  321. static int slab_early_init = 1;
  322. #define INDEX_AC index_of(sizeof(struct arraycache_init))
  323. #define INDEX_L3 index_of(sizeof(struct kmem_list3))
  324. static void kmem_list3_init(struct kmem_list3 *parent)
  325. {
  326. INIT_LIST_HEAD(&parent->slabs_full);
  327. INIT_LIST_HEAD(&parent->slabs_partial);
  328. INIT_LIST_HEAD(&parent->slabs_free);
  329. parent->shared = NULL;
  330. parent->alien = NULL;
  331. parent->colour_next = 0;
  332. spin_lock_init(&parent->list_lock);
  333. parent->free_objects = 0;
  334. parent->free_touched = 0;
  335. }
  336. #define MAKE_LIST(cachep, listp, slab, nodeid) \
  337. do { \
  338. INIT_LIST_HEAD(listp); \
  339. list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
  340. } while (0)
  341. #define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
  342. do { \
  343. MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
  344. MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
  345. MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
  346. } while (0)
  347. /*
  348. * struct kmem_cache
  349. *
  350. * manages a cache.
  351. */
  352. struct kmem_cache {
  353. /* 1) per-cpu data, touched during every alloc/free */
  354. struct array_cache *array[NR_CPUS];
  355. /* 2) Cache tunables. Protected by cache_chain_mutex */
  356. unsigned int batchcount;
  357. unsigned int limit;
  358. unsigned int shared;
  359. unsigned int buffer_size;
  360. u32 reciprocal_buffer_size;
  361. /* 3) touched by every alloc & free from the backend */
  362. struct kmem_list3 *nodelists[MAX_NUMNODES];
  363. unsigned int flags; /* constant flags */
  364. unsigned int num; /* # of objs per slab */
  365. /* 4) cache_grow/shrink */
  366. /* order of pgs per slab (2^n) */
  367. unsigned int gfporder;
  368. /* force GFP flags, e.g. GFP_DMA */
  369. gfp_t gfpflags;
  370. size_t colour; /* cache colouring range */
  371. unsigned int colour_off; /* colour offset */
  372. struct kmem_cache *slabp_cache;
  373. unsigned int slab_size;
  374. unsigned int dflags; /* dynamic flags */
  375. /* constructor func */
  376. void (*ctor) (void *, struct kmem_cache *, unsigned long);
  377. /* de-constructor func */
  378. void (*dtor) (void *, struct kmem_cache *, unsigned long);
  379. /* 5) cache creation/removal */
  380. const char *name;
  381. struct list_head next;
  382. /* 6) statistics */
  383. #if STATS
  384. unsigned long num_active;
  385. unsigned long num_allocations;
  386. unsigned long high_mark;
  387. unsigned long grown;
  388. unsigned long reaped;
  389. unsigned long errors;
  390. unsigned long max_freeable;
  391. unsigned long node_allocs;
  392. unsigned long node_frees;
  393. unsigned long node_overflow;
  394. atomic_t allochit;
  395. atomic_t allocmiss;
  396. atomic_t freehit;
  397. atomic_t freemiss;
  398. #endif
  399. #if DEBUG
  400. /*
  401. * If debugging is enabled, then the allocator can add additional
  402. * fields and/or padding to every object. buffer_size contains the total
  403. * object size including these internal fields, the following two
  404. * variables contain the offset to the user object and its size.
  405. */
  406. int obj_offset;
  407. int obj_size;
  408. #endif
  409. };
  410. #define CFLGS_OFF_SLAB (0x80000000UL)
  411. #define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
  412. #define BATCHREFILL_LIMIT 16
  413. /*
  414. * Optimization question: fewer reaps means less probability for unnessary
  415. * cpucache drain/refill cycles.
  416. *
  417. * OTOH the cpuarrays can contain lots of objects,
  418. * which could lock up otherwise freeable slabs.
  419. */
  420. #define REAPTIMEOUT_CPUC (2*HZ)
  421. #define REAPTIMEOUT_LIST3 (4*HZ)
  422. #if STATS
  423. #define STATS_INC_ACTIVE(x) ((x)->num_active++)
  424. #define STATS_DEC_ACTIVE(x) ((x)->num_active--)
  425. #define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
  426. #define STATS_INC_GROWN(x) ((x)->grown++)
  427. #define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
  428. #define STATS_SET_HIGH(x) \
  429. do { \
  430. if ((x)->num_active > (x)->high_mark) \
  431. (x)->high_mark = (x)->num_active; \
  432. } while (0)
  433. #define STATS_INC_ERR(x) ((x)->errors++)
  434. #define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
  435. #define STATS_INC_NODEFREES(x) ((x)->node_frees++)
  436. #define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
  437. #define STATS_SET_FREEABLE(x, i) \
  438. do { \
  439. if ((x)->max_freeable < i) \
  440. (x)->max_freeable = i; \
  441. } while (0)
  442. #define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
  443. #define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
  444. #define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
  445. #define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
  446. #else
  447. #define STATS_INC_ACTIVE(x) do { } while (0)
  448. #define STATS_DEC_ACTIVE(x) do { } while (0)
  449. #define STATS_INC_ALLOCED(x) do { } while (0)
  450. #define STATS_INC_GROWN(x) do { } while (0)
  451. #define STATS_ADD_REAPED(x,y) do { } while (0)
  452. #define STATS_SET_HIGH(x) do { } while (0)
  453. #define STATS_INC_ERR(x) do { } while (0)
  454. #define STATS_INC_NODEALLOCS(x) do { } while (0)
  455. #define STATS_INC_NODEFREES(x) do { } while (0)
  456. #define STATS_INC_ACOVERFLOW(x) do { } while (0)
  457. #define STATS_SET_FREEABLE(x, i) do { } while (0)
  458. #define STATS_INC_ALLOCHIT(x) do { } while (0)
  459. #define STATS_INC_ALLOCMISS(x) do { } while (0)
  460. #define STATS_INC_FREEHIT(x) do { } while (0)
  461. #define STATS_INC_FREEMISS(x) do { } while (0)
  462. #endif
  463. #if DEBUG
  464. /*
  465. * memory layout of objects:
  466. * 0 : objp
  467. * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
  468. * the end of an object is aligned with the end of the real
  469. * allocation. Catches writes behind the end of the allocation.
  470. * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
  471. * redzone word.
  472. * cachep->obj_offset: The real object.
  473. * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
  474. * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
  475. * [BYTES_PER_WORD long]
  476. */
  477. static int obj_offset(struct kmem_cache *cachep)
  478. {
  479. return cachep->obj_offset;
  480. }
  481. static int obj_size(struct kmem_cache *cachep)
  482. {
  483. return cachep->obj_size;
  484. }
  485. static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
  486. {
  487. BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
  488. return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
  489. }
  490. static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
  491. {
  492. BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
  493. if (cachep->flags & SLAB_STORE_USER)
  494. return (unsigned long *)(objp + cachep->buffer_size -
  495. 2 * BYTES_PER_WORD);
  496. return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
  497. }
  498. static void **dbg_userword(struct kmem_cache *cachep, void *objp)
  499. {
  500. BUG_ON(!(cachep->flags & SLAB_STORE_USER));
  501. return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
  502. }
  503. #else
  504. #define obj_offset(x) 0
  505. #define obj_size(cachep) (cachep->buffer_size)
  506. #define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
  507. #define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
  508. #define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
  509. #endif
  510. /*
  511. * Maximum size of an obj (in 2^order pages) and absolute limit for the gfp
  512. * order.
  513. */
  514. #if defined(CONFIG_LARGE_ALLOCS)
  515. #define MAX_OBJ_ORDER 13 /* up to 32Mb */
  516. #define MAX_GFP_ORDER 13 /* up to 32Mb */
  517. #elif defined(CONFIG_MMU)
  518. #define MAX_OBJ_ORDER 5 /* 32 pages */
  519. #define MAX_GFP_ORDER 5 /* 32 pages */
  520. #else
  521. #define MAX_OBJ_ORDER 8 /* up to 1Mb */
  522. #define MAX_GFP_ORDER 8 /* up to 1Mb */
  523. #endif
  524. /*
  525. * Do not go above this order unless 0 objects fit into the slab.
  526. */
  527. #define BREAK_GFP_ORDER_HI 1
  528. #define BREAK_GFP_ORDER_LO 0
  529. static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
  530. /*
  531. * Functions for storing/retrieving the cachep and or slab from the page
  532. * allocator. These are used to find the slab an obj belongs to. With kfree(),
  533. * these are used to find the cache which an obj belongs to.
  534. */
  535. static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
  536. {
  537. page->lru.next = (struct list_head *)cache;
  538. }
  539. static inline struct kmem_cache *page_get_cache(struct page *page)
  540. {
  541. if (unlikely(PageCompound(page)))
  542. page = (struct page *)page_private(page);
  543. BUG_ON(!PageSlab(page));
  544. return (struct kmem_cache *)page->lru.next;
  545. }
  546. static inline void page_set_slab(struct page *page, struct slab *slab)
  547. {
  548. page->lru.prev = (struct list_head *)slab;
  549. }
  550. static inline struct slab *page_get_slab(struct page *page)
  551. {
  552. if (unlikely(PageCompound(page)))
  553. page = (struct page *)page_private(page);
  554. BUG_ON(!PageSlab(page));
  555. return (struct slab *)page->lru.prev;
  556. }
  557. static inline struct kmem_cache *virt_to_cache(const void *obj)
  558. {
  559. struct page *page = virt_to_page(obj);
  560. return page_get_cache(page);
  561. }
  562. static inline struct slab *virt_to_slab(const void *obj)
  563. {
  564. struct page *page = virt_to_page(obj);
  565. return page_get_slab(page);
  566. }
  567. static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
  568. unsigned int idx)
  569. {
  570. return slab->s_mem + cache->buffer_size * idx;
  571. }
  572. /*
  573. * We want to avoid an expensive divide : (offset / cache->buffer_size)
  574. * Using the fact that buffer_size is a constant for a particular cache,
  575. * we can replace (offset / cache->buffer_size) by
  576. * reciprocal_divide(offset, cache->reciprocal_buffer_size)
  577. */
  578. static inline unsigned int obj_to_index(const struct kmem_cache *cache,
  579. const struct slab *slab, void *obj)
  580. {
  581. u32 offset = (obj - slab->s_mem);
  582. return reciprocal_divide(offset, cache->reciprocal_buffer_size);
  583. }
  584. /*
  585. * These are the default caches for kmalloc. Custom caches can have other sizes.
  586. */
  587. struct cache_sizes malloc_sizes[] = {
  588. #define CACHE(x) { .cs_size = (x) },
  589. #include <linux/kmalloc_sizes.h>
  590. CACHE(ULONG_MAX)
  591. #undef CACHE
  592. };
  593. EXPORT_SYMBOL(malloc_sizes);
  594. /* Must match cache_sizes above. Out of line to keep cache footprint low. */
  595. struct cache_names {
  596. char *name;
  597. char *name_dma;
  598. };
  599. static struct cache_names __initdata cache_names[] = {
  600. #define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
  601. #include <linux/kmalloc_sizes.h>
  602. {NULL,}
  603. #undef CACHE
  604. };
  605. static struct arraycache_init initarray_cache __initdata =
  606. { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
  607. static struct arraycache_init initarray_generic =
  608. { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
  609. /* internal cache of cache description objs */
  610. static struct kmem_cache cache_cache = {
  611. .batchcount = 1,
  612. .limit = BOOT_CPUCACHE_ENTRIES,
  613. .shared = 1,
  614. .buffer_size = sizeof(struct kmem_cache),
  615. .name = "kmem_cache",
  616. #if DEBUG
  617. .obj_size = sizeof(struct kmem_cache),
  618. #endif
  619. };
  620. #define BAD_ALIEN_MAGIC 0x01020304ul
  621. #ifdef CONFIG_LOCKDEP
  622. /*
  623. * Slab sometimes uses the kmalloc slabs to store the slab headers
  624. * for other slabs "off slab".
  625. * The locking for this is tricky in that it nests within the locks
  626. * of all other slabs in a few places; to deal with this special
  627. * locking we put on-slab caches into a separate lock-class.
  628. *
  629. * We set lock class for alien array caches which are up during init.
  630. * The lock annotation will be lost if all cpus of a node goes down and
  631. * then comes back up during hotplug
  632. */
  633. static struct lock_class_key on_slab_l3_key;
  634. static struct lock_class_key on_slab_alc_key;
  635. static inline void init_lock_keys(void)
  636. {
  637. int q;
  638. struct cache_sizes *s = malloc_sizes;
  639. while (s->cs_size != ULONG_MAX) {
  640. for_each_node(q) {
  641. struct array_cache **alc;
  642. int r;
  643. struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
  644. if (!l3 || OFF_SLAB(s->cs_cachep))
  645. continue;
  646. lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
  647. alc = l3->alien;
  648. /*
  649. * FIXME: This check for BAD_ALIEN_MAGIC
  650. * should go away when common slab code is taught to
  651. * work even without alien caches.
  652. * Currently, non NUMA code returns BAD_ALIEN_MAGIC
  653. * for alloc_alien_cache,
  654. */
  655. if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
  656. continue;
  657. for_each_node(r) {
  658. if (alc[r])
  659. lockdep_set_class(&alc[r]->lock,
  660. &on_slab_alc_key);
  661. }
  662. }
  663. s++;
  664. }
  665. }
  666. #else
  667. static inline void init_lock_keys(void)
  668. {
  669. }
  670. #endif
  671. /*
  672. * 1. Guard access to the cache-chain.
  673. * 2. Protect sanity of cpu_online_map against cpu hotplug events
  674. */
  675. static DEFINE_MUTEX(cache_chain_mutex);
  676. static struct list_head cache_chain;
  677. /*
  678. * chicken and egg problem: delay the per-cpu array allocation
  679. * until the general caches are up.
  680. */
  681. static enum {
  682. NONE,
  683. PARTIAL_AC,
  684. PARTIAL_L3,
  685. FULL
  686. } g_cpucache_up;
  687. /*
  688. * used by boot code to determine if it can use slab based allocator
  689. */
  690. int slab_is_available(void)
  691. {
  692. return g_cpucache_up == FULL;
  693. }
  694. static DEFINE_PER_CPU(struct delayed_work, reap_work);
  695. static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
  696. {
  697. return cachep->array[smp_processor_id()];
  698. }
  699. static inline struct kmem_cache *__find_general_cachep(size_t size,
  700. gfp_t gfpflags)
  701. {
  702. struct cache_sizes *csizep = malloc_sizes;
  703. #if DEBUG
  704. /* This happens if someone tries to call
  705. * kmem_cache_create(), or __kmalloc(), before
  706. * the generic caches are initialized.
  707. */
  708. BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
  709. #endif
  710. while (size > csizep->cs_size)
  711. csizep++;
  712. /*
  713. * Really subtle: The last entry with cs->cs_size==ULONG_MAX
  714. * has cs_{dma,}cachep==NULL. Thus no special case
  715. * for large kmalloc calls required.
  716. */
  717. if (unlikely(gfpflags & GFP_DMA))
  718. return csizep->cs_dmacachep;
  719. return csizep->cs_cachep;
  720. }
  721. static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
  722. {
  723. return __find_general_cachep(size, gfpflags);
  724. }
  725. static size_t slab_mgmt_size(size_t nr_objs, size_t align)
  726. {
  727. return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
  728. }
  729. /*
  730. * Calculate the number of objects and left-over bytes for a given buffer size.
  731. */
  732. static void cache_estimate(unsigned long gfporder, size_t buffer_size,
  733. size_t align, int flags, size_t *left_over,
  734. unsigned int *num)
  735. {
  736. int nr_objs;
  737. size_t mgmt_size;
  738. size_t slab_size = PAGE_SIZE << gfporder;
  739. /*
  740. * The slab management structure can be either off the slab or
  741. * on it. For the latter case, the memory allocated for a
  742. * slab is used for:
  743. *
  744. * - The struct slab
  745. * - One kmem_bufctl_t for each object
  746. * - Padding to respect alignment of @align
  747. * - @buffer_size bytes for each object
  748. *
  749. * If the slab management structure is off the slab, then the
  750. * alignment will already be calculated into the size. Because
  751. * the slabs are all pages aligned, the objects will be at the
  752. * correct alignment when allocated.
  753. */
  754. if (flags & CFLGS_OFF_SLAB) {
  755. mgmt_size = 0;
  756. nr_objs = slab_size / buffer_size;
  757. if (nr_objs > SLAB_LIMIT)
  758. nr_objs = SLAB_LIMIT;
  759. } else {
  760. /*
  761. * Ignore padding for the initial guess. The padding
  762. * is at most @align-1 bytes, and @buffer_size is at
  763. * least @align. In the worst case, this result will
  764. * be one greater than the number of objects that fit
  765. * into the memory allocation when taking the padding
  766. * into account.
  767. */
  768. nr_objs = (slab_size - sizeof(struct slab)) /
  769. (buffer_size + sizeof(kmem_bufctl_t));
  770. /*
  771. * This calculated number will be either the right
  772. * amount, or one greater than what we want.
  773. */
  774. if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
  775. > slab_size)
  776. nr_objs--;
  777. if (nr_objs > SLAB_LIMIT)
  778. nr_objs = SLAB_LIMIT;
  779. mgmt_size = slab_mgmt_size(nr_objs, align);
  780. }
  781. *num = nr_objs;
  782. *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
  783. }
  784. #define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
  785. static void __slab_error(const char *function, struct kmem_cache *cachep,
  786. char *msg)
  787. {
  788. printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
  789. function, cachep->name, msg);
  790. dump_stack();
  791. }
  792. /*
  793. * By default on NUMA we use alien caches to stage the freeing of
  794. * objects allocated from other nodes. This causes massive memory
  795. * inefficiencies when using fake NUMA setup to split memory into a
  796. * large number of small nodes, so it can be disabled on the command
  797. * line
  798. */
  799. static int use_alien_caches __read_mostly = 1;
  800. static int __init noaliencache_setup(char *s)
  801. {
  802. use_alien_caches = 0;
  803. return 1;
  804. }
  805. __setup("noaliencache", noaliencache_setup);
  806. #ifdef CONFIG_NUMA
  807. /*
  808. * Special reaping functions for NUMA systems called from cache_reap().
  809. * These take care of doing round robin flushing of alien caches (containing
  810. * objects freed on different nodes from which they were allocated) and the
  811. * flushing of remote pcps by calling drain_node_pages.
  812. */
  813. static DEFINE_PER_CPU(unsigned long, reap_node);
  814. static void init_reap_node(int cpu)
  815. {
  816. int node;
  817. node = next_node(cpu_to_node(cpu), node_online_map);
  818. if (node == MAX_NUMNODES)
  819. node = first_node(node_online_map);
  820. per_cpu(reap_node, cpu) = node;
  821. }
  822. static void next_reap_node(void)
  823. {
  824. int node = __get_cpu_var(reap_node);
  825. /*
  826. * Also drain per cpu pages on remote zones
  827. */
  828. if (node != numa_node_id())
  829. drain_node_pages(node);
  830. node = next_node(node, node_online_map);
  831. if (unlikely(node >= MAX_NUMNODES))
  832. node = first_node(node_online_map);
  833. __get_cpu_var(reap_node) = node;
  834. }
  835. #else
  836. #define init_reap_node(cpu) do { } while (0)
  837. #define next_reap_node(void) do { } while (0)
  838. #endif
  839. /*
  840. * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
  841. * via the workqueue/eventd.
  842. * Add the CPU number into the expiration time to minimize the possibility of
  843. * the CPUs getting into lockstep and contending for the global cache chain
  844. * lock.
  845. */
  846. static void __devinit start_cpu_timer(int cpu)
  847. {
  848. struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
  849. /*
  850. * When this gets called from do_initcalls via cpucache_init(),
  851. * init_workqueues() has already run, so keventd will be setup
  852. * at that time.
  853. */
  854. if (keventd_up() && reap_work->work.func == NULL) {
  855. init_reap_node(cpu);
  856. INIT_DELAYED_WORK(reap_work, cache_reap);
  857. schedule_delayed_work_on(cpu, reap_work,
  858. __round_jiffies_relative(HZ, cpu));
  859. }
  860. }
  861. static struct array_cache *alloc_arraycache(int node, int entries,
  862. int batchcount)
  863. {
  864. int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
  865. struct array_cache *nc = NULL;
  866. nc = kmalloc_node(memsize, GFP_KERNEL, node);
  867. if (nc) {
  868. nc->avail = 0;
  869. nc->limit = entries;
  870. nc->batchcount = batchcount;
  871. nc->touched = 0;
  872. spin_lock_init(&nc->lock);
  873. }
  874. return nc;
  875. }
  876. /*
  877. * Transfer objects in one arraycache to another.
  878. * Locking must be handled by the caller.
  879. *
  880. * Return the number of entries transferred.
  881. */
  882. static int transfer_objects(struct array_cache *to,
  883. struct array_cache *from, unsigned int max)
  884. {
  885. /* Figure out how many entries to transfer */
  886. int nr = min(min(from->avail, max), to->limit - to->avail);
  887. if (!nr)
  888. return 0;
  889. memcpy(to->entry + to->avail, from->entry + from->avail -nr,
  890. sizeof(void *) *nr);
  891. from->avail -= nr;
  892. to->avail += nr;
  893. to->touched = 1;
  894. return nr;
  895. }
  896. #ifndef CONFIG_NUMA
  897. #define drain_alien_cache(cachep, alien) do { } while (0)
  898. #define reap_alien(cachep, l3) do { } while (0)
  899. static inline struct array_cache **alloc_alien_cache(int node, int limit)
  900. {
  901. return (struct array_cache **)BAD_ALIEN_MAGIC;
  902. }
  903. static inline void free_alien_cache(struct array_cache **ac_ptr)
  904. {
  905. }
  906. static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
  907. {
  908. return 0;
  909. }
  910. static inline void *alternate_node_alloc(struct kmem_cache *cachep,
  911. gfp_t flags)
  912. {
  913. return NULL;
  914. }
  915. static inline void *____cache_alloc_node(struct kmem_cache *cachep,
  916. gfp_t flags, int nodeid)
  917. {
  918. return NULL;
  919. }
  920. #else /* CONFIG_NUMA */
  921. static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
  922. static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
  923. static struct array_cache **alloc_alien_cache(int node, int limit)
  924. {
  925. struct array_cache **ac_ptr;
  926. int memsize = sizeof(void *) * MAX_NUMNODES;
  927. int i;
  928. if (limit > 1)
  929. limit = 12;
  930. ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
  931. if (ac_ptr) {
  932. for_each_node(i) {
  933. if (i == node || !node_online(i)) {
  934. ac_ptr[i] = NULL;
  935. continue;
  936. }
  937. ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
  938. if (!ac_ptr[i]) {
  939. for (i--; i <= 0; i--)
  940. kfree(ac_ptr[i]);
  941. kfree(ac_ptr);
  942. return NULL;
  943. }
  944. }
  945. }
  946. return ac_ptr;
  947. }
  948. static void free_alien_cache(struct array_cache **ac_ptr)
  949. {
  950. int i;
  951. if (!ac_ptr)
  952. return;
  953. for_each_node(i)
  954. kfree(ac_ptr[i]);
  955. kfree(ac_ptr);
  956. }
  957. static void __drain_alien_cache(struct kmem_cache *cachep,
  958. struct array_cache *ac, int node)
  959. {
  960. struct kmem_list3 *rl3 = cachep->nodelists[node];
  961. if (ac->avail) {
  962. spin_lock(&rl3->list_lock);
  963. /*
  964. * Stuff objects into the remote nodes shared array first.
  965. * That way we could avoid the overhead of putting the objects
  966. * into the free lists and getting them back later.
  967. */
  968. if (rl3->shared)
  969. transfer_objects(rl3->shared, ac, ac->limit);
  970. free_block(cachep, ac->entry, ac->avail, node);
  971. ac->avail = 0;
  972. spin_unlock(&rl3->list_lock);
  973. }
  974. }
  975. /*
  976. * Called from cache_reap() to regularly drain alien caches round robin.
  977. */
  978. static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
  979. {
  980. int node = __get_cpu_var(reap_node);
  981. if (l3->alien) {
  982. struct array_cache *ac = l3->alien[node];
  983. if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
  984. __drain_alien_cache(cachep, ac, node);
  985. spin_unlock_irq(&ac->lock);
  986. }
  987. }
  988. }
  989. static void drain_alien_cache(struct kmem_cache *cachep,
  990. struct array_cache **alien)
  991. {
  992. int i = 0;
  993. struct array_cache *ac;
  994. unsigned long flags;
  995. for_each_online_node(i) {
  996. ac = alien[i];
  997. if (ac) {
  998. spin_lock_irqsave(&ac->lock, flags);
  999. __drain_alien_cache(cachep, ac, i);
  1000. spin_unlock_irqrestore(&ac->lock, flags);
  1001. }
  1002. }
  1003. }
  1004. static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
  1005. {
  1006. struct slab *slabp = virt_to_slab(objp);
  1007. int nodeid = slabp->nodeid;
  1008. struct kmem_list3 *l3;
  1009. struct array_cache *alien = NULL;
  1010. int node;
  1011. node = numa_node_id();
  1012. /*
  1013. * Make sure we are not freeing a object from another node to the array
  1014. * cache on this cpu.
  1015. */
  1016. if (likely(slabp->nodeid == node) || unlikely(!use_alien_caches))
  1017. return 0;
  1018. l3 = cachep->nodelists[node];
  1019. STATS_INC_NODEFREES(cachep);
  1020. if (l3->alien && l3->alien[nodeid]) {
  1021. alien = l3->alien[nodeid];
  1022. spin_lock(&alien->lock);
  1023. if (unlikely(alien->avail == alien->limit)) {
  1024. STATS_INC_ACOVERFLOW(cachep);
  1025. __drain_alien_cache(cachep, alien, nodeid);
  1026. }
  1027. alien->entry[alien->avail++] = objp;
  1028. spin_unlock(&alien->lock);
  1029. } else {
  1030. spin_lock(&(cachep->nodelists[nodeid])->list_lock);
  1031. free_block(cachep, &objp, 1, nodeid);
  1032. spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
  1033. }
  1034. return 1;
  1035. }
  1036. #endif
  1037. static int __cpuinit cpuup_callback(struct notifier_block *nfb,
  1038. unsigned long action, void *hcpu)
  1039. {
  1040. long cpu = (long)hcpu;
  1041. struct kmem_cache *cachep;
  1042. struct kmem_list3 *l3 = NULL;
  1043. int node = cpu_to_node(cpu);
  1044. int memsize = sizeof(struct kmem_list3);
  1045. switch (action) {
  1046. case CPU_UP_PREPARE:
  1047. mutex_lock(&cache_chain_mutex);
  1048. /*
  1049. * We need to do this right in the beginning since
  1050. * alloc_arraycache's are going to use this list.
  1051. * kmalloc_node allows us to add the slab to the right
  1052. * kmem_list3 and not this cpu's kmem_list3
  1053. */
  1054. list_for_each_entry(cachep, &cache_chain, next) {
  1055. /*
  1056. * Set up the size64 kmemlist for cpu before we can
  1057. * begin anything. Make sure some other cpu on this
  1058. * node has not already allocated this
  1059. */
  1060. if (!cachep->nodelists[node]) {
  1061. l3 = kmalloc_node(memsize, GFP_KERNEL, node);
  1062. if (!l3)
  1063. goto bad;
  1064. kmem_list3_init(l3);
  1065. l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
  1066. ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
  1067. /*
  1068. * The l3s don't come and go as CPUs come and
  1069. * go. cache_chain_mutex is sufficient
  1070. * protection here.
  1071. */
  1072. cachep->nodelists[node] = l3;
  1073. }
  1074. spin_lock_irq(&cachep->nodelists[node]->list_lock);
  1075. cachep->nodelists[node]->free_limit =
  1076. (1 + nr_cpus_node(node)) *
  1077. cachep->batchcount + cachep->num;
  1078. spin_unlock_irq(&cachep->nodelists[node]->list_lock);
  1079. }
  1080. /*
  1081. * Now we can go ahead with allocating the shared arrays and
  1082. * array caches
  1083. */
  1084. list_for_each_entry(cachep, &cache_chain, next) {
  1085. struct array_cache *nc;
  1086. struct array_cache *shared;
  1087. struct array_cache **alien = NULL;
  1088. nc = alloc_arraycache(node, cachep->limit,
  1089. cachep->batchcount);
  1090. if (!nc)
  1091. goto bad;
  1092. shared = alloc_arraycache(node,
  1093. cachep->shared * cachep->batchcount,
  1094. 0xbaadf00d);
  1095. if (!shared)
  1096. goto bad;
  1097. if (use_alien_caches) {
  1098. alien = alloc_alien_cache(node, cachep->limit);
  1099. if (!alien)
  1100. goto bad;
  1101. }
  1102. cachep->array[cpu] = nc;
  1103. l3 = cachep->nodelists[node];
  1104. BUG_ON(!l3);
  1105. spin_lock_irq(&l3->list_lock);
  1106. if (!l3->shared) {
  1107. /*
  1108. * We are serialised from CPU_DEAD or
  1109. * CPU_UP_CANCELLED by the cpucontrol lock
  1110. */
  1111. l3->shared = shared;
  1112. shared = NULL;
  1113. }
  1114. #ifdef CONFIG_NUMA
  1115. if (!l3->alien) {
  1116. l3->alien = alien;
  1117. alien = NULL;
  1118. }
  1119. #endif
  1120. spin_unlock_irq(&l3->list_lock);
  1121. kfree(shared);
  1122. free_alien_cache(alien);
  1123. }
  1124. break;
  1125. case CPU_ONLINE:
  1126. mutex_unlock(&cache_chain_mutex);
  1127. start_cpu_timer(cpu);
  1128. break;
  1129. #ifdef CONFIG_HOTPLUG_CPU
  1130. case CPU_DOWN_PREPARE:
  1131. mutex_lock(&cache_chain_mutex);
  1132. break;
  1133. case CPU_DOWN_FAILED:
  1134. mutex_unlock(&cache_chain_mutex);
  1135. break;
  1136. case CPU_DEAD:
  1137. /*
  1138. * Even if all the cpus of a node are down, we don't free the
  1139. * kmem_list3 of any cache. This to avoid a race between
  1140. * cpu_down, and a kmalloc allocation from another cpu for
  1141. * memory from the node of the cpu going down. The list3
  1142. * structure is usually allocated from kmem_cache_create() and
  1143. * gets destroyed at kmem_cache_destroy().
  1144. */
  1145. /* fall thru */
  1146. #endif
  1147. case CPU_UP_CANCELED:
  1148. list_for_each_entry(cachep, &cache_chain, next) {
  1149. struct array_cache *nc;
  1150. struct array_cache *shared;
  1151. struct array_cache **alien;
  1152. cpumask_t mask;
  1153. mask = node_to_cpumask(node);
  1154. /* cpu is dead; no one can alloc from it. */
  1155. nc = cachep->array[cpu];
  1156. cachep->array[cpu] = NULL;
  1157. l3 = cachep->nodelists[node];
  1158. if (!l3)
  1159. goto free_array_cache;
  1160. spin_lock_irq(&l3->list_lock);
  1161. /* Free limit for this kmem_list3 */
  1162. l3->free_limit -= cachep->batchcount;
  1163. if (nc)
  1164. free_block(cachep, nc->entry, nc->avail, node);
  1165. if (!cpus_empty(mask)) {
  1166. spin_unlock_irq(&l3->list_lock);
  1167. goto free_array_cache;
  1168. }
  1169. shared = l3->shared;
  1170. if (shared) {
  1171. free_block(cachep, l3->shared->entry,
  1172. l3->shared->avail, node);
  1173. l3->shared = NULL;
  1174. }
  1175. alien = l3->alien;
  1176. l3->alien = NULL;
  1177. spin_unlock_irq(&l3->list_lock);
  1178. kfree(shared);
  1179. if (alien) {
  1180. drain_alien_cache(cachep, alien);
  1181. free_alien_cache(alien);
  1182. }
  1183. free_array_cache:
  1184. kfree(nc);
  1185. }
  1186. /*
  1187. * In the previous loop, all the objects were freed to
  1188. * the respective cache's slabs, now we can go ahead and
  1189. * shrink each nodelist to its limit.
  1190. */
  1191. list_for_each_entry(cachep, &cache_chain, next) {
  1192. l3 = cachep->nodelists[node];
  1193. if (!l3)
  1194. continue;
  1195. drain_freelist(cachep, l3, l3->free_objects);
  1196. }
  1197. mutex_unlock(&cache_chain_mutex);
  1198. break;
  1199. }
  1200. return NOTIFY_OK;
  1201. bad:
  1202. return NOTIFY_BAD;
  1203. }
  1204. static struct notifier_block __cpuinitdata cpucache_notifier = {
  1205. &cpuup_callback, NULL, 0
  1206. };
  1207. /*
  1208. * swap the static kmem_list3 with kmalloced memory
  1209. */
  1210. static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
  1211. int nodeid)
  1212. {
  1213. struct kmem_list3 *ptr;
  1214. ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
  1215. BUG_ON(!ptr);
  1216. local_irq_disable();
  1217. memcpy(ptr, list, sizeof(struct kmem_list3));
  1218. /*
  1219. * Do not assume that spinlocks can be initialized via memcpy:
  1220. */
  1221. spin_lock_init(&ptr->list_lock);
  1222. MAKE_ALL_LISTS(cachep, ptr, nodeid);
  1223. cachep->nodelists[nodeid] = ptr;
  1224. local_irq_enable();
  1225. }
  1226. /*
  1227. * Initialisation. Called after the page allocator have been initialised and
  1228. * before smp_init().
  1229. */
  1230. void __init kmem_cache_init(void)
  1231. {
  1232. size_t left_over;
  1233. struct cache_sizes *sizes;
  1234. struct cache_names *names;
  1235. int i;
  1236. int order;
  1237. int node;
  1238. for (i = 0; i < NUM_INIT_LISTS; i++) {
  1239. kmem_list3_init(&initkmem_list3[i]);
  1240. if (i < MAX_NUMNODES)
  1241. cache_cache.nodelists[i] = NULL;
  1242. }
  1243. /*
  1244. * Fragmentation resistance on low memory - only use bigger
  1245. * page orders on machines with more than 32MB of memory.
  1246. */
  1247. if (num_physpages > (32 << 20) >> PAGE_SHIFT)
  1248. slab_break_gfp_order = BREAK_GFP_ORDER_HI;
  1249. /* Bootstrap is tricky, because several objects are allocated
  1250. * from caches that do not exist yet:
  1251. * 1) initialize the cache_cache cache: it contains the struct
  1252. * kmem_cache structures of all caches, except cache_cache itself:
  1253. * cache_cache is statically allocated.
  1254. * Initially an __init data area is used for the head array and the
  1255. * kmem_list3 structures, it's replaced with a kmalloc allocated
  1256. * array at the end of the bootstrap.
  1257. * 2) Create the first kmalloc cache.
  1258. * The struct kmem_cache for the new cache is allocated normally.
  1259. * An __init data area is used for the head array.
  1260. * 3) Create the remaining kmalloc caches, with minimally sized
  1261. * head arrays.
  1262. * 4) Replace the __init data head arrays for cache_cache and the first
  1263. * kmalloc cache with kmalloc allocated arrays.
  1264. * 5) Replace the __init data for kmem_list3 for cache_cache and
  1265. * the other cache's with kmalloc allocated memory.
  1266. * 6) Resize the head arrays of the kmalloc caches to their final sizes.
  1267. */
  1268. node = numa_node_id();
  1269. /* 1) create the cache_cache */
  1270. INIT_LIST_HEAD(&cache_chain);
  1271. list_add(&cache_cache.next, &cache_chain);
  1272. cache_cache.colour_off = cache_line_size();
  1273. cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
  1274. cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE];
  1275. cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
  1276. cache_line_size());
  1277. cache_cache.reciprocal_buffer_size =
  1278. reciprocal_value(cache_cache.buffer_size);
  1279. for (order = 0; order < MAX_ORDER; order++) {
  1280. cache_estimate(order, cache_cache.buffer_size,
  1281. cache_line_size(), 0, &left_over, &cache_cache.num);
  1282. if (cache_cache.num)
  1283. break;
  1284. }
  1285. BUG_ON(!cache_cache.num);
  1286. cache_cache.gfporder = order;
  1287. cache_cache.colour = left_over / cache_cache.colour_off;
  1288. cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
  1289. sizeof(struct slab), cache_line_size());
  1290. /* 2+3) create the kmalloc caches */
  1291. sizes = malloc_sizes;
  1292. names = cache_names;
  1293. /*
  1294. * Initialize the caches that provide memory for the array cache and the
  1295. * kmem_list3 structures first. Without this, further allocations will
  1296. * bug.
  1297. */
  1298. sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
  1299. sizes[INDEX_AC].cs_size,
  1300. ARCH_KMALLOC_MINALIGN,
  1301. ARCH_KMALLOC_FLAGS|SLAB_PANIC,
  1302. NULL, NULL);
  1303. if (INDEX_AC != INDEX_L3) {
  1304. sizes[INDEX_L3].cs_cachep =
  1305. kmem_cache_create(names[INDEX_L3].name,
  1306. sizes[INDEX_L3].cs_size,
  1307. ARCH_KMALLOC_MINALIGN,
  1308. ARCH_KMALLOC_FLAGS|SLAB_PANIC,
  1309. NULL, NULL);
  1310. }
  1311. slab_early_init = 0;
  1312. while (sizes->cs_size != ULONG_MAX) {
  1313. /*
  1314. * For performance, all the general caches are L1 aligned.
  1315. * This should be particularly beneficial on SMP boxes, as it
  1316. * eliminates "false sharing".
  1317. * Note for systems short on memory removing the alignment will
  1318. * allow tighter packing of the smaller caches.
  1319. */
  1320. if (!sizes->cs_cachep) {
  1321. sizes->cs_cachep = kmem_cache_create(names->name,
  1322. sizes->cs_size,
  1323. ARCH_KMALLOC_MINALIGN,
  1324. ARCH_KMALLOC_FLAGS|SLAB_PANIC,
  1325. NULL, NULL);
  1326. }
  1327. sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
  1328. sizes->cs_size,
  1329. ARCH_KMALLOC_MINALIGN,
  1330. ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
  1331. SLAB_PANIC,
  1332. NULL, NULL);
  1333. sizes++;
  1334. names++;
  1335. }
  1336. /* 4) Replace the bootstrap head arrays */
  1337. {
  1338. struct array_cache *ptr;
  1339. ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
  1340. local_irq_disable();
  1341. BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
  1342. memcpy(ptr, cpu_cache_get(&cache_cache),
  1343. sizeof(struct arraycache_init));
  1344. /*
  1345. * Do not assume that spinlocks can be initialized via memcpy:
  1346. */
  1347. spin_lock_init(&ptr->lock);
  1348. cache_cache.array[smp_processor_id()] = ptr;
  1349. local_irq_enable();
  1350. ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
  1351. local_irq_disable();
  1352. BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
  1353. != &initarray_generic.cache);
  1354. memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
  1355. sizeof(struct arraycache_init));
  1356. /*
  1357. * Do not assume that spinlocks can be initialized via memcpy:
  1358. */
  1359. spin_lock_init(&ptr->lock);
  1360. malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
  1361. ptr;
  1362. local_irq_enable();
  1363. }
  1364. /* 5) Replace the bootstrap kmem_list3's */
  1365. {
  1366. int nid;
  1367. /* Replace the static kmem_list3 structures for the boot cpu */
  1368. init_list(&cache_cache, &initkmem_list3[CACHE_CACHE], node);
  1369. for_each_online_node(nid) {
  1370. init_list(malloc_sizes[INDEX_AC].cs_cachep,
  1371. &initkmem_list3[SIZE_AC + nid], nid);
  1372. if (INDEX_AC != INDEX_L3) {
  1373. init_list(malloc_sizes[INDEX_L3].cs_cachep,
  1374. &initkmem_list3[SIZE_L3 + nid], nid);
  1375. }
  1376. }
  1377. }
  1378. /* 6) resize the head arrays to their final sizes */
  1379. {
  1380. struct kmem_cache *cachep;
  1381. mutex_lock(&cache_chain_mutex);
  1382. list_for_each_entry(cachep, &cache_chain, next)
  1383. if (enable_cpucache(cachep))
  1384. BUG();
  1385. mutex_unlock(&cache_chain_mutex);
  1386. }
  1387. /* Annotate slab for lockdep -- annotate the malloc caches */
  1388. init_lock_keys();
  1389. /* Done! */
  1390. g_cpucache_up = FULL;
  1391. /*
  1392. * Register a cpu startup notifier callback that initializes
  1393. * cpu_cache_get for all new cpus
  1394. */
  1395. register_cpu_notifier(&cpucache_notifier);
  1396. /*
  1397. * The reap timers are started later, with a module init call: That part
  1398. * of the kernel is not yet operational.
  1399. */
  1400. }
  1401. static int __init cpucache_init(void)
  1402. {
  1403. int cpu;
  1404. /*
  1405. * Register the timers that return unneeded pages to the page allocator
  1406. */
  1407. for_each_online_cpu(cpu)
  1408. start_cpu_timer(cpu);
  1409. return 0;
  1410. }
  1411. __initcall(cpucache_init);
  1412. /*
  1413. * Interface to system's page allocator. No need to hold the cache-lock.
  1414. *
  1415. * If we requested dmaable memory, we will get it. Even if we
  1416. * did not request dmaable memory, we might get it, but that
  1417. * would be relatively rare and ignorable.
  1418. */
  1419. static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
  1420. {
  1421. struct page *page;
  1422. int nr_pages;
  1423. int i;
  1424. #ifndef CONFIG_MMU
  1425. /*
  1426. * Nommu uses slab's for process anonymous memory allocations, and thus
  1427. * requires __GFP_COMP to properly refcount higher order allocations
  1428. */
  1429. flags |= __GFP_COMP;
  1430. #endif
  1431. flags |= cachep->gfpflags;
  1432. page = alloc_pages_node(nodeid, flags, cachep->gfporder);
  1433. if (!page)
  1434. return NULL;
  1435. nr_pages = (1 << cachep->gfporder);
  1436. if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
  1437. add_zone_page_state(page_zone(page),
  1438. NR_SLAB_RECLAIMABLE, nr_pages);
  1439. else
  1440. add_zone_page_state(page_zone(page),
  1441. NR_SLAB_UNRECLAIMABLE, nr_pages);
  1442. for (i = 0; i < nr_pages; i++)
  1443. __SetPageSlab(page + i);
  1444. return page_address(page);
  1445. }
  1446. /*
  1447. * Interface to system's page release.
  1448. */
  1449. static void kmem_freepages(struct kmem_cache *cachep, void *addr)
  1450. {
  1451. unsigned long i = (1 << cachep->gfporder);
  1452. struct page *page = virt_to_page(addr);
  1453. const unsigned long nr_freed = i;
  1454. if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
  1455. sub_zone_page_state(page_zone(page),
  1456. NR_SLAB_RECLAIMABLE, nr_freed);
  1457. else
  1458. sub_zone_page_state(page_zone(page),
  1459. NR_SLAB_UNRECLAIMABLE, nr_freed);
  1460. while (i--) {
  1461. BUG_ON(!PageSlab(page));
  1462. __ClearPageSlab(page);
  1463. page++;
  1464. }
  1465. if (current->reclaim_state)
  1466. current->reclaim_state->reclaimed_slab += nr_freed;
  1467. free_pages((unsigned long)addr, cachep->gfporder);
  1468. }
  1469. static void kmem_rcu_free(struct rcu_head *head)
  1470. {
  1471. struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
  1472. struct kmem_cache *cachep = slab_rcu->cachep;
  1473. kmem_freepages(cachep, slab_rcu->addr);
  1474. if (OFF_SLAB(cachep))
  1475. kmem_cache_free(cachep->slabp_cache, slab_rcu);
  1476. }
  1477. #if DEBUG
  1478. #ifdef CONFIG_DEBUG_PAGEALLOC
  1479. static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
  1480. unsigned long caller)
  1481. {
  1482. int size = obj_size(cachep);
  1483. addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
  1484. if (size < 5 * sizeof(unsigned long))
  1485. return;
  1486. *addr++ = 0x12345678;
  1487. *addr++ = caller;
  1488. *addr++ = smp_processor_id();
  1489. size -= 3 * sizeof(unsigned long);
  1490. {
  1491. unsigned long *sptr = &caller;
  1492. unsigned long svalue;
  1493. while (!kstack_end(sptr)) {
  1494. svalue = *sptr++;
  1495. if (kernel_text_address(svalue)) {
  1496. *addr++ = svalue;
  1497. size -= sizeof(unsigned long);
  1498. if (size <= sizeof(unsigned long))
  1499. break;
  1500. }
  1501. }
  1502. }
  1503. *addr++ = 0x87654321;
  1504. }
  1505. #endif
  1506. static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
  1507. {
  1508. int size = obj_size(cachep);
  1509. addr = &((char *)addr)[obj_offset(cachep)];
  1510. memset(addr, val, size);
  1511. *(unsigned char *)(addr + size - 1) = POISON_END;
  1512. }
  1513. static void dump_line(char *data, int offset, int limit)
  1514. {
  1515. int i;
  1516. unsigned char error = 0;
  1517. int bad_count = 0;
  1518. printk(KERN_ERR "%03x:", offset);
  1519. for (i = 0; i < limit; i++) {
  1520. if (data[offset + i] != POISON_FREE) {
  1521. error = data[offset + i];
  1522. bad_count++;
  1523. }
  1524. printk(" %02x", (unsigned char)data[offset + i]);
  1525. }
  1526. printk("\n");
  1527. if (bad_count == 1) {
  1528. error ^= POISON_FREE;
  1529. if (!(error & (error - 1))) {
  1530. printk(KERN_ERR "Single bit error detected. Probably "
  1531. "bad RAM.\n");
  1532. #ifdef CONFIG_X86
  1533. printk(KERN_ERR "Run memtest86+ or a similar memory "
  1534. "test tool.\n");
  1535. #else
  1536. printk(KERN_ERR "Run a memory test tool.\n");
  1537. #endif
  1538. }
  1539. }
  1540. }
  1541. #endif
  1542. #if DEBUG
  1543. static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
  1544. {
  1545. int i, size;
  1546. char *realobj;
  1547. if (cachep->flags & SLAB_RED_ZONE) {
  1548. printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
  1549. *dbg_redzone1(cachep, objp),
  1550. *dbg_redzone2(cachep, objp));
  1551. }
  1552. if (cachep->flags & SLAB_STORE_USER) {
  1553. printk(KERN_ERR "Last user: [<%p>]",
  1554. *dbg_userword(cachep, objp));
  1555. print_symbol("(%s)",
  1556. (unsigned long)*dbg_userword(cachep, objp));
  1557. printk("\n");
  1558. }
  1559. realobj = (char *)objp + obj_offset(cachep);
  1560. size = obj_size(cachep);
  1561. for (i = 0; i < size && lines; i += 16, lines--) {
  1562. int limit;
  1563. limit = 16;
  1564. if (i + limit > size)
  1565. limit = size - i;
  1566. dump_line(realobj, i, limit);
  1567. }
  1568. }
  1569. static void check_poison_obj(struct kmem_cache *cachep, void *objp)
  1570. {
  1571. char *realobj;
  1572. int size, i;
  1573. int lines = 0;
  1574. realobj = (char *)objp + obj_offset(cachep);
  1575. size = obj_size(cachep);
  1576. for (i = 0; i < size; i++) {
  1577. char exp = POISON_FREE;
  1578. if (i == size - 1)
  1579. exp = POISON_END;
  1580. if (realobj[i] != exp) {
  1581. int limit;
  1582. /* Mismatch ! */
  1583. /* Print header */
  1584. if (lines == 0) {
  1585. printk(KERN_ERR
  1586. "Slab corruption: start=%p, len=%d\n",
  1587. realobj, size);
  1588. print_objinfo(cachep, objp, 0);
  1589. }
  1590. /* Hexdump the affected line */
  1591. i = (i / 16) * 16;
  1592. limit = 16;
  1593. if (i + limit > size)
  1594. limit = size - i;
  1595. dump_line(realobj, i, limit);
  1596. i += 16;
  1597. lines++;
  1598. /* Limit to 5 lines */
  1599. if (lines > 5)
  1600. break;
  1601. }
  1602. }
  1603. if (lines != 0) {
  1604. /* Print some data about the neighboring objects, if they
  1605. * exist:
  1606. */
  1607. struct slab *slabp = virt_to_slab(objp);
  1608. unsigned int objnr;
  1609. objnr = obj_to_index(cachep, slabp, objp);
  1610. if (objnr) {
  1611. objp = index_to_obj(cachep, slabp, objnr - 1);
  1612. realobj = (char *)objp + obj_offset(cachep);
  1613. printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
  1614. realobj, size);
  1615. print_objinfo(cachep, objp, 2);
  1616. }
  1617. if (objnr + 1 < cachep->num) {
  1618. objp = index_to_obj(cachep, slabp, objnr + 1);
  1619. realobj = (char *)objp + obj_offset(cachep);
  1620. printk(KERN_ERR "Next obj: start=%p, len=%d\n",
  1621. realobj, size);
  1622. print_objinfo(cachep, objp, 2);
  1623. }
  1624. }
  1625. }
  1626. #endif
  1627. #if DEBUG
  1628. /**
  1629. * slab_destroy_objs - destroy a slab and its objects
  1630. * @cachep: cache pointer being destroyed
  1631. * @slabp: slab pointer being destroyed
  1632. *
  1633. * Call the registered destructor for each object in a slab that is being
  1634. * destroyed.
  1635. */
  1636. static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
  1637. {
  1638. int i;
  1639. for (i = 0; i < cachep->num; i++) {
  1640. void *objp = index_to_obj(cachep, slabp, i);
  1641. if (cachep->flags & SLAB_POISON) {
  1642. #ifdef CONFIG_DEBUG_PAGEALLOC
  1643. if (cachep->buffer_size % PAGE_SIZE == 0 &&
  1644. OFF_SLAB(cachep))
  1645. kernel_map_pages(virt_to_page(objp),
  1646. cachep->buffer_size / PAGE_SIZE, 1);
  1647. else
  1648. check_poison_obj(cachep, objp);
  1649. #else
  1650. check_poison_obj(cachep, objp);
  1651. #endif
  1652. }
  1653. if (cachep->flags & SLAB_RED_ZONE) {
  1654. if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
  1655. slab_error(cachep, "start of a freed object "
  1656. "was overwritten");
  1657. if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
  1658. slab_error(cachep, "end of a freed object "
  1659. "was overwritten");
  1660. }
  1661. if (cachep->dtor && !(cachep->flags & SLAB_POISON))
  1662. (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
  1663. }
  1664. }
  1665. #else
  1666. static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
  1667. {
  1668. if (cachep->dtor) {
  1669. int i;
  1670. for (i = 0; i < cachep->num; i++) {
  1671. void *objp = index_to_obj(cachep, slabp, i);
  1672. (cachep->dtor) (objp, cachep, 0);
  1673. }
  1674. }
  1675. }
  1676. #endif
  1677. /**
  1678. * slab_destroy - destroy and release all objects in a slab
  1679. * @cachep: cache pointer being destroyed
  1680. * @slabp: slab pointer being destroyed
  1681. *
  1682. * Destroy all the objs in a slab, and release the mem back to the system.
  1683. * Before calling the slab must have been unlinked from the cache. The
  1684. * cache-lock is not held/needed.
  1685. */
  1686. static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
  1687. {
  1688. void *addr = slabp->s_mem - slabp->colouroff;
  1689. slab_destroy_objs(cachep, slabp);
  1690. if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
  1691. struct slab_rcu *slab_rcu;
  1692. slab_rcu = (struct slab_rcu *)slabp;
  1693. slab_rcu->cachep = cachep;
  1694. slab_rcu->addr = addr;
  1695. call_rcu(&slab_rcu->head, kmem_rcu_free);
  1696. } else {
  1697. kmem_freepages(cachep, addr);
  1698. if (OFF_SLAB(cachep))
  1699. kmem_cache_free(cachep->slabp_cache, slabp);
  1700. }
  1701. }
  1702. /*
  1703. * For setting up all the kmem_list3s for cache whose buffer_size is same as
  1704. * size of kmem_list3.
  1705. */
  1706. static void set_up_list3s(struct kmem_cache *cachep, int index)
  1707. {
  1708. int node;
  1709. for_each_online_node(node) {
  1710. cachep->nodelists[node] = &initkmem_list3[index + node];
  1711. cachep->nodelists[node]->next_reap = jiffies +
  1712. REAPTIMEOUT_LIST3 +
  1713. ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
  1714. }
  1715. }
  1716. static void __kmem_cache_destroy(struct kmem_cache *cachep)
  1717. {
  1718. int i;
  1719. struct kmem_list3 *l3;
  1720. for_each_online_cpu(i)
  1721. kfree(cachep->array[i]);
  1722. /* NUMA: free the list3 structures */
  1723. for_each_online_node(i) {
  1724. l3 = cachep->nodelists[i];
  1725. if (l3) {
  1726. kfree(l3->shared);
  1727. free_alien_cache(l3->alien);
  1728. kfree(l3);
  1729. }
  1730. }
  1731. kmem_cache_free(&cache_cache, cachep);
  1732. }
  1733. /**
  1734. * calculate_slab_order - calculate size (page order) of slabs
  1735. * @cachep: pointer to the cache that is being created
  1736. * @size: size of objects to be created in this cache.
  1737. * @align: required alignment for the objects.
  1738. * @flags: slab allocation flags
  1739. *
  1740. * Also calculates the number of objects per slab.
  1741. *
  1742. * This could be made much more intelligent. For now, try to avoid using
  1743. * high order pages for slabs. When the gfp() functions are more friendly
  1744. * towards high-order requests, this should be changed.
  1745. */
  1746. static size_t calculate_slab_order(struct kmem_cache *cachep,
  1747. size_t size, size_t align, unsigned long flags)
  1748. {
  1749. unsigned long offslab_limit;
  1750. size_t left_over = 0;
  1751. int gfporder;
  1752. for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
  1753. unsigned int num;
  1754. size_t remainder;
  1755. cache_estimate(gfporder, size, align, flags, &remainder, &num);
  1756. if (!num)
  1757. continue;
  1758. if (flags & CFLGS_OFF_SLAB) {
  1759. /*
  1760. * Max number of objs-per-slab for caches which
  1761. * use off-slab slabs. Needed to avoid a possible
  1762. * looping condition in cache_grow().
  1763. */
  1764. offslab_limit = size - sizeof(struct slab);
  1765. offslab_limit /= sizeof(kmem_bufctl_t);
  1766. if (num > offslab_limit)
  1767. break;
  1768. }
  1769. /* Found something acceptable - save it away */
  1770. cachep->num = num;
  1771. cachep->gfporder = gfporder;
  1772. left_over = remainder;
  1773. /*
  1774. * A VFS-reclaimable slab tends to have most allocations
  1775. * as GFP_NOFS and we really don't want to have to be allocating
  1776. * higher-order pages when we are unable to shrink dcache.
  1777. */
  1778. if (flags & SLAB_RECLAIM_ACCOUNT)
  1779. break;
  1780. /*
  1781. * Large number of objects is good, but very large slabs are
  1782. * currently bad for the gfp()s.
  1783. */
  1784. if (gfporder >= slab_break_gfp_order)
  1785. break;
  1786. /*
  1787. * Acceptable internal fragmentation?
  1788. */
  1789. if (left_over * 8 <= (PAGE_SIZE << gfporder))
  1790. break;
  1791. }
  1792. return left_over;
  1793. }
  1794. static int setup_cpu_cache(struct kmem_cache *cachep)
  1795. {
  1796. if (g_cpucache_up == FULL)
  1797. return enable_cpucache(cachep);
  1798. if (g_cpucache_up == NONE) {
  1799. /*
  1800. * Note: the first kmem_cache_create must create the cache
  1801. * that's used by kmalloc(24), otherwise the creation of
  1802. * further caches will BUG().
  1803. */
  1804. cachep->array[smp_processor_id()] = &initarray_generic.cache;
  1805. /*
  1806. * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
  1807. * the first cache, then we need to set up all its list3s,
  1808. * otherwise the creation of further caches will BUG().
  1809. */
  1810. set_up_list3s(cachep, SIZE_AC);
  1811. if (INDEX_AC == INDEX_L3)
  1812. g_cpucache_up = PARTIAL_L3;
  1813. else
  1814. g_cpucache_up = PARTIAL_AC;
  1815. } else {
  1816. cachep->array[smp_processor_id()] =
  1817. kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
  1818. if (g_cpucache_up == PARTIAL_AC) {
  1819. set_up_list3s(cachep, SIZE_L3);
  1820. g_cpucache_up = PARTIAL_L3;
  1821. } else {
  1822. int node;
  1823. for_each_online_node(node) {
  1824. cachep->nodelists[node] =
  1825. kmalloc_node(sizeof(struct kmem_list3),
  1826. GFP_KERNEL, node);
  1827. BUG_ON(!cachep->nodelists[node]);
  1828. kmem_list3_init(cachep->nodelists[node]);
  1829. }
  1830. }
  1831. }
  1832. cachep->nodelists[numa_node_id()]->next_reap =
  1833. jiffies + REAPTIMEOUT_LIST3 +
  1834. ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
  1835. cpu_cache_get(cachep)->avail = 0;
  1836. cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
  1837. cpu_cache_get(cachep)->batchcount = 1;
  1838. cpu_cache_get(cachep)->touched = 0;
  1839. cachep->batchcount = 1;
  1840. cachep->limit = BOOT_CPUCACHE_ENTRIES;
  1841. return 0;
  1842. }
  1843. /**
  1844. * kmem_cache_create - Create a cache.
  1845. * @name: A string which is used in /proc/slabinfo to identify this cache.
  1846. * @size: The size of objects to be created in this cache.
  1847. * @align: The required alignment for the objects.
  1848. * @flags: SLAB flags
  1849. * @ctor: A constructor for the objects.
  1850. * @dtor: A destructor for the objects.
  1851. *
  1852. * Returns a ptr to the cache on success, NULL on failure.
  1853. * Cannot be called within a int, but can be interrupted.
  1854. * The @ctor is run when new pages are allocated by the cache
  1855. * and the @dtor is run before the pages are handed back.
  1856. *
  1857. * @name must be valid until the cache is destroyed. This implies that
  1858. * the module calling this has to destroy the cache before getting unloaded.
  1859. *
  1860. * The flags are
  1861. *
  1862. * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
  1863. * to catch references to uninitialised memory.
  1864. *
  1865. * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
  1866. * for buffer overruns.
  1867. *
  1868. * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
  1869. * cacheline. This can be beneficial if you're counting cycles as closely
  1870. * as davem.
  1871. */
  1872. struct kmem_cache *
  1873. kmem_cache_create (const char *name, size_t size, size_t align,
  1874. unsigned long flags,
  1875. void (*ctor)(void*, struct kmem_cache *, unsigned long),
  1876. void (*dtor)(void*, struct kmem_cache *, unsigned long))
  1877. {
  1878. size_t left_over, slab_size, ralign;
  1879. struct kmem_cache *cachep = NULL, *pc;
  1880. /*
  1881. * Sanity checks... these are all serious usage bugs.
  1882. */
  1883. if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
  1884. (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
  1885. printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
  1886. name);
  1887. BUG();
  1888. }
  1889. /*
  1890. * We use cache_chain_mutex to ensure a consistent view of
  1891. * cpu_online_map as well. Please see cpuup_callback
  1892. */
  1893. mutex_lock(&cache_chain_mutex);
  1894. list_for_each_entry(pc, &cache_chain, next) {
  1895. char tmp;
  1896. int res;
  1897. /*
  1898. * This happens when the module gets unloaded and doesn't
  1899. * destroy its slab cache and no-one else reuses the vmalloc
  1900. * area of the module. Print a warning.
  1901. */
  1902. res = probe_kernel_address(pc->name, tmp);
  1903. if (res) {
  1904. printk("SLAB: cache with size %d has lost its name\n",
  1905. pc->buffer_size);
  1906. continue;
  1907. }
  1908. if (!strcmp(pc->name, name)) {
  1909. printk("kmem_cache_create: duplicate cache %s\n", name);
  1910. dump_stack();
  1911. goto oops;
  1912. }
  1913. }
  1914. #if DEBUG
  1915. WARN_ON(strchr(name, ' ')); /* It confuses parsers */
  1916. if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
  1917. /* No constructor, but inital state check requested */
  1918. printk(KERN_ERR "%s: No con, but init state check "
  1919. "requested - %s\n", __FUNCTION__, name);
  1920. flags &= ~SLAB_DEBUG_INITIAL;
  1921. }
  1922. #if FORCED_DEBUG
  1923. /*
  1924. * Enable redzoning and last user accounting, except for caches with
  1925. * large objects, if the increased size would increase the object size
  1926. * above the next power of two: caches with object sizes just above a
  1927. * power of two have a significant amount of internal fragmentation.
  1928. */
  1929. if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
  1930. flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
  1931. if (!(flags & SLAB_DESTROY_BY_RCU))
  1932. flags |= SLAB_POISON;
  1933. #endif
  1934. if (flags & SLAB_DESTROY_BY_RCU)
  1935. BUG_ON(flags & SLAB_POISON);
  1936. #endif
  1937. if (flags & SLAB_DESTROY_BY_RCU)
  1938. BUG_ON(dtor);
  1939. /*
  1940. * Always checks flags, a caller might be expecting debug support which
  1941. * isn't available.
  1942. */
  1943. BUG_ON(flags & ~CREATE_MASK);
  1944. /*
  1945. * Check that size is in terms of words. This is needed to avoid
  1946. * unaligned accesses for some archs when redzoning is used, and makes
  1947. * sure any on-slab bufctl's are also correctly aligned.
  1948. */
  1949. if (size & (BYTES_PER_WORD - 1)) {
  1950. size += (BYTES_PER_WORD - 1);
  1951. size &= ~(BYTES_PER_WORD - 1);
  1952. }
  1953. /* calculate the final buffer alignment: */
  1954. /* 1) arch recommendation: can be overridden for debug */
  1955. if (flags & SLAB_HWCACHE_ALIGN) {
  1956. /*
  1957. * Default alignment: as specified by the arch code. Except if
  1958. * an object is really small, then squeeze multiple objects into
  1959. * one cacheline.
  1960. */
  1961. ralign = cache_line_size();
  1962. while (size <= ralign / 2)
  1963. ralign /= 2;
  1964. } else {
  1965. ralign = BYTES_PER_WORD;
  1966. }
  1967. /*
  1968. * Redzoning and user store require word alignment. Note this will be
  1969. * overridden by architecture or caller mandated alignment if either
  1970. * is greater than BYTES_PER_WORD.
  1971. */
  1972. if (flags & SLAB_RED_ZONE || flags & SLAB_STORE_USER)
  1973. ralign = BYTES_PER_WORD;
  1974. /* 2) arch mandated alignment */
  1975. if (ralign < ARCH_SLAB_MINALIGN) {
  1976. ralign = ARCH_SLAB_MINALIGN;
  1977. }
  1978. /* 3) caller mandated alignment */
  1979. if (ralign < align) {
  1980. ralign = align;
  1981. }
  1982. /* disable debug if necessary */
  1983. if (ralign > BYTES_PER_WORD)
  1984. flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
  1985. /*
  1986. * 4) Store it.
  1987. */
  1988. align = ralign;
  1989. /* Get cache's description obj. */
  1990. cachep = kmem_cache_zalloc(&cache_cache, GFP_KERNEL);
  1991. if (!cachep)
  1992. goto oops;
  1993. #if DEBUG
  1994. cachep->obj_size = size;
  1995. /*
  1996. * Both debugging options require word-alignment which is calculated
  1997. * into align above.
  1998. */
  1999. if (flags & SLAB_RED_ZONE) {
  2000. /* add space for red zone words */
  2001. cachep->obj_offset += BYTES_PER_WORD;
  2002. size += 2 * BYTES_PER_WORD;
  2003. }
  2004. if (flags & SLAB_STORE_USER) {
  2005. /* user store requires one word storage behind the end of
  2006. * the real object.
  2007. */
  2008. size += BYTES_PER_WORD;
  2009. }
  2010. #if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
  2011. if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
  2012. && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
  2013. cachep->obj_offset += PAGE_SIZE - size;
  2014. size = PAGE_SIZE;
  2015. }
  2016. #endif
  2017. #endif
  2018. /*
  2019. * Determine if the slab management is 'on' or 'off' slab.
  2020. * (bootstrapping cannot cope with offslab caches so don't do
  2021. * it too early on.)
  2022. */
  2023. if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
  2024. /*
  2025. * Size is large, assume best to place the slab management obj
  2026. * off-slab (should allow better packing of objs).
  2027. */
  2028. flags |= CFLGS_OFF_SLAB;
  2029. size = ALIGN(size, align);
  2030. left_over = calculate_slab_order(cachep, size, align, flags);
  2031. if (!cachep->num) {
  2032. printk("kmem_cache_create: couldn't create cache %s.\n", name);
  2033. kmem_cache_free(&cache_cache, cachep);
  2034. cachep = NULL;
  2035. goto oops;
  2036. }
  2037. slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
  2038. + sizeof(struct slab), align);
  2039. /*
  2040. * If the slab has been placed off-slab, and we have enough space then
  2041. * move it on-slab. This is at the expense of any extra colouring.
  2042. */
  2043. if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
  2044. flags &= ~CFLGS_OFF_SLAB;
  2045. left_over -= slab_size;
  2046. }
  2047. if (flags & CFLGS_OFF_SLAB) {
  2048. /* really off slab. No need for manual alignment */
  2049. slab_size =
  2050. cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
  2051. }
  2052. cachep->colour_off = cache_line_size();
  2053. /* Offset must be a multiple of the alignment. */
  2054. if (cachep->colour_off < align)
  2055. cachep->colour_off = align;
  2056. cachep->colour = left_over / cachep->colour_off;
  2057. cachep->slab_size = slab_size;
  2058. cachep->flags = flags;
  2059. cachep->gfpflags = 0;
  2060. if (flags & SLAB_CACHE_DMA)
  2061. cachep->gfpflags |= GFP_DMA;
  2062. cachep->buffer_size = size;
  2063. cachep->reciprocal_buffer_size = reciprocal_value(size);
  2064. if (flags & CFLGS_OFF_SLAB) {
  2065. cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
  2066. /*
  2067. * This is a possibility for one of the malloc_sizes caches.
  2068. * But since we go off slab only for object size greater than
  2069. * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
  2070. * this should not happen at all.
  2071. * But leave a BUG_ON for some lucky dude.
  2072. */
  2073. BUG_ON(!cachep->slabp_cache);
  2074. }
  2075. cachep->ctor = ctor;
  2076. cachep->dtor = dtor;
  2077. cachep->name = name;
  2078. if (setup_cpu_cache(cachep)) {
  2079. __kmem_cache_destroy(cachep);
  2080. cachep = NULL;
  2081. goto oops;
  2082. }
  2083. /* cache setup completed, link it into the list */
  2084. list_add(&cachep->next, &cache_chain);
  2085. oops:
  2086. if (!cachep && (flags & SLAB_PANIC))
  2087. panic("kmem_cache_create(): failed to create slab `%s'\n",
  2088. name);
  2089. mutex_unlock(&cache_chain_mutex);
  2090. return cachep;
  2091. }
  2092. EXPORT_SYMBOL(kmem_cache_create);
  2093. #if DEBUG
  2094. static void check_irq_off(void)
  2095. {
  2096. BUG_ON(!irqs_disabled());
  2097. }
  2098. static void check_irq_on(void)
  2099. {
  2100. BUG_ON(irqs_disabled());
  2101. }
  2102. static void check_spinlock_acquired(struct kmem_cache *cachep)
  2103. {
  2104. #ifdef CONFIG_SMP
  2105. check_irq_off();
  2106. assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
  2107. #endif
  2108. }
  2109. static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
  2110. {
  2111. #ifdef CONFIG_SMP
  2112. check_irq_off();
  2113. assert_spin_locked(&cachep->nodelists[node]->list_lock);
  2114. #endif
  2115. }
  2116. #else
  2117. #define check_irq_off() do { } while(0)
  2118. #define check_irq_on() do { } while(0)
  2119. #define check_spinlock_acquired(x) do { } while(0)
  2120. #define check_spinlock_acquired_node(x, y) do { } while(0)
  2121. #endif
  2122. static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
  2123. struct array_cache *ac,
  2124. int force, int node);
  2125. static void do_drain(void *arg)
  2126. {
  2127. struct kmem_cache *cachep = arg;
  2128. struct array_cache *ac;
  2129. int node = numa_node_id();
  2130. check_irq_off();
  2131. ac = cpu_cache_get(cachep);
  2132. spin_lock(&cachep->nodelists[node]->list_lock);
  2133. free_block(cachep, ac->entry, ac->avail, node);
  2134. spin_unlock(&cachep->nodelists[node]->list_lock);
  2135. ac->avail = 0;
  2136. }
  2137. static void drain_cpu_caches(struct kmem_cache *cachep)
  2138. {
  2139. struct kmem_list3 *l3;
  2140. int node;
  2141. on_each_cpu(do_drain, cachep, 1, 1);
  2142. check_irq_on();
  2143. for_each_online_node(node) {
  2144. l3 = cachep->nodelists[node];
  2145. if (l3 && l3->alien)
  2146. drain_alien_cache(cachep, l3->alien);
  2147. }
  2148. for_each_online_node(node) {
  2149. l3 = cachep->nodelists[node];
  2150. if (l3)
  2151. drain_array(cachep, l3, l3->shared, 1, node);
  2152. }
  2153. }
  2154. /*
  2155. * Remove slabs from the list of free slabs.
  2156. * Specify the number of slabs to drain in tofree.
  2157. *
  2158. * Returns the actual number of slabs released.
  2159. */
  2160. static int drain_freelist(struct kmem_cache *cache,
  2161. struct kmem_list3 *l3, int tofree)
  2162. {
  2163. struct list_head *p;
  2164. int nr_freed;
  2165. struct slab *slabp;
  2166. nr_freed = 0;
  2167. while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
  2168. spin_lock_irq(&l3->list_lock);
  2169. p = l3->slabs_free.prev;
  2170. if (p == &l3->slabs_free) {
  2171. spin_unlock_irq(&l3->list_lock);
  2172. goto out;
  2173. }
  2174. slabp = list_entry(p, struct slab, list);
  2175. #if DEBUG
  2176. BUG_ON(slabp->inuse);
  2177. #endif
  2178. list_del(&slabp->list);
  2179. /*
  2180. * Safe to drop the lock. The slab is no longer linked
  2181. * to the cache.
  2182. */
  2183. l3->free_objects -= cache->num;
  2184. spin_unlock_irq(&l3->list_lock);
  2185. slab_destroy(cache, slabp);
  2186. nr_freed++;
  2187. }
  2188. out:
  2189. return nr_freed;
  2190. }
  2191. /* Called with cache_chain_mutex held to protect against cpu hotplug */
  2192. static int __cache_shrink(struct kmem_cache *cachep)
  2193. {
  2194. int ret = 0, i = 0;
  2195. struct kmem_list3 *l3;
  2196. drain_cpu_caches(cachep);
  2197. check_irq_on();
  2198. for_each_online_node(i) {
  2199. l3 = cachep->nodelists[i];
  2200. if (!l3)
  2201. continue;
  2202. drain_freelist(cachep, l3, l3->free_objects);
  2203. ret += !list_empty(&l3->slabs_full) ||
  2204. !list_empty(&l3->slabs_partial);
  2205. }
  2206. return (ret ? 1 : 0);
  2207. }
  2208. /**
  2209. * kmem_cache_shrink - Shrink a cache.
  2210. * @cachep: The cache to shrink.
  2211. *
  2212. * Releases as many slabs as possible for a cache.
  2213. * To help debugging, a zero exit status indicates all slabs were released.
  2214. */
  2215. int kmem_cache_shrink(struct kmem_cache *cachep)
  2216. {
  2217. int ret;
  2218. BUG_ON(!cachep || in_interrupt());
  2219. mutex_lock(&cache_chain_mutex);
  2220. ret = __cache_shrink(cachep);
  2221. mutex_unlock(&cache_chain_mutex);
  2222. return ret;
  2223. }
  2224. EXPORT_SYMBOL(kmem_cache_shrink);
  2225. /**
  2226. * kmem_cache_destroy - delete a cache
  2227. * @cachep: the cache to destroy
  2228. *
  2229. * Remove a struct kmem_cache object from the slab cache.
  2230. *
  2231. * It is expected this function will be called by a module when it is
  2232. * unloaded. This will remove the cache completely, and avoid a duplicate
  2233. * cache being allocated each time a module is loaded and unloaded, if the
  2234. * module doesn't have persistent in-kernel storage across loads and unloads.
  2235. *
  2236. * The cache must be empty before calling this function.
  2237. *
  2238. * The caller must guarantee that noone will allocate memory from the cache
  2239. * during the kmem_cache_destroy().
  2240. */
  2241. void kmem_cache_destroy(struct kmem_cache *cachep)
  2242. {
  2243. BUG_ON(!cachep || in_interrupt());
  2244. /* Find the cache in the chain of caches. */
  2245. mutex_lock(&cache_chain_mutex);
  2246. /*
  2247. * the chain is never empty, cache_cache is never destroyed
  2248. */
  2249. list_del(&cachep->next);
  2250. if (__cache_shrink(cachep)) {
  2251. slab_error(cachep, "Can't free all objects");
  2252. list_add(&cachep->next, &cache_chain);
  2253. mutex_unlock(&cache_chain_mutex);
  2254. return;
  2255. }
  2256. if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
  2257. synchronize_rcu();
  2258. __kmem_cache_destroy(cachep);
  2259. mutex_unlock(&cache_chain_mutex);
  2260. }
  2261. EXPORT_SYMBOL(kmem_cache_destroy);
  2262. /*
  2263. * Get the memory for a slab management obj.
  2264. * For a slab cache when the slab descriptor is off-slab, slab descriptors
  2265. * always come from malloc_sizes caches. The slab descriptor cannot
  2266. * come from the same cache which is getting created because,
  2267. * when we are searching for an appropriate cache for these
  2268. * descriptors in kmem_cache_create, we search through the malloc_sizes array.
  2269. * If we are creating a malloc_sizes cache here it would not be visible to
  2270. * kmem_find_general_cachep till the initialization is complete.
  2271. * Hence we cannot have slabp_cache same as the original cache.
  2272. */
  2273. static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
  2274. int colour_off, gfp_t local_flags,
  2275. int nodeid)
  2276. {
  2277. struct slab *slabp;
  2278. if (OFF_SLAB(cachep)) {
  2279. /* Slab management obj is off-slab. */
  2280. slabp = kmem_cache_alloc_node(cachep->slabp_cache,
  2281. local_flags & ~GFP_THISNODE, nodeid);
  2282. if (!slabp)
  2283. return NULL;
  2284. } else {
  2285. slabp = objp + colour_off;
  2286. colour_off += cachep->slab_size;
  2287. }
  2288. slabp->inuse = 0;
  2289. slabp->colouroff = colour_off;
  2290. slabp->s_mem = objp + colour_off;
  2291. slabp->nodeid = nodeid;
  2292. return slabp;
  2293. }
  2294. static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
  2295. {
  2296. return (kmem_bufctl_t *) (slabp + 1);
  2297. }
  2298. static void cache_init_objs(struct kmem_cache *cachep,
  2299. struct slab *slabp, unsigned long ctor_flags)
  2300. {
  2301. int i;
  2302. for (i = 0; i < cachep->num; i++) {
  2303. void *objp = index_to_obj(cachep, slabp, i);
  2304. #if DEBUG
  2305. /* need to poison the objs? */
  2306. if (cachep->flags & SLAB_POISON)
  2307. poison_obj(cachep, objp, POISON_FREE);
  2308. if (cachep->flags & SLAB_STORE_USER)
  2309. *dbg_userword(cachep, objp) = NULL;
  2310. if (cachep->flags & SLAB_RED_ZONE) {
  2311. *dbg_redzone1(cachep, objp) = RED_INACTIVE;
  2312. *dbg_redzone2(cachep, objp) = RED_INACTIVE;
  2313. }
  2314. /*
  2315. * Constructors are not allowed to allocate memory from the same
  2316. * cache which they are a constructor for. Otherwise, deadlock.
  2317. * They must also be threaded.
  2318. */
  2319. if (cachep->ctor && !(cachep->flags & SLAB_POISON))
  2320. cachep->ctor(objp + obj_offset(cachep), cachep,
  2321. ctor_flags);
  2322. if (cachep->flags & SLAB_RED_ZONE) {
  2323. if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
  2324. slab_error(cachep, "constructor overwrote the"
  2325. " end of an object");
  2326. if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
  2327. slab_error(cachep, "constructor overwrote the"
  2328. " start of an object");
  2329. }
  2330. if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
  2331. OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
  2332. kernel_map_pages(virt_to_page(objp),
  2333. cachep->buffer_size / PAGE_SIZE, 0);
  2334. #else
  2335. if (cachep->ctor)
  2336. cachep->ctor(objp, cachep, ctor_flags);
  2337. #endif
  2338. slab_bufctl(slabp)[i] = i + 1;
  2339. }
  2340. slab_bufctl(slabp)[i - 1] = BUFCTL_END;
  2341. slabp->free = 0;
  2342. }
  2343. static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
  2344. {
  2345. if (flags & GFP_DMA)
  2346. BUG_ON(!(cachep->gfpflags & GFP_DMA));
  2347. else
  2348. BUG_ON(cachep->gfpflags & GFP_DMA);
  2349. }
  2350. static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
  2351. int nodeid)
  2352. {
  2353. void *objp = index_to_obj(cachep, slabp, slabp->free);
  2354. kmem_bufctl_t next;
  2355. slabp->inuse++;
  2356. next = slab_bufctl(slabp)[slabp->free];
  2357. #if DEBUG
  2358. slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
  2359. WARN_ON(slabp->nodeid != nodeid);
  2360. #endif
  2361. slabp->free = next;
  2362. return objp;
  2363. }
  2364. static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
  2365. void *objp, int nodeid)
  2366. {
  2367. unsigned int objnr = obj_to_index(cachep, slabp, objp);
  2368. #if DEBUG
  2369. /* Verify that the slab belongs to the intended node */
  2370. WARN_ON(slabp->nodeid != nodeid);
  2371. if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
  2372. printk(KERN_ERR "slab: double free detected in cache "
  2373. "'%s', objp %p\n", cachep->name, objp);
  2374. BUG();
  2375. }
  2376. #endif
  2377. slab_bufctl(slabp)[objnr] = slabp->free;
  2378. slabp->free = objnr;
  2379. slabp->inuse--;
  2380. }
  2381. /*
  2382. * Map pages beginning at addr to the given cache and slab. This is required
  2383. * for the slab allocator to be able to lookup the cache and slab of a
  2384. * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
  2385. */
  2386. static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
  2387. void *addr)
  2388. {
  2389. int nr_pages;
  2390. struct page *page;
  2391. page = virt_to_page(addr);
  2392. nr_pages = 1;
  2393. if (likely(!PageCompound(page)))
  2394. nr_pages <<= cache->gfporder;
  2395. do {
  2396. page_set_cache(page, cache);
  2397. page_set_slab(page, slab);
  2398. page++;
  2399. } while (--nr_pages);
  2400. }
  2401. /*
  2402. * Grow (by 1) the number of slabs within a cache. This is called by
  2403. * kmem_cache_alloc() when there are no active objs left in a cache.
  2404. */
  2405. static int cache_grow(struct kmem_cache *cachep,
  2406. gfp_t flags, int nodeid, void *objp)
  2407. {
  2408. struct slab *slabp;
  2409. size_t offset;
  2410. gfp_t local_flags;
  2411. unsigned long ctor_flags;
  2412. struct kmem_list3 *l3;
  2413. /*
  2414. * Be lazy and only check for valid flags here, keeping it out of the
  2415. * critical path in kmem_cache_alloc().
  2416. */
  2417. BUG_ON(flags & ~(GFP_DMA | GFP_LEVEL_MASK | __GFP_NO_GROW));
  2418. if (flags & __GFP_NO_GROW)
  2419. return 0;
  2420. ctor_flags = SLAB_CTOR_CONSTRUCTOR;
  2421. local_flags = (flags & GFP_LEVEL_MASK);
  2422. if (!(local_flags & __GFP_WAIT))
  2423. /*
  2424. * Not allowed to sleep. Need to tell a constructor about
  2425. * this - it might need to know...
  2426. */
  2427. ctor_flags |= SLAB_CTOR_ATOMIC;
  2428. /* Take the l3 list lock to change the colour_next on this node */
  2429. check_irq_off();
  2430. l3 = cachep->nodelists[nodeid];
  2431. spin_lock(&l3->list_lock);
  2432. /* Get colour for the slab, and cal the next value. */
  2433. offset = l3->colour_next;
  2434. l3->colour_next++;
  2435. if (l3->colour_next >= cachep->colour)
  2436. l3->colour_next = 0;
  2437. spin_unlock(&l3->list_lock);
  2438. offset *= cachep->colour_off;
  2439. if (local_flags & __GFP_WAIT)
  2440. local_irq_enable();
  2441. /*
  2442. * The test for missing atomic flag is performed here, rather than
  2443. * the more obvious place, simply to reduce the critical path length
  2444. * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
  2445. * will eventually be caught here (where it matters).
  2446. */
  2447. kmem_flagcheck(cachep, flags);
  2448. /*
  2449. * Get mem for the objs. Attempt to allocate a physical page from
  2450. * 'nodeid'.
  2451. */
  2452. if (!objp)
  2453. objp = kmem_getpages(cachep, flags, nodeid);
  2454. if (!objp)
  2455. goto failed;
  2456. /* Get slab management. */
  2457. slabp = alloc_slabmgmt(cachep, objp, offset,
  2458. local_flags & ~GFP_THISNODE, nodeid);
  2459. if (!slabp)
  2460. goto opps1;
  2461. slabp->nodeid = nodeid;
  2462. slab_map_pages(cachep, slabp, objp);
  2463. cache_init_objs(cachep, slabp, ctor_flags);
  2464. if (local_flags & __GFP_WAIT)
  2465. local_irq_disable();
  2466. check_irq_off();
  2467. spin_lock(&l3->list_lock);
  2468. /* Make slab active. */
  2469. list_add_tail(&slabp->list, &(l3->slabs_free));
  2470. STATS_INC_GROWN(cachep);
  2471. l3->free_objects += cachep->num;
  2472. spin_unlock(&l3->list_lock);
  2473. return 1;
  2474. opps1:
  2475. kmem_freepages(cachep, objp);
  2476. failed:
  2477. if (local_flags & __GFP_WAIT)
  2478. local_irq_disable();
  2479. return 0;
  2480. }
  2481. #if DEBUG
  2482. /*
  2483. * Perform extra freeing checks:
  2484. * - detect bad pointers.
  2485. * - POISON/RED_ZONE checking
  2486. * - destructor calls, for caches with POISON+dtor
  2487. */
  2488. static void kfree_debugcheck(const void *objp)
  2489. {
  2490. if (!virt_addr_valid(objp)) {
  2491. printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
  2492. (unsigned long)objp);
  2493. BUG();
  2494. }
  2495. }
  2496. static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
  2497. {
  2498. unsigned long redzone1, redzone2;
  2499. redzone1 = *dbg_redzone1(cache, obj);
  2500. redzone2 = *dbg_redzone2(cache, obj);
  2501. /*
  2502. * Redzone is ok.
  2503. */
  2504. if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
  2505. return;
  2506. if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
  2507. slab_error(cache, "double free detected");
  2508. else
  2509. slab_error(cache, "memory outside object was overwritten");
  2510. printk(KERN_ERR "%p: redzone 1:0x%lx, redzone 2:0x%lx.\n",
  2511. obj, redzone1, redzone2);
  2512. }
  2513. static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
  2514. void *caller)
  2515. {
  2516. struct page *page;
  2517. unsigned int objnr;
  2518. struct slab *slabp;
  2519. objp -= obj_offset(cachep);
  2520. kfree_debugcheck(objp);
  2521. page = virt_to_page(objp);
  2522. slabp = page_get_slab(page);
  2523. if (cachep->flags & SLAB_RED_ZONE) {
  2524. verify_redzone_free(cachep, objp);
  2525. *dbg_redzone1(cachep, objp) = RED_INACTIVE;
  2526. *dbg_redzone2(cachep, objp) = RED_INACTIVE;
  2527. }
  2528. if (cachep->flags & SLAB_STORE_USER)
  2529. *dbg_userword(cachep, objp) = caller;
  2530. objnr = obj_to_index(cachep, slabp, objp);
  2531. BUG_ON(objnr >= cachep->num);
  2532. BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
  2533. if (cachep->flags & SLAB_DEBUG_INITIAL) {
  2534. /*
  2535. * Need to call the slab's constructor so the caller can
  2536. * perform a verify of its state (debugging). Called without
  2537. * the cache-lock held.
  2538. */
  2539. cachep->ctor(objp + obj_offset(cachep),
  2540. cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
  2541. }
  2542. if (cachep->flags & SLAB_POISON && cachep->dtor) {
  2543. /* we want to cache poison the object,
  2544. * call the destruction callback
  2545. */
  2546. cachep->dtor(objp + obj_offset(cachep), cachep, 0);
  2547. }
  2548. #ifdef CONFIG_DEBUG_SLAB_LEAK
  2549. slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
  2550. #endif
  2551. if (cachep->flags & SLAB_POISON) {
  2552. #ifdef CONFIG_DEBUG_PAGEALLOC
  2553. if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
  2554. store_stackinfo(cachep, objp, (unsigned long)caller);
  2555. kernel_map_pages(virt_to_page(objp),
  2556. cachep->buffer_size / PAGE_SIZE, 0);
  2557. } else {
  2558. poison_obj(cachep, objp, POISON_FREE);
  2559. }
  2560. #else
  2561. poison_obj(cachep, objp, POISON_FREE);
  2562. #endif
  2563. }
  2564. return objp;
  2565. }
  2566. static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
  2567. {
  2568. kmem_bufctl_t i;
  2569. int entries = 0;
  2570. /* Check slab's freelist to see if this obj is there. */
  2571. for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
  2572. entries++;
  2573. if (entries > cachep->num || i >= cachep->num)
  2574. goto bad;
  2575. }
  2576. if (entries != cachep->num - slabp->inuse) {
  2577. bad:
  2578. printk(KERN_ERR "slab: Internal list corruption detected in "
  2579. "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
  2580. cachep->name, cachep->num, slabp, slabp->inuse);
  2581. for (i = 0;
  2582. i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
  2583. i++) {
  2584. if (i % 16 == 0)
  2585. printk("\n%03x:", i);
  2586. printk(" %02x", ((unsigned char *)slabp)[i]);
  2587. }
  2588. printk("\n");
  2589. BUG();
  2590. }
  2591. }
  2592. #else
  2593. #define kfree_debugcheck(x) do { } while(0)
  2594. #define cache_free_debugcheck(x,objp,z) (objp)
  2595. #define check_slabp(x,y) do { } while(0)
  2596. #endif
  2597. static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
  2598. {
  2599. int batchcount;
  2600. struct kmem_list3 *l3;
  2601. struct array_cache *ac;
  2602. int node;
  2603. node = numa_node_id();
  2604. check_irq_off();
  2605. ac = cpu_cache_get(cachep);
  2606. retry:
  2607. batchcount = ac->batchcount;
  2608. if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
  2609. /*
  2610. * If there was little recent activity on this cache, then
  2611. * perform only a partial refill. Otherwise we could generate
  2612. * refill bouncing.
  2613. */
  2614. batchcount = BATCHREFILL_LIMIT;
  2615. }
  2616. l3 = cachep->nodelists[node];
  2617. BUG_ON(ac->avail > 0 || !l3);
  2618. spin_lock(&l3->list_lock);
  2619. /* See if we can refill from the shared array */
  2620. if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
  2621. goto alloc_done;
  2622. while (batchcount > 0) {
  2623. struct list_head *entry;
  2624. struct slab *slabp;
  2625. /* Get slab alloc is to come from. */
  2626. entry = l3->slabs_partial.next;
  2627. if (entry == &l3->slabs_partial) {
  2628. l3->free_touched = 1;
  2629. entry = l3->slabs_free.next;
  2630. if (entry == &l3->slabs_free)
  2631. goto must_grow;
  2632. }
  2633. slabp = list_entry(entry, struct slab, list);
  2634. check_slabp(cachep, slabp);
  2635. check_spinlock_acquired(cachep);
  2636. while (slabp->inuse < cachep->num && batchcount--) {
  2637. STATS_INC_ALLOCED(cachep);
  2638. STATS_INC_ACTIVE(cachep);
  2639. STATS_SET_HIGH(cachep);
  2640. ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
  2641. node);
  2642. }
  2643. check_slabp(cachep, slabp);
  2644. /* move slabp to correct slabp list: */
  2645. list_del(&slabp->list);
  2646. if (slabp->free == BUFCTL_END)
  2647. list_add(&slabp->list, &l3->slabs_full);
  2648. else
  2649. list_add(&slabp->list, &l3->slabs_partial);
  2650. }
  2651. must_grow:
  2652. l3->free_objects -= ac->avail;
  2653. alloc_done:
  2654. spin_unlock(&l3->list_lock);
  2655. if (unlikely(!ac->avail)) {
  2656. int x;
  2657. x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
  2658. /* cache_grow can reenable interrupts, then ac could change. */
  2659. ac = cpu_cache_get(cachep);
  2660. if (!x && ac->avail == 0) /* no objects in sight? abort */
  2661. return NULL;
  2662. if (!ac->avail) /* objects refilled by interrupt? */
  2663. goto retry;
  2664. }
  2665. ac->touched = 1;
  2666. return ac->entry[--ac->avail];
  2667. }
  2668. static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
  2669. gfp_t flags)
  2670. {
  2671. might_sleep_if(flags & __GFP_WAIT);
  2672. #if DEBUG
  2673. kmem_flagcheck(cachep, flags);
  2674. #endif
  2675. }
  2676. #if DEBUG
  2677. static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
  2678. gfp_t flags, void *objp, void *caller)
  2679. {
  2680. if (!objp)
  2681. return objp;
  2682. if (cachep->flags & SLAB_POISON) {
  2683. #ifdef CONFIG_DEBUG_PAGEALLOC
  2684. if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
  2685. kernel_map_pages(virt_to_page(objp),
  2686. cachep->buffer_size / PAGE_SIZE, 1);
  2687. else
  2688. check_poison_obj(cachep, objp);
  2689. #else
  2690. check_poison_obj(cachep, objp);
  2691. #endif
  2692. poison_obj(cachep, objp, POISON_INUSE);
  2693. }
  2694. if (cachep->flags & SLAB_STORE_USER)
  2695. *dbg_userword(cachep, objp) = caller;
  2696. if (cachep->flags & SLAB_RED_ZONE) {
  2697. if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
  2698. *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
  2699. slab_error(cachep, "double free, or memory outside"
  2700. " object was overwritten");
  2701. printk(KERN_ERR
  2702. "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
  2703. objp, *dbg_redzone1(cachep, objp),
  2704. *dbg_redzone2(cachep, objp));
  2705. }
  2706. *dbg_redzone1(cachep, objp) = RED_ACTIVE;
  2707. *dbg_redzone2(cachep, objp) = RED_ACTIVE;
  2708. }
  2709. #ifdef CONFIG_DEBUG_SLAB_LEAK
  2710. {
  2711. struct slab *slabp;
  2712. unsigned objnr;
  2713. slabp = page_get_slab(virt_to_page(objp));
  2714. objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
  2715. slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
  2716. }
  2717. #endif
  2718. objp += obj_offset(cachep);
  2719. if (cachep->ctor && cachep->flags & SLAB_POISON) {
  2720. unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
  2721. if (!(flags & __GFP_WAIT))
  2722. ctor_flags |= SLAB_CTOR_ATOMIC;
  2723. cachep->ctor(objp, cachep, ctor_flags);
  2724. }
  2725. #if ARCH_SLAB_MINALIGN
  2726. if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
  2727. printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
  2728. objp, ARCH_SLAB_MINALIGN);
  2729. }
  2730. #endif
  2731. return objp;
  2732. }
  2733. #else
  2734. #define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
  2735. #endif
  2736. #ifdef CONFIG_FAILSLAB
  2737. static struct failslab_attr {
  2738. struct fault_attr attr;
  2739. u32 ignore_gfp_wait;
  2740. #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
  2741. struct dentry *ignore_gfp_wait_file;
  2742. #endif
  2743. } failslab = {
  2744. .attr = FAULT_ATTR_INITIALIZER,
  2745. .ignore_gfp_wait = 1,
  2746. };
  2747. static int __init setup_failslab(char *str)
  2748. {
  2749. return setup_fault_attr(&failslab.attr, str);
  2750. }
  2751. __setup("failslab=", setup_failslab);
  2752. static int should_failslab(struct kmem_cache *cachep, gfp_t flags)
  2753. {
  2754. if (cachep == &cache_cache)
  2755. return 0;
  2756. if (flags & __GFP_NOFAIL)
  2757. return 0;
  2758. if (failslab.ignore_gfp_wait && (flags & __GFP_WAIT))
  2759. return 0;
  2760. return should_fail(&failslab.attr, obj_size(cachep));
  2761. }
  2762. #ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
  2763. static int __init failslab_debugfs(void)
  2764. {
  2765. mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
  2766. struct dentry *dir;
  2767. int err;
  2768. err = init_fault_attr_dentries(&failslab.attr, "failslab");
  2769. if (err)
  2770. return err;
  2771. dir = failslab.attr.dentries.dir;
  2772. failslab.ignore_gfp_wait_file =
  2773. debugfs_create_bool("ignore-gfp-wait", mode, dir,
  2774. &failslab.ignore_gfp_wait);
  2775. if (!failslab.ignore_gfp_wait_file) {
  2776. err = -ENOMEM;
  2777. debugfs_remove(failslab.ignore_gfp_wait_file);
  2778. cleanup_fault_attr_dentries(&failslab.attr);
  2779. }
  2780. return err;
  2781. }
  2782. late_initcall(failslab_debugfs);
  2783. #endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
  2784. #else /* CONFIG_FAILSLAB */
  2785. static inline int should_failslab(struct kmem_cache *cachep, gfp_t flags)
  2786. {
  2787. return 0;
  2788. }
  2789. #endif /* CONFIG_FAILSLAB */
  2790. static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
  2791. {
  2792. void *objp;
  2793. struct array_cache *ac;
  2794. check_irq_off();
  2795. if (should_failslab(cachep, flags))
  2796. return NULL;
  2797. ac = cpu_cache_get(cachep);
  2798. if (likely(ac->avail)) {
  2799. STATS_INC_ALLOCHIT(cachep);
  2800. ac->touched = 1;
  2801. objp = ac->entry[--ac->avail];
  2802. } else {
  2803. STATS_INC_ALLOCMISS(cachep);
  2804. objp = cache_alloc_refill(cachep, flags);
  2805. }
  2806. return objp;
  2807. }
  2808. static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
  2809. gfp_t flags, void *caller)
  2810. {
  2811. unsigned long save_flags;
  2812. void *objp = NULL;
  2813. cache_alloc_debugcheck_before(cachep, flags);
  2814. local_irq_save(save_flags);
  2815. if (unlikely(NUMA_BUILD &&
  2816. current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY)))
  2817. objp = alternate_node_alloc(cachep, flags);
  2818. if (!objp)
  2819. objp = ____cache_alloc(cachep, flags);
  2820. /*
  2821. * We may just have run out of memory on the local node.
  2822. * ____cache_alloc_node() knows how to locate memory on other nodes
  2823. */
  2824. if (NUMA_BUILD && !objp)
  2825. objp = ____cache_alloc_node(cachep, flags, numa_node_id());
  2826. local_irq_restore(save_flags);
  2827. objp = cache_alloc_debugcheck_after(cachep, flags, objp,
  2828. caller);
  2829. prefetchw(objp);
  2830. return objp;
  2831. }
  2832. #ifdef CONFIG_NUMA
  2833. /*
  2834. * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
  2835. *
  2836. * If we are in_interrupt, then process context, including cpusets and
  2837. * mempolicy, may not apply and should not be used for allocation policy.
  2838. */
  2839. static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
  2840. {
  2841. int nid_alloc, nid_here;
  2842. if (in_interrupt() || (flags & __GFP_THISNODE))
  2843. return NULL;
  2844. nid_alloc = nid_here = numa_node_id();
  2845. if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
  2846. nid_alloc = cpuset_mem_spread_node();
  2847. else if (current->mempolicy)
  2848. nid_alloc = slab_node(current->mempolicy);
  2849. if (nid_alloc != nid_here)
  2850. return ____cache_alloc_node(cachep, flags, nid_alloc);
  2851. return NULL;
  2852. }
  2853. /*
  2854. * Fallback function if there was no memory available and no objects on a
  2855. * certain node and fall back is permitted. First we scan all the
  2856. * available nodelists for available objects. If that fails then we
  2857. * perform an allocation without specifying a node. This allows the page
  2858. * allocator to do its reclaim / fallback magic. We then insert the
  2859. * slab into the proper nodelist and then allocate from it.
  2860. */
  2861. void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
  2862. {
  2863. struct zonelist *zonelist = &NODE_DATA(slab_node(current->mempolicy))
  2864. ->node_zonelists[gfp_zone(flags)];
  2865. struct zone **z;
  2866. void *obj = NULL;
  2867. int nid;
  2868. gfp_t local_flags = (flags & GFP_LEVEL_MASK);
  2869. retry:
  2870. /*
  2871. * Look through allowed nodes for objects available
  2872. * from existing per node queues.
  2873. */
  2874. for (z = zonelist->zones; *z && !obj; z++) {
  2875. nid = zone_to_nid(*z);
  2876. if (cpuset_zone_allowed_hardwall(*z, flags) &&
  2877. cache->nodelists[nid] &&
  2878. cache->nodelists[nid]->free_objects)
  2879. obj = ____cache_alloc_node(cache,
  2880. flags | GFP_THISNODE, nid);
  2881. }
  2882. if (!obj && !(flags & __GFP_NO_GROW)) {
  2883. /*
  2884. * This allocation will be performed within the constraints
  2885. * of the current cpuset / memory policy requirements.
  2886. * We may trigger various forms of reclaim on the allowed
  2887. * set and go into memory reserves if necessary.
  2888. */
  2889. if (local_flags & __GFP_WAIT)
  2890. local_irq_enable();
  2891. kmem_flagcheck(cache, flags);
  2892. obj = kmem_getpages(cache, flags, -1);
  2893. if (local_flags & __GFP_WAIT)
  2894. local_irq_disable();
  2895. if (obj) {
  2896. /*
  2897. * Insert into the appropriate per node queues
  2898. */
  2899. nid = page_to_nid(virt_to_page(obj));
  2900. if (cache_grow(cache, flags, nid, obj)) {
  2901. obj = ____cache_alloc_node(cache,
  2902. flags | GFP_THISNODE, nid);
  2903. if (!obj)
  2904. /*
  2905. * Another processor may allocate the
  2906. * objects in the slab since we are
  2907. * not holding any locks.
  2908. */
  2909. goto retry;
  2910. } else {
  2911. /* cache_grow already freed obj */
  2912. obj = NULL;
  2913. }
  2914. }
  2915. }
  2916. return obj;
  2917. }
  2918. /*
  2919. * A interface to enable slab creation on nodeid
  2920. */
  2921. static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
  2922. int nodeid)
  2923. {
  2924. struct list_head *entry;
  2925. struct slab *slabp;
  2926. struct kmem_list3 *l3;
  2927. void *obj;
  2928. int x;
  2929. l3 = cachep->nodelists[nodeid];
  2930. BUG_ON(!l3);
  2931. retry:
  2932. check_irq_off();
  2933. spin_lock(&l3->list_lock);
  2934. entry = l3->slabs_partial.next;
  2935. if (entry == &l3->slabs_partial) {
  2936. l3->free_touched = 1;
  2937. entry = l3->slabs_free.next;
  2938. if (entry == &l3->slabs_free)
  2939. goto must_grow;
  2940. }
  2941. slabp = list_entry(entry, struct slab, list);
  2942. check_spinlock_acquired_node(cachep, nodeid);
  2943. check_slabp(cachep, slabp);
  2944. STATS_INC_NODEALLOCS(cachep);
  2945. STATS_INC_ACTIVE(cachep);
  2946. STATS_SET_HIGH(cachep);
  2947. BUG_ON(slabp->inuse == cachep->num);
  2948. obj = slab_get_obj(cachep, slabp, nodeid);
  2949. check_slabp(cachep, slabp);
  2950. l3->free_objects--;
  2951. /* move slabp to correct slabp list: */
  2952. list_del(&slabp->list);
  2953. if (slabp->free == BUFCTL_END)
  2954. list_add(&slabp->list, &l3->slabs_full);
  2955. else
  2956. list_add(&slabp->list, &l3->slabs_partial);
  2957. spin_unlock(&l3->list_lock);
  2958. goto done;
  2959. must_grow:
  2960. spin_unlock(&l3->list_lock);
  2961. x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
  2962. if (x)
  2963. goto retry;
  2964. if (!(flags & __GFP_THISNODE))
  2965. /* Unable to grow the cache. Fall back to other nodes. */
  2966. return fallback_alloc(cachep, flags);
  2967. return NULL;
  2968. done:
  2969. return obj;
  2970. }
  2971. #endif
  2972. /*
  2973. * Caller needs to acquire correct kmem_list's list_lock
  2974. */
  2975. static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
  2976. int node)
  2977. {
  2978. int i;
  2979. struct kmem_list3 *l3;
  2980. for (i = 0; i < nr_objects; i++) {
  2981. void *objp = objpp[i];
  2982. struct slab *slabp;
  2983. slabp = virt_to_slab(objp);
  2984. l3 = cachep->nodelists[node];
  2985. list_del(&slabp->list);
  2986. check_spinlock_acquired_node(cachep, node);
  2987. check_slabp(cachep, slabp);
  2988. slab_put_obj(cachep, slabp, objp, node);
  2989. STATS_DEC_ACTIVE(cachep);
  2990. l3->free_objects++;
  2991. check_slabp(cachep, slabp);
  2992. /* fixup slab chains */
  2993. if (slabp->inuse == 0) {
  2994. if (l3->free_objects > l3->free_limit) {
  2995. l3->free_objects -= cachep->num;
  2996. /* No need to drop any previously held
  2997. * lock here, even if we have a off-slab slab
  2998. * descriptor it is guaranteed to come from
  2999. * a different cache, refer to comments before
  3000. * alloc_slabmgmt.
  3001. */
  3002. slab_destroy(cachep, slabp);
  3003. } else {
  3004. list_add(&slabp->list, &l3->slabs_free);
  3005. }
  3006. } else {
  3007. /* Unconditionally move a slab to the end of the
  3008. * partial list on free - maximum time for the
  3009. * other objects to be freed, too.
  3010. */
  3011. list_add_tail(&slabp->list, &l3->slabs_partial);
  3012. }
  3013. }
  3014. }
  3015. static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
  3016. {
  3017. int batchcount;
  3018. struct kmem_list3 *l3;
  3019. int node = numa_node_id();
  3020. batchcount = ac->batchcount;
  3021. #if DEBUG
  3022. BUG_ON(!batchcount || batchcount > ac->avail);
  3023. #endif
  3024. check_irq_off();
  3025. l3 = cachep->nodelists[node];
  3026. spin_lock(&l3->list_lock);
  3027. if (l3->shared) {
  3028. struct array_cache *shared_array = l3->shared;
  3029. int max = shared_array->limit - shared_array->avail;
  3030. if (max) {
  3031. if (batchcount > max)
  3032. batchcount = max;
  3033. memcpy(&(shared_array->entry[shared_array->avail]),
  3034. ac->entry, sizeof(void *) * batchcount);
  3035. shared_array->avail += batchcount;
  3036. goto free_done;
  3037. }
  3038. }
  3039. free_block(cachep, ac->entry, batchcount, node);
  3040. free_done:
  3041. #if STATS
  3042. {
  3043. int i = 0;
  3044. struct list_head *p;
  3045. p = l3->slabs_free.next;
  3046. while (p != &(l3->slabs_free)) {
  3047. struct slab *slabp;
  3048. slabp = list_entry(p, struct slab, list);
  3049. BUG_ON(slabp->inuse);
  3050. i++;
  3051. p = p->next;
  3052. }
  3053. STATS_SET_FREEABLE(cachep, i);
  3054. }
  3055. #endif
  3056. spin_unlock(&l3->list_lock);
  3057. ac->avail -= batchcount;
  3058. memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
  3059. }
  3060. /*
  3061. * Release an obj back to its cache. If the obj has a constructed state, it must
  3062. * be in this state _before_ it is released. Called with disabled ints.
  3063. */
  3064. static inline void __cache_free(struct kmem_cache *cachep, void *objp)
  3065. {
  3066. struct array_cache *ac = cpu_cache_get(cachep);
  3067. check_irq_off();
  3068. objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
  3069. if (cache_free_alien(cachep, objp))
  3070. return;
  3071. if (likely(ac->avail < ac->limit)) {
  3072. STATS_INC_FREEHIT(cachep);
  3073. ac->entry[ac->avail++] = objp;
  3074. return;
  3075. } else {
  3076. STATS_INC_FREEMISS(cachep);
  3077. cache_flusharray(cachep, ac);
  3078. ac->entry[ac->avail++] = objp;
  3079. }
  3080. }
  3081. /**
  3082. * kmem_cache_alloc - Allocate an object
  3083. * @cachep: The cache to allocate from.
  3084. * @flags: See kmalloc().
  3085. *
  3086. * Allocate an object from this cache. The flags are only relevant
  3087. * if the cache has no available objects.
  3088. */
  3089. void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
  3090. {
  3091. return __cache_alloc(cachep, flags, __builtin_return_address(0));
  3092. }
  3093. EXPORT_SYMBOL(kmem_cache_alloc);
  3094. /**
  3095. * kmem_cache_zalloc - Allocate an object. The memory is set to zero.
  3096. * @cache: The cache to allocate from.
  3097. * @flags: See kmalloc().
  3098. *
  3099. * Allocate an object from this cache and set the allocated memory to zero.
  3100. * The flags are only relevant if the cache has no available objects.
  3101. */
  3102. void *kmem_cache_zalloc(struct kmem_cache *cache, gfp_t flags)
  3103. {
  3104. void *ret = __cache_alloc(cache, flags, __builtin_return_address(0));
  3105. if (ret)
  3106. memset(ret, 0, obj_size(cache));
  3107. return ret;
  3108. }
  3109. EXPORT_SYMBOL(kmem_cache_zalloc);
  3110. /**
  3111. * kmem_ptr_validate - check if an untrusted pointer might
  3112. * be a slab entry.
  3113. * @cachep: the cache we're checking against
  3114. * @ptr: pointer to validate
  3115. *
  3116. * This verifies that the untrusted pointer looks sane:
  3117. * it is _not_ a guarantee that the pointer is actually
  3118. * part of the slab cache in question, but it at least
  3119. * validates that the pointer can be dereferenced and
  3120. * looks half-way sane.
  3121. *
  3122. * Currently only used for dentry validation.
  3123. */
  3124. int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
  3125. {
  3126. unsigned long addr = (unsigned long)ptr;
  3127. unsigned long min_addr = PAGE_OFFSET;
  3128. unsigned long align_mask = BYTES_PER_WORD - 1;
  3129. unsigned long size = cachep->buffer_size;
  3130. struct page *page;
  3131. if (unlikely(addr < min_addr))
  3132. goto out;
  3133. if (unlikely(addr > (unsigned long)high_memory - size))
  3134. goto out;
  3135. if (unlikely(addr & align_mask))
  3136. goto out;
  3137. if (unlikely(!kern_addr_valid(addr)))
  3138. goto out;
  3139. if (unlikely(!kern_addr_valid(addr + size - 1)))
  3140. goto out;
  3141. page = virt_to_page(ptr);
  3142. if (unlikely(!PageSlab(page)))
  3143. goto out;
  3144. if (unlikely(page_get_cache(page) != cachep))
  3145. goto out;
  3146. return 1;
  3147. out:
  3148. return 0;
  3149. }
  3150. #ifdef CONFIG_NUMA
  3151. /**
  3152. * kmem_cache_alloc_node - Allocate an object on the specified node
  3153. * @cachep: The cache to allocate from.
  3154. * @flags: See kmalloc().
  3155. * @nodeid: node number of the target node.
  3156. * @caller: return address of caller, used for debug information
  3157. *
  3158. * Identical to kmem_cache_alloc but it will allocate memory on the given
  3159. * node, which can improve the performance for cpu bound structures.
  3160. *
  3161. * Fallback to other node is possible if __GFP_THISNODE is not set.
  3162. */
  3163. static __always_inline void *
  3164. __cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
  3165. int nodeid, void *caller)
  3166. {
  3167. unsigned long save_flags;
  3168. void *ptr = NULL;
  3169. cache_alloc_debugcheck_before(cachep, flags);
  3170. local_irq_save(save_flags);
  3171. if (unlikely(nodeid == -1))
  3172. nodeid = numa_node_id();
  3173. if (likely(cachep->nodelists[nodeid])) {
  3174. if (nodeid == numa_node_id()) {
  3175. /*
  3176. * Use the locally cached objects if possible.
  3177. * However ____cache_alloc does not allow fallback
  3178. * to other nodes. It may fail while we still have
  3179. * objects on other nodes available.
  3180. */
  3181. ptr = ____cache_alloc(cachep, flags);
  3182. }
  3183. if (!ptr) {
  3184. /* ___cache_alloc_node can fall back to other nodes */
  3185. ptr = ____cache_alloc_node(cachep, flags, nodeid);
  3186. }
  3187. } else {
  3188. /* Node not bootstrapped yet */
  3189. if (!(flags & __GFP_THISNODE))
  3190. ptr = fallback_alloc(cachep, flags);
  3191. }
  3192. local_irq_restore(save_flags);
  3193. ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
  3194. return ptr;
  3195. }
  3196. void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
  3197. {
  3198. return __cache_alloc_node(cachep, flags, nodeid,
  3199. __builtin_return_address(0));
  3200. }
  3201. EXPORT_SYMBOL(kmem_cache_alloc_node);
  3202. static __always_inline void *
  3203. __do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
  3204. {
  3205. struct kmem_cache *cachep;
  3206. cachep = kmem_find_general_cachep(size, flags);
  3207. if (unlikely(cachep == NULL))
  3208. return NULL;
  3209. return kmem_cache_alloc_node(cachep, flags, node);
  3210. }
  3211. #ifdef CONFIG_DEBUG_SLAB
  3212. void *__kmalloc_node(size_t size, gfp_t flags, int node)
  3213. {
  3214. return __do_kmalloc_node(size, flags, node,
  3215. __builtin_return_address(0));
  3216. }
  3217. EXPORT_SYMBOL(__kmalloc_node);
  3218. void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
  3219. int node, void *caller)
  3220. {
  3221. return __do_kmalloc_node(size, flags, node, caller);
  3222. }
  3223. EXPORT_SYMBOL(__kmalloc_node_track_caller);
  3224. #else
  3225. void *__kmalloc_node(size_t size, gfp_t flags, int node)
  3226. {
  3227. return __do_kmalloc_node(size, flags, node, NULL);
  3228. }
  3229. EXPORT_SYMBOL(__kmalloc_node);
  3230. #endif /* CONFIG_DEBUG_SLAB */
  3231. #endif /* CONFIG_NUMA */
  3232. /**
  3233. * __do_kmalloc - allocate memory
  3234. * @size: how many bytes of memory are required.
  3235. * @flags: the type of memory to allocate (see kmalloc).
  3236. * @caller: function caller for debug tracking of the caller
  3237. */
  3238. static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
  3239. void *caller)
  3240. {
  3241. struct kmem_cache *cachep;
  3242. /* If you want to save a few bytes .text space: replace
  3243. * __ with kmem_.
  3244. * Then kmalloc uses the uninlined functions instead of the inline
  3245. * functions.
  3246. */
  3247. cachep = __find_general_cachep(size, flags);
  3248. if (unlikely(cachep == NULL))
  3249. return NULL;
  3250. return __cache_alloc(cachep, flags, caller);
  3251. }
  3252. #ifdef CONFIG_DEBUG_SLAB
  3253. void *__kmalloc(size_t size, gfp_t flags)
  3254. {
  3255. return __do_kmalloc(size, flags, __builtin_return_address(0));
  3256. }
  3257. EXPORT_SYMBOL(__kmalloc);
  3258. void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
  3259. {
  3260. return __do_kmalloc(size, flags, caller);
  3261. }
  3262. EXPORT_SYMBOL(__kmalloc_track_caller);
  3263. #else
  3264. void *__kmalloc(size_t size, gfp_t flags)
  3265. {
  3266. return __do_kmalloc(size, flags, NULL);
  3267. }
  3268. EXPORT_SYMBOL(__kmalloc);
  3269. #endif
  3270. /**
  3271. * kmem_cache_free - Deallocate an object
  3272. * @cachep: The cache the allocation was from.
  3273. * @objp: The previously allocated object.
  3274. *
  3275. * Free an object which was previously allocated from this
  3276. * cache.
  3277. */
  3278. void kmem_cache_free(struct kmem_cache *cachep, void *objp)
  3279. {
  3280. unsigned long flags;
  3281. BUG_ON(virt_to_cache(objp) != cachep);
  3282. local_irq_save(flags);
  3283. __cache_free(cachep, objp);
  3284. local_irq_restore(flags);
  3285. }
  3286. EXPORT_SYMBOL(kmem_cache_free);
  3287. /**
  3288. * kfree - free previously allocated memory
  3289. * @objp: pointer returned by kmalloc.
  3290. *
  3291. * If @objp is NULL, no operation is performed.
  3292. *
  3293. * Don't free memory not originally allocated by kmalloc()
  3294. * or you will run into trouble.
  3295. */
  3296. void kfree(const void *objp)
  3297. {
  3298. struct kmem_cache *c;
  3299. unsigned long flags;
  3300. if (unlikely(!objp))
  3301. return;
  3302. local_irq_save(flags);
  3303. kfree_debugcheck(objp);
  3304. c = virt_to_cache(objp);
  3305. debug_check_no_locks_freed(objp, obj_size(c));
  3306. __cache_free(c, (void *)objp);
  3307. local_irq_restore(flags);
  3308. }
  3309. EXPORT_SYMBOL(kfree);
  3310. unsigned int kmem_cache_size(struct kmem_cache *cachep)
  3311. {
  3312. return obj_size(cachep);
  3313. }
  3314. EXPORT_SYMBOL(kmem_cache_size);
  3315. const char *kmem_cache_name(struct kmem_cache *cachep)
  3316. {
  3317. return cachep->name;
  3318. }
  3319. EXPORT_SYMBOL_GPL(kmem_cache_name);
  3320. /*
  3321. * This initializes kmem_list3 or resizes varioius caches for all nodes.
  3322. */
  3323. static int alloc_kmemlist(struct kmem_cache *cachep)
  3324. {
  3325. int node;
  3326. struct kmem_list3 *l3;
  3327. struct array_cache *new_shared;
  3328. struct array_cache **new_alien = NULL;
  3329. for_each_online_node(node) {
  3330. if (use_alien_caches) {
  3331. new_alien = alloc_alien_cache(node, cachep->limit);
  3332. if (!new_alien)
  3333. goto fail;
  3334. }
  3335. new_shared = alloc_arraycache(node,
  3336. cachep->shared*cachep->batchcount,
  3337. 0xbaadf00d);
  3338. if (!new_shared) {
  3339. free_alien_cache(new_alien);
  3340. goto fail;
  3341. }
  3342. l3 = cachep->nodelists[node];
  3343. if (l3) {
  3344. struct array_cache *shared = l3->shared;
  3345. spin_lock_irq(&l3->list_lock);
  3346. if (shared)
  3347. free_block(cachep, shared->entry,
  3348. shared->avail, node);
  3349. l3->shared = new_shared;
  3350. if (!l3->alien) {
  3351. l3->alien = new_alien;
  3352. new_alien = NULL;
  3353. }
  3354. l3->free_limit = (1 + nr_cpus_node(node)) *
  3355. cachep->batchcount + cachep->num;
  3356. spin_unlock_irq(&l3->list_lock);
  3357. kfree(shared);
  3358. free_alien_cache(new_alien);
  3359. continue;
  3360. }
  3361. l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
  3362. if (!l3) {
  3363. free_alien_cache(new_alien);
  3364. kfree(new_shared);
  3365. goto fail;
  3366. }
  3367. kmem_list3_init(l3);
  3368. l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
  3369. ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
  3370. l3->shared = new_shared;
  3371. l3->alien = new_alien;
  3372. l3->free_limit = (1 + nr_cpus_node(node)) *
  3373. cachep->batchcount + cachep->num;
  3374. cachep->nodelists[node] = l3;
  3375. }
  3376. return 0;
  3377. fail:
  3378. if (!cachep->next.next) {
  3379. /* Cache is not active yet. Roll back what we did */
  3380. node--;
  3381. while (node >= 0) {
  3382. if (cachep->nodelists[node]) {
  3383. l3 = cachep->nodelists[node];
  3384. kfree(l3->shared);
  3385. free_alien_cache(l3->alien);
  3386. kfree(l3);
  3387. cachep->nodelists[node] = NULL;
  3388. }
  3389. node--;
  3390. }
  3391. }
  3392. return -ENOMEM;
  3393. }
  3394. struct ccupdate_struct {
  3395. struct kmem_cache *cachep;
  3396. struct array_cache *new[NR_CPUS];
  3397. };
  3398. static void do_ccupdate_local(void *info)
  3399. {
  3400. struct ccupdate_struct *new = info;
  3401. struct array_cache *old;
  3402. check_irq_off();
  3403. old = cpu_cache_get(new->cachep);
  3404. new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
  3405. new->new[smp_processor_id()] = old;
  3406. }
  3407. /* Always called with the cache_chain_mutex held */
  3408. static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
  3409. int batchcount, int shared)
  3410. {
  3411. struct ccupdate_struct *new;
  3412. int i;
  3413. new = kzalloc(sizeof(*new), GFP_KERNEL);
  3414. if (!new)
  3415. return -ENOMEM;
  3416. for_each_online_cpu(i) {
  3417. new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
  3418. batchcount);
  3419. if (!new->new[i]) {
  3420. for (i--; i >= 0; i--)
  3421. kfree(new->new[i]);
  3422. kfree(new);
  3423. return -ENOMEM;
  3424. }
  3425. }
  3426. new->cachep = cachep;
  3427. on_each_cpu(do_ccupdate_local, (void *)new, 1, 1);
  3428. check_irq_on();
  3429. cachep->batchcount = batchcount;
  3430. cachep->limit = limit;
  3431. cachep->shared = shared;
  3432. for_each_online_cpu(i) {
  3433. struct array_cache *ccold = new->new[i];
  3434. if (!ccold)
  3435. continue;
  3436. spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
  3437. free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
  3438. spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
  3439. kfree(ccold);
  3440. }
  3441. kfree(new);
  3442. return alloc_kmemlist(cachep);
  3443. }
  3444. /* Called with cache_chain_mutex held always */
  3445. static int enable_cpucache(struct kmem_cache *cachep)
  3446. {
  3447. int err;
  3448. int limit, shared;
  3449. /*
  3450. * The head array serves three purposes:
  3451. * - create a LIFO ordering, i.e. return objects that are cache-warm
  3452. * - reduce the number of spinlock operations.
  3453. * - reduce the number of linked list operations on the slab and
  3454. * bufctl chains: array operations are cheaper.
  3455. * The numbers are guessed, we should auto-tune as described by
  3456. * Bonwick.
  3457. */
  3458. if (cachep->buffer_size > 131072)
  3459. limit = 1;
  3460. else if (cachep->buffer_size > PAGE_SIZE)
  3461. limit = 8;
  3462. else if (cachep->buffer_size > 1024)
  3463. limit = 24;
  3464. else if (cachep->buffer_size > 256)
  3465. limit = 54;
  3466. else
  3467. limit = 120;
  3468. /*
  3469. * CPU bound tasks (e.g. network routing) can exhibit cpu bound
  3470. * allocation behaviour: Most allocs on one cpu, most free operations
  3471. * on another cpu. For these cases, an efficient object passing between
  3472. * cpus is necessary. This is provided by a shared array. The array
  3473. * replaces Bonwick's magazine layer.
  3474. * On uniprocessor, it's functionally equivalent (but less efficient)
  3475. * to a larger limit. Thus disabled by default.
  3476. */
  3477. shared = 0;
  3478. #ifdef CONFIG_SMP
  3479. if (cachep->buffer_size <= PAGE_SIZE)
  3480. shared = 8;
  3481. #endif
  3482. #if DEBUG
  3483. /*
  3484. * With debugging enabled, large batchcount lead to excessively long
  3485. * periods with disabled local interrupts. Limit the batchcount
  3486. */
  3487. if (limit > 32)
  3488. limit = 32;
  3489. #endif
  3490. err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
  3491. if (err)
  3492. printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
  3493. cachep->name, -err);
  3494. return err;
  3495. }
  3496. /*
  3497. * Drain an array if it contains any elements taking the l3 lock only if
  3498. * necessary. Note that the l3 listlock also protects the array_cache
  3499. * if drain_array() is used on the shared array.
  3500. */
  3501. void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
  3502. struct array_cache *ac, int force, int node)
  3503. {
  3504. int tofree;
  3505. if (!ac || !ac->avail)
  3506. return;
  3507. if (ac->touched && !force) {
  3508. ac->touched = 0;
  3509. } else {
  3510. spin_lock_irq(&l3->list_lock);
  3511. if (ac->avail) {
  3512. tofree = force ? ac->avail : (ac->limit + 4) / 5;
  3513. if (tofree > ac->avail)
  3514. tofree = (ac->avail + 1) / 2;
  3515. free_block(cachep, ac->entry, tofree, node);
  3516. ac->avail -= tofree;
  3517. memmove(ac->entry, &(ac->entry[tofree]),
  3518. sizeof(void *) * ac->avail);
  3519. }
  3520. spin_unlock_irq(&l3->list_lock);
  3521. }
  3522. }
  3523. /**
  3524. * cache_reap - Reclaim memory from caches.
  3525. * @unused: unused parameter
  3526. *
  3527. * Called from workqueue/eventd every few seconds.
  3528. * Purpose:
  3529. * - clear the per-cpu caches for this CPU.
  3530. * - return freeable pages to the main free memory pool.
  3531. *
  3532. * If we cannot acquire the cache chain mutex then just give up - we'll try
  3533. * again on the next iteration.
  3534. */
  3535. static void cache_reap(struct work_struct *unused)
  3536. {
  3537. struct kmem_cache *searchp;
  3538. struct kmem_list3 *l3;
  3539. int node = numa_node_id();
  3540. if (!mutex_trylock(&cache_chain_mutex)) {
  3541. /* Give up. Setup the next iteration. */
  3542. schedule_delayed_work(&__get_cpu_var(reap_work),
  3543. round_jiffies_relative(REAPTIMEOUT_CPUC));
  3544. return;
  3545. }
  3546. list_for_each_entry(searchp, &cache_chain, next) {
  3547. check_irq_on();
  3548. /*
  3549. * We only take the l3 lock if absolutely necessary and we
  3550. * have established with reasonable certainty that
  3551. * we can do some work if the lock was obtained.
  3552. */
  3553. l3 = searchp->nodelists[node];
  3554. reap_alien(searchp, l3);
  3555. drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
  3556. /*
  3557. * These are racy checks but it does not matter
  3558. * if we skip one check or scan twice.
  3559. */
  3560. if (time_after(l3->next_reap, jiffies))
  3561. goto next;
  3562. l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
  3563. drain_array(searchp, l3, l3->shared, 0, node);
  3564. if (l3->free_touched)
  3565. l3->free_touched = 0;
  3566. else {
  3567. int freed;
  3568. freed = drain_freelist(searchp, l3, (l3->free_limit +
  3569. 5 * searchp->num - 1) / (5 * searchp->num));
  3570. STATS_ADD_REAPED(searchp, freed);
  3571. }
  3572. next:
  3573. cond_resched();
  3574. }
  3575. check_irq_on();
  3576. mutex_unlock(&cache_chain_mutex);
  3577. next_reap_node();
  3578. refresh_cpu_vm_stats(smp_processor_id());
  3579. /* Set up the next iteration */
  3580. schedule_delayed_work(&__get_cpu_var(reap_work),
  3581. round_jiffies_relative(REAPTIMEOUT_CPUC));
  3582. }
  3583. #ifdef CONFIG_PROC_FS
  3584. static void print_slabinfo_header(struct seq_file *m)
  3585. {
  3586. /*
  3587. * Output format version, so at least we can change it
  3588. * without _too_ many complaints.
  3589. */
  3590. #if STATS
  3591. seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
  3592. #else
  3593. seq_puts(m, "slabinfo - version: 2.1\n");
  3594. #endif
  3595. seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
  3596. "<objperslab> <pagesperslab>");
  3597. seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
  3598. seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
  3599. #if STATS
  3600. seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
  3601. "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
  3602. seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
  3603. #endif
  3604. seq_putc(m, '\n');
  3605. }
  3606. static void *s_start(struct seq_file *m, loff_t *pos)
  3607. {
  3608. loff_t n = *pos;
  3609. struct list_head *p;
  3610. mutex_lock(&cache_chain_mutex);
  3611. if (!n)
  3612. print_slabinfo_header(m);
  3613. p = cache_chain.next;
  3614. while (n--) {
  3615. p = p->next;
  3616. if (p == &cache_chain)
  3617. return NULL;
  3618. }
  3619. return list_entry(p, struct kmem_cache, next);
  3620. }
  3621. static void *s_next(struct seq_file *m, void *p, loff_t *pos)
  3622. {
  3623. struct kmem_cache *cachep = p;
  3624. ++*pos;
  3625. return cachep->next.next == &cache_chain ?
  3626. NULL : list_entry(cachep->next.next, struct kmem_cache, next);
  3627. }
  3628. static void s_stop(struct seq_file *m, void *p)
  3629. {
  3630. mutex_unlock(&cache_chain_mutex);
  3631. }
  3632. static int s_show(struct seq_file *m, void *p)
  3633. {
  3634. struct kmem_cache *cachep = p;
  3635. struct slab *slabp;
  3636. unsigned long active_objs;
  3637. unsigned long num_objs;
  3638. unsigned long active_slabs = 0;
  3639. unsigned long num_slabs, free_objects = 0, shared_avail = 0;
  3640. const char *name;
  3641. char *error = NULL;
  3642. int node;
  3643. struct kmem_list3 *l3;
  3644. active_objs = 0;
  3645. num_slabs = 0;
  3646. for_each_online_node(node) {
  3647. l3 = cachep->nodelists[node];
  3648. if (!l3)
  3649. continue;
  3650. check_irq_on();
  3651. spin_lock_irq(&l3->list_lock);
  3652. list_for_each_entry(slabp, &l3->slabs_full, list) {
  3653. if (slabp->inuse != cachep->num && !error)
  3654. error = "slabs_full accounting error";
  3655. active_objs += cachep->num;
  3656. active_slabs++;
  3657. }
  3658. list_for_each_entry(slabp, &l3->slabs_partial, list) {
  3659. if (slabp->inuse == cachep->num && !error)
  3660. error = "slabs_partial inuse accounting error";
  3661. if (!slabp->inuse && !error)
  3662. error = "slabs_partial/inuse accounting error";
  3663. active_objs += slabp->inuse;
  3664. active_slabs++;
  3665. }
  3666. list_for_each_entry(slabp, &l3->slabs_free, list) {
  3667. if (slabp->inuse && !error)
  3668. error = "slabs_free/inuse accounting error";
  3669. num_slabs++;
  3670. }
  3671. free_objects += l3->free_objects;
  3672. if (l3->shared)
  3673. shared_avail += l3->shared->avail;
  3674. spin_unlock_irq(&l3->list_lock);
  3675. }
  3676. num_slabs += active_slabs;
  3677. num_objs = num_slabs * cachep->num;
  3678. if (num_objs - active_objs != free_objects && !error)
  3679. error = "free_objects accounting error";
  3680. name = cachep->name;
  3681. if (error)
  3682. printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
  3683. seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
  3684. name, active_objs, num_objs, cachep->buffer_size,
  3685. cachep->num, (1 << cachep->gfporder));
  3686. seq_printf(m, " : tunables %4u %4u %4u",
  3687. cachep->limit, cachep->batchcount, cachep->shared);
  3688. seq_printf(m, " : slabdata %6lu %6lu %6lu",
  3689. active_slabs, num_slabs, shared_avail);
  3690. #if STATS
  3691. { /* list3 stats */
  3692. unsigned long high = cachep->high_mark;
  3693. unsigned long allocs = cachep->num_allocations;
  3694. unsigned long grown = cachep->grown;
  3695. unsigned long reaped = cachep->reaped;
  3696. unsigned long errors = cachep->errors;
  3697. unsigned long max_freeable = cachep->max_freeable;
  3698. unsigned long node_allocs = cachep->node_allocs;
  3699. unsigned long node_frees = cachep->node_frees;
  3700. unsigned long overflows = cachep->node_overflow;
  3701. seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
  3702. %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
  3703. reaped, errors, max_freeable, node_allocs,
  3704. node_frees, overflows);
  3705. }
  3706. /* cpu stats */
  3707. {
  3708. unsigned long allochit = atomic_read(&cachep->allochit);
  3709. unsigned long allocmiss = atomic_read(&cachep->allocmiss);
  3710. unsigned long freehit = atomic_read(&cachep->freehit);
  3711. unsigned long freemiss = atomic_read(&cachep->freemiss);
  3712. seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
  3713. allochit, allocmiss, freehit, freemiss);
  3714. }
  3715. #endif
  3716. seq_putc(m, '\n');
  3717. return 0;
  3718. }
  3719. /*
  3720. * slabinfo_op - iterator that generates /proc/slabinfo
  3721. *
  3722. * Output layout:
  3723. * cache-name
  3724. * num-active-objs
  3725. * total-objs
  3726. * object size
  3727. * num-active-slabs
  3728. * total-slabs
  3729. * num-pages-per-slab
  3730. * + further values on SMP and with statistics enabled
  3731. */
  3732. const struct seq_operations slabinfo_op = {
  3733. .start = s_start,
  3734. .next = s_next,
  3735. .stop = s_stop,
  3736. .show = s_show,
  3737. };
  3738. #define MAX_SLABINFO_WRITE 128
  3739. /**
  3740. * slabinfo_write - Tuning for the slab allocator
  3741. * @file: unused
  3742. * @buffer: user buffer
  3743. * @count: data length
  3744. * @ppos: unused
  3745. */
  3746. ssize_t slabinfo_write(struct file *file, const char __user * buffer,
  3747. size_t count, loff_t *ppos)
  3748. {
  3749. char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
  3750. int limit, batchcount, shared, res;
  3751. struct kmem_cache *cachep;
  3752. if (count > MAX_SLABINFO_WRITE)
  3753. return -EINVAL;
  3754. if (copy_from_user(&kbuf, buffer, count))
  3755. return -EFAULT;
  3756. kbuf[MAX_SLABINFO_WRITE] = '\0';
  3757. tmp = strchr(kbuf, ' ');
  3758. if (!tmp)
  3759. return -EINVAL;
  3760. *tmp = '\0';
  3761. tmp++;
  3762. if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
  3763. return -EINVAL;
  3764. /* Find the cache in the chain of caches. */
  3765. mutex_lock(&cache_chain_mutex);
  3766. res = -EINVAL;
  3767. list_for_each_entry(cachep, &cache_chain, next) {
  3768. if (!strcmp(cachep->name, kbuf)) {
  3769. if (limit < 1 || batchcount < 1 ||
  3770. batchcount > limit || shared < 0) {
  3771. res = 0;
  3772. } else {
  3773. res = do_tune_cpucache(cachep, limit,
  3774. batchcount, shared);
  3775. }
  3776. break;
  3777. }
  3778. }
  3779. mutex_unlock(&cache_chain_mutex);
  3780. if (res >= 0)
  3781. res = count;
  3782. return res;
  3783. }
  3784. #ifdef CONFIG_DEBUG_SLAB_LEAK
  3785. static void *leaks_start(struct seq_file *m, loff_t *pos)
  3786. {
  3787. loff_t n = *pos;
  3788. struct list_head *p;
  3789. mutex_lock(&cache_chain_mutex);
  3790. p = cache_chain.next;
  3791. while (n--) {
  3792. p = p->next;
  3793. if (p == &cache_chain)
  3794. return NULL;
  3795. }
  3796. return list_entry(p, struct kmem_cache, next);
  3797. }
  3798. static inline int add_caller(unsigned long *n, unsigned long v)
  3799. {
  3800. unsigned long *p;
  3801. int l;
  3802. if (!v)
  3803. return 1;
  3804. l = n[1];
  3805. p = n + 2;
  3806. while (l) {
  3807. int i = l/2;
  3808. unsigned long *q = p + 2 * i;
  3809. if (*q == v) {
  3810. q[1]++;
  3811. return 1;
  3812. }
  3813. if (*q > v) {
  3814. l = i;
  3815. } else {
  3816. p = q + 2;
  3817. l -= i + 1;
  3818. }
  3819. }
  3820. if (++n[1] == n[0])
  3821. return 0;
  3822. memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
  3823. p[0] = v;
  3824. p[1] = 1;
  3825. return 1;
  3826. }
  3827. static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
  3828. {
  3829. void *p;
  3830. int i;
  3831. if (n[0] == n[1])
  3832. return;
  3833. for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
  3834. if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
  3835. continue;
  3836. if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
  3837. return;
  3838. }
  3839. }
  3840. static void show_symbol(struct seq_file *m, unsigned long address)
  3841. {
  3842. #ifdef CONFIG_KALLSYMS
  3843. char *modname;
  3844. const char *name;
  3845. unsigned long offset, size;
  3846. char namebuf[KSYM_NAME_LEN+1];
  3847. name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
  3848. if (name) {
  3849. seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
  3850. if (modname)
  3851. seq_printf(m, " [%s]", modname);
  3852. return;
  3853. }
  3854. #endif
  3855. seq_printf(m, "%p", (void *)address);
  3856. }
  3857. static int leaks_show(struct seq_file *m, void *p)
  3858. {
  3859. struct kmem_cache *cachep = p;
  3860. struct slab *slabp;
  3861. struct kmem_list3 *l3;
  3862. const char *name;
  3863. unsigned long *n = m->private;
  3864. int node;
  3865. int i;
  3866. if (!(cachep->flags & SLAB_STORE_USER))
  3867. return 0;
  3868. if (!(cachep->flags & SLAB_RED_ZONE))
  3869. return 0;
  3870. /* OK, we can do it */
  3871. n[1] = 0;
  3872. for_each_online_node(node) {
  3873. l3 = cachep->nodelists[node];
  3874. if (!l3)
  3875. continue;
  3876. check_irq_on();
  3877. spin_lock_irq(&l3->list_lock);
  3878. list_for_each_entry(slabp, &l3->slabs_full, list)
  3879. handle_slab(n, cachep, slabp);
  3880. list_for_each_entry(slabp, &l3->slabs_partial, list)
  3881. handle_slab(n, cachep, slabp);
  3882. spin_unlock_irq(&l3->list_lock);
  3883. }
  3884. name = cachep->name;
  3885. if (n[0] == n[1]) {
  3886. /* Increase the buffer size */
  3887. mutex_unlock(&cache_chain_mutex);
  3888. m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
  3889. if (!m->private) {
  3890. /* Too bad, we are really out */
  3891. m->private = n;
  3892. mutex_lock(&cache_chain_mutex);
  3893. return -ENOMEM;
  3894. }
  3895. *(unsigned long *)m->private = n[0] * 2;
  3896. kfree(n);
  3897. mutex_lock(&cache_chain_mutex);
  3898. /* Now make sure this entry will be retried */
  3899. m->count = m->size;
  3900. return 0;
  3901. }
  3902. for (i = 0; i < n[1]; i++) {
  3903. seq_printf(m, "%s: %lu ", name, n[2*i+3]);
  3904. show_symbol(m, n[2*i+2]);
  3905. seq_putc(m, '\n');
  3906. }
  3907. return 0;
  3908. }
  3909. const struct seq_operations slabstats_op = {
  3910. .start = leaks_start,
  3911. .next = s_next,
  3912. .stop = s_stop,
  3913. .show = leaks_show,
  3914. };
  3915. #endif
  3916. #endif
  3917. /**
  3918. * ksize - get the actual amount of memory allocated for a given object
  3919. * @objp: Pointer to the object
  3920. *
  3921. * kmalloc may internally round up allocations and return more memory
  3922. * than requested. ksize() can be used to determine the actual amount of
  3923. * memory allocated. The caller may use this additional memory, even though
  3924. * a smaller amount of memory was initially specified with the kmalloc call.
  3925. * The caller must guarantee that objp points to a valid object previously
  3926. * allocated with either kmalloc() or kmem_cache_alloc(). The object
  3927. * must not be freed during the duration of the call.
  3928. */
  3929. unsigned int ksize(const void *objp)
  3930. {
  3931. if (unlikely(objp == NULL))
  3932. return 0;
  3933. return obj_size(virt_to_cache(objp));
  3934. }