slab.c 115 KB

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