slub.c 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515
  1. /*
  2. * SLUB: A slab allocator that limits cache line use instead of queuing
  3. * objects in per cpu and per node lists.
  4. *
  5. * The allocator synchronizes using per slab locks and only
  6. * uses a centralized lock to manage a pool of partial slabs.
  7. *
  8. * (C) 2007 SGI, Christoph Lameter
  9. */
  10. #include <linux/mm.h>
  11. #include <linux/module.h>
  12. #include <linux/bit_spinlock.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/bitops.h>
  15. #include <linux/slab.h>
  16. #include <linux/proc_fs.h>
  17. #include <linux/seq_file.h>
  18. #include <linux/cpu.h>
  19. #include <linux/cpuset.h>
  20. #include <linux/mempolicy.h>
  21. #include <linux/ctype.h>
  22. #include <linux/debugobjects.h>
  23. #include <linux/kallsyms.h>
  24. #include <linux/memory.h>
  25. #include <linux/math64.h>
  26. /*
  27. * Lock order:
  28. * 1. slab_lock(page)
  29. * 2. slab->list_lock
  30. *
  31. * The slab_lock protects operations on the object of a particular
  32. * slab and its metadata in the page struct. If the slab lock
  33. * has been taken then no allocations nor frees can be performed
  34. * on the objects in the slab nor can the slab be added or removed
  35. * from the partial or full lists since this would mean modifying
  36. * the page_struct of the slab.
  37. *
  38. * The list_lock protects the partial and full list on each node and
  39. * the partial slab counter. If taken then no new slabs may be added or
  40. * removed from the lists nor make the number of partial slabs be modified.
  41. * (Note that the total number of slabs is an atomic value that may be
  42. * modified without taking the list lock).
  43. *
  44. * The list_lock is a centralized lock and thus we avoid taking it as
  45. * much as possible. As long as SLUB does not have to handle partial
  46. * slabs, operations can continue without any centralized lock. F.e.
  47. * allocating a long series of objects that fill up slabs does not require
  48. * the list lock.
  49. *
  50. * The lock order is sometimes inverted when we are trying to get a slab
  51. * off a list. We take the list_lock and then look for a page on the list
  52. * to use. While we do that objects in the slabs may be freed. We can
  53. * only operate on the slab if we have also taken the slab_lock. So we use
  54. * a slab_trylock() on the slab. If trylock was successful then no frees
  55. * can occur anymore and we can use the slab for allocations etc. If the
  56. * slab_trylock() does not succeed then frees are in progress in the slab and
  57. * we must stay away from it for a while since we may cause a bouncing
  58. * cacheline if we try to acquire the lock. So go onto the next slab.
  59. * If all pages are busy then we may allocate a new slab instead of reusing
  60. * a partial slab. A new slab has noone operating on it and thus there is
  61. * no danger of cacheline contention.
  62. *
  63. * Interrupts are disabled during allocation and deallocation in order to
  64. * make the slab allocator safe to use in the context of an irq. In addition
  65. * interrupts are disabled to ensure that the processor does not change
  66. * while handling per_cpu slabs, due to kernel preemption.
  67. *
  68. * SLUB assigns one slab for allocation to each processor.
  69. * Allocations only occur from these slabs called cpu slabs.
  70. *
  71. * Slabs with free elements are kept on a partial list and during regular
  72. * operations no list for full slabs is used. If an object in a full slab is
  73. * freed then the slab will show up again on the partial lists.
  74. * We track full slabs for debugging purposes though because otherwise we
  75. * cannot scan all objects.
  76. *
  77. * Slabs are freed when they become empty. Teardown and setup is
  78. * minimal so we rely on the page allocators per cpu caches for
  79. * fast frees and allocs.
  80. *
  81. * Overloading of page flags that are otherwise used for LRU management.
  82. *
  83. * PageActive The slab is frozen and exempt from list processing.
  84. * This means that the slab is dedicated to a purpose
  85. * such as satisfying allocations for a specific
  86. * processor. Objects may be freed in the slab while
  87. * it is frozen but slab_free will then skip the usual
  88. * list operations. It is up to the processor holding
  89. * the slab to integrate the slab into the slab lists
  90. * when the slab is no longer needed.
  91. *
  92. * One use of this flag is to mark slabs that are
  93. * used for allocations. Then such a slab becomes a cpu
  94. * slab. The cpu slab may be equipped with an additional
  95. * freelist that allows lockless access to
  96. * free objects in addition to the regular freelist
  97. * that requires the slab lock.
  98. *
  99. * PageError Slab requires special handling due to debug
  100. * options set. This moves slab handling out of
  101. * the fast path and disables lockless freelists.
  102. */
  103. #ifdef CONFIG_SLUB_DEBUG
  104. #define SLABDEBUG 1
  105. #else
  106. #define SLABDEBUG 0
  107. #endif
  108. /*
  109. * Issues still to be resolved:
  110. *
  111. * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
  112. *
  113. * - Variable sizing of the per node arrays
  114. */
  115. /* Enable to test recovery from slab corruption on boot */
  116. #undef SLUB_RESILIENCY_TEST
  117. /*
  118. * Mininum number of partial slabs. These will be left on the partial
  119. * lists even if they are empty. kmem_cache_shrink may reclaim them.
  120. */
  121. #define MIN_PARTIAL 5
  122. /*
  123. * Maximum number of desirable partial slabs.
  124. * The existence of more partial slabs makes kmem_cache_shrink
  125. * sort the partial list by the number of objects in the.
  126. */
  127. #define MAX_PARTIAL 10
  128. #define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
  129. SLAB_POISON | SLAB_STORE_USER)
  130. /*
  131. * Set of flags that will prevent slab merging
  132. */
  133. #define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
  134. SLAB_TRACE | SLAB_DESTROY_BY_RCU)
  135. #define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
  136. SLAB_CACHE_DMA)
  137. #ifndef ARCH_KMALLOC_MINALIGN
  138. #define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
  139. #endif
  140. #ifndef ARCH_SLAB_MINALIGN
  141. #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
  142. #endif
  143. /* Internal SLUB flags */
  144. #define __OBJECT_POISON 0x80000000 /* Poison object */
  145. #define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
  146. static int kmem_size = sizeof(struct kmem_cache);
  147. #ifdef CONFIG_SMP
  148. static struct notifier_block slab_notifier;
  149. #endif
  150. static enum {
  151. DOWN, /* No slab functionality available */
  152. PARTIAL, /* kmem_cache_open() works but kmalloc does not */
  153. UP, /* Everything works but does not show up in sysfs */
  154. SYSFS /* Sysfs up */
  155. } slab_state = DOWN;
  156. /* A list of all slab caches on the system */
  157. static DECLARE_RWSEM(slub_lock);
  158. static LIST_HEAD(slab_caches);
  159. /*
  160. * Tracking user of a slab.
  161. */
  162. struct track {
  163. void *addr; /* Called from address */
  164. int cpu; /* Was running on cpu */
  165. int pid; /* Pid context */
  166. unsigned long when; /* When did the operation occur */
  167. };
  168. enum track_item { TRACK_ALLOC, TRACK_FREE };
  169. #ifdef CONFIG_SLUB_DEBUG
  170. static int sysfs_slab_add(struct kmem_cache *);
  171. static int sysfs_slab_alias(struct kmem_cache *, const char *);
  172. static void sysfs_slab_remove(struct kmem_cache *);
  173. #else
  174. static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
  175. static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
  176. { return 0; }
  177. static inline void sysfs_slab_remove(struct kmem_cache *s)
  178. {
  179. kfree(s);
  180. }
  181. #endif
  182. static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
  183. {
  184. #ifdef CONFIG_SLUB_STATS
  185. c->stat[si]++;
  186. #endif
  187. }
  188. /********************************************************************
  189. * Core slab cache functions
  190. *******************************************************************/
  191. int slab_is_available(void)
  192. {
  193. return slab_state >= UP;
  194. }
  195. static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
  196. {
  197. #ifdef CONFIG_NUMA
  198. return s->node[node];
  199. #else
  200. return &s->local_node;
  201. #endif
  202. }
  203. static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
  204. {
  205. #ifdef CONFIG_SMP
  206. return s->cpu_slab[cpu];
  207. #else
  208. return &s->cpu_slab;
  209. #endif
  210. }
  211. /* Verify that a pointer has an address that is valid within a slab page */
  212. static inline int check_valid_pointer(struct kmem_cache *s,
  213. struct page *page, const void *object)
  214. {
  215. void *base;
  216. if (!object)
  217. return 1;
  218. base = page_address(page);
  219. if (object < base || object >= base + page->objects * s->size ||
  220. (object - base) % s->size) {
  221. return 0;
  222. }
  223. return 1;
  224. }
  225. /*
  226. * Slow version of get and set free pointer.
  227. *
  228. * This version requires touching the cache lines of kmem_cache which
  229. * we avoid to do in the fast alloc free paths. There we obtain the offset
  230. * from the page struct.
  231. */
  232. static inline void *get_freepointer(struct kmem_cache *s, void *object)
  233. {
  234. return *(void **)(object + s->offset);
  235. }
  236. static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
  237. {
  238. *(void **)(object + s->offset) = fp;
  239. }
  240. /* Loop over all objects in a slab */
  241. #define for_each_object(__p, __s, __addr, __objects) \
  242. for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
  243. __p += (__s)->size)
  244. /* Scan freelist */
  245. #define for_each_free_object(__p, __s, __free) \
  246. for (__p = (__free); __p; __p = get_freepointer((__s), __p))
  247. /* Determine object index from a given position */
  248. static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
  249. {
  250. return (p - addr) / s->size;
  251. }
  252. static inline struct kmem_cache_order_objects oo_make(int order,
  253. unsigned long size)
  254. {
  255. struct kmem_cache_order_objects x = {
  256. (order << 16) + (PAGE_SIZE << order) / size
  257. };
  258. return x;
  259. }
  260. static inline int oo_order(struct kmem_cache_order_objects x)
  261. {
  262. return x.x >> 16;
  263. }
  264. static inline int oo_objects(struct kmem_cache_order_objects x)
  265. {
  266. return x.x & ((1 << 16) - 1);
  267. }
  268. #ifdef CONFIG_SLUB_DEBUG
  269. /*
  270. * Debug settings:
  271. */
  272. #ifdef CONFIG_SLUB_DEBUG_ON
  273. static int slub_debug = DEBUG_DEFAULT_FLAGS;
  274. #else
  275. static int slub_debug;
  276. #endif
  277. static char *slub_debug_slabs;
  278. /*
  279. * Object debugging
  280. */
  281. static void print_section(char *text, u8 *addr, unsigned int length)
  282. {
  283. int i, offset;
  284. int newline = 1;
  285. char ascii[17];
  286. ascii[16] = 0;
  287. for (i = 0; i < length; i++) {
  288. if (newline) {
  289. printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
  290. newline = 0;
  291. }
  292. printk(KERN_CONT " %02x", addr[i]);
  293. offset = i % 16;
  294. ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
  295. if (offset == 15) {
  296. printk(KERN_CONT " %s\n", ascii);
  297. newline = 1;
  298. }
  299. }
  300. if (!newline) {
  301. i %= 16;
  302. while (i < 16) {
  303. printk(KERN_CONT " ");
  304. ascii[i] = ' ';
  305. i++;
  306. }
  307. printk(KERN_CONT " %s\n", ascii);
  308. }
  309. }
  310. static struct track *get_track(struct kmem_cache *s, void *object,
  311. enum track_item alloc)
  312. {
  313. struct track *p;
  314. if (s->offset)
  315. p = object + s->offset + sizeof(void *);
  316. else
  317. p = object + s->inuse;
  318. return p + alloc;
  319. }
  320. static void set_track(struct kmem_cache *s, void *object,
  321. enum track_item alloc, void *addr)
  322. {
  323. struct track *p;
  324. if (s->offset)
  325. p = object + s->offset + sizeof(void *);
  326. else
  327. p = object + s->inuse;
  328. p += alloc;
  329. if (addr) {
  330. p->addr = addr;
  331. p->cpu = smp_processor_id();
  332. p->pid = current->pid;
  333. p->when = jiffies;
  334. } else
  335. memset(p, 0, sizeof(struct track));
  336. }
  337. static void init_tracking(struct kmem_cache *s, void *object)
  338. {
  339. if (!(s->flags & SLAB_STORE_USER))
  340. return;
  341. set_track(s, object, TRACK_FREE, NULL);
  342. set_track(s, object, TRACK_ALLOC, NULL);
  343. }
  344. static void print_track(const char *s, struct track *t)
  345. {
  346. if (!t->addr)
  347. return;
  348. printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
  349. s, t->addr, jiffies - t->when, t->cpu, t->pid);
  350. }
  351. static void print_tracking(struct kmem_cache *s, void *object)
  352. {
  353. if (!(s->flags & SLAB_STORE_USER))
  354. return;
  355. print_track("Allocated", get_track(s, object, TRACK_ALLOC));
  356. print_track("Freed", get_track(s, object, TRACK_FREE));
  357. }
  358. static void print_page_info(struct page *page)
  359. {
  360. printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
  361. page, page->objects, page->inuse, page->freelist, page->flags);
  362. }
  363. static void slab_bug(struct kmem_cache *s, char *fmt, ...)
  364. {
  365. va_list args;
  366. char buf[100];
  367. va_start(args, fmt);
  368. vsnprintf(buf, sizeof(buf), fmt, args);
  369. va_end(args);
  370. printk(KERN_ERR "========================================"
  371. "=====================================\n");
  372. printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
  373. printk(KERN_ERR "----------------------------------------"
  374. "-------------------------------------\n\n");
  375. }
  376. static void slab_fix(struct kmem_cache *s, char *fmt, ...)
  377. {
  378. va_list args;
  379. char buf[100];
  380. va_start(args, fmt);
  381. vsnprintf(buf, sizeof(buf), fmt, args);
  382. va_end(args);
  383. printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
  384. }
  385. static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
  386. {
  387. unsigned int off; /* Offset of last byte */
  388. u8 *addr = page_address(page);
  389. print_tracking(s, p);
  390. print_page_info(page);
  391. printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
  392. p, p - addr, get_freepointer(s, p));
  393. if (p > addr + 16)
  394. print_section("Bytes b4", p - 16, 16);
  395. print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
  396. if (s->flags & SLAB_RED_ZONE)
  397. print_section("Redzone", p + s->objsize,
  398. s->inuse - s->objsize);
  399. if (s->offset)
  400. off = s->offset + sizeof(void *);
  401. else
  402. off = s->inuse;
  403. if (s->flags & SLAB_STORE_USER)
  404. off += 2 * sizeof(struct track);
  405. if (off != s->size)
  406. /* Beginning of the filler is the free pointer */
  407. print_section("Padding", p + off, s->size - off);
  408. dump_stack();
  409. }
  410. static void object_err(struct kmem_cache *s, struct page *page,
  411. u8 *object, char *reason)
  412. {
  413. slab_bug(s, "%s", reason);
  414. print_trailer(s, page, object);
  415. }
  416. static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
  417. {
  418. va_list args;
  419. char buf[100];
  420. va_start(args, fmt);
  421. vsnprintf(buf, sizeof(buf), fmt, args);
  422. va_end(args);
  423. slab_bug(s, "%s", buf);
  424. print_page_info(page);
  425. dump_stack();
  426. }
  427. static void init_object(struct kmem_cache *s, void *object, int active)
  428. {
  429. u8 *p = object;
  430. if (s->flags & __OBJECT_POISON) {
  431. memset(p, POISON_FREE, s->objsize - 1);
  432. p[s->objsize - 1] = POISON_END;
  433. }
  434. if (s->flags & SLAB_RED_ZONE)
  435. memset(p + s->objsize,
  436. active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
  437. s->inuse - s->objsize);
  438. }
  439. static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
  440. {
  441. while (bytes) {
  442. if (*start != (u8)value)
  443. return start;
  444. start++;
  445. bytes--;
  446. }
  447. return NULL;
  448. }
  449. static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
  450. void *from, void *to)
  451. {
  452. slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
  453. memset(from, data, to - from);
  454. }
  455. static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
  456. u8 *object, char *what,
  457. u8 *start, unsigned int value, unsigned int bytes)
  458. {
  459. u8 *fault;
  460. u8 *end;
  461. fault = check_bytes(start, value, bytes);
  462. if (!fault)
  463. return 1;
  464. end = start + bytes;
  465. while (end > fault && end[-1] == value)
  466. end--;
  467. slab_bug(s, "%s overwritten", what);
  468. printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
  469. fault, end - 1, fault[0], value);
  470. print_trailer(s, page, object);
  471. restore_bytes(s, what, value, fault, end);
  472. return 0;
  473. }
  474. /*
  475. * Object layout:
  476. *
  477. * object address
  478. * Bytes of the object to be managed.
  479. * If the freepointer may overlay the object then the free
  480. * pointer is the first word of the object.
  481. *
  482. * Poisoning uses 0x6b (POISON_FREE) and the last byte is
  483. * 0xa5 (POISON_END)
  484. *
  485. * object + s->objsize
  486. * Padding to reach word boundary. This is also used for Redzoning.
  487. * Padding is extended by another word if Redzoning is enabled and
  488. * objsize == inuse.
  489. *
  490. * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
  491. * 0xcc (RED_ACTIVE) for objects in use.
  492. *
  493. * object + s->inuse
  494. * Meta data starts here.
  495. *
  496. * A. Free pointer (if we cannot overwrite object on free)
  497. * B. Tracking data for SLAB_STORE_USER
  498. * C. Padding to reach required alignment boundary or at mininum
  499. * one word if debugging is on to be able to detect writes
  500. * before the word boundary.
  501. *
  502. * Padding is done using 0x5a (POISON_INUSE)
  503. *
  504. * object + s->size
  505. * Nothing is used beyond s->size.
  506. *
  507. * If slabcaches are merged then the objsize and inuse boundaries are mostly
  508. * ignored. And therefore no slab options that rely on these boundaries
  509. * may be used with merged slabcaches.
  510. */
  511. static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
  512. {
  513. unsigned long off = s->inuse; /* The end of info */
  514. if (s->offset)
  515. /* Freepointer is placed after the object. */
  516. off += sizeof(void *);
  517. if (s->flags & SLAB_STORE_USER)
  518. /* We also have user information there */
  519. off += 2 * sizeof(struct track);
  520. if (s->size == off)
  521. return 1;
  522. return check_bytes_and_report(s, page, p, "Object padding",
  523. p + off, POISON_INUSE, s->size - off);
  524. }
  525. /* Check the pad bytes at the end of a slab page */
  526. static int slab_pad_check(struct kmem_cache *s, struct page *page)
  527. {
  528. u8 *start;
  529. u8 *fault;
  530. u8 *end;
  531. int length;
  532. int remainder;
  533. if (!(s->flags & SLAB_POISON))
  534. return 1;
  535. start = page_address(page);
  536. length = (PAGE_SIZE << compound_order(page));
  537. end = start + length;
  538. remainder = length % s->size;
  539. if (!remainder)
  540. return 1;
  541. fault = check_bytes(end - remainder, POISON_INUSE, remainder);
  542. if (!fault)
  543. return 1;
  544. while (end > fault && end[-1] == POISON_INUSE)
  545. end--;
  546. slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
  547. print_section("Padding", end - remainder, remainder);
  548. restore_bytes(s, "slab padding", POISON_INUSE, start, end);
  549. return 0;
  550. }
  551. static int check_object(struct kmem_cache *s, struct page *page,
  552. void *object, int active)
  553. {
  554. u8 *p = object;
  555. u8 *endobject = object + s->objsize;
  556. if (s->flags & SLAB_RED_ZONE) {
  557. unsigned int red =
  558. active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
  559. if (!check_bytes_and_report(s, page, object, "Redzone",
  560. endobject, red, s->inuse - s->objsize))
  561. return 0;
  562. } else {
  563. if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
  564. check_bytes_and_report(s, page, p, "Alignment padding",
  565. endobject, POISON_INUSE, s->inuse - s->objsize);
  566. }
  567. }
  568. if (s->flags & SLAB_POISON) {
  569. if (!active && (s->flags & __OBJECT_POISON) &&
  570. (!check_bytes_and_report(s, page, p, "Poison", p,
  571. POISON_FREE, s->objsize - 1) ||
  572. !check_bytes_and_report(s, page, p, "Poison",
  573. p + s->objsize - 1, POISON_END, 1)))
  574. return 0;
  575. /*
  576. * check_pad_bytes cleans up on its own.
  577. */
  578. check_pad_bytes(s, page, p);
  579. }
  580. if (!s->offset && active)
  581. /*
  582. * Object and freepointer overlap. Cannot check
  583. * freepointer while object is allocated.
  584. */
  585. return 1;
  586. /* Check free pointer validity */
  587. if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
  588. object_err(s, page, p, "Freepointer corrupt");
  589. /*
  590. * No choice but to zap it and thus loose the remainder
  591. * of the free objects in this slab. May cause
  592. * another error because the object count is now wrong.
  593. */
  594. set_freepointer(s, p, NULL);
  595. return 0;
  596. }
  597. return 1;
  598. }
  599. static int check_slab(struct kmem_cache *s, struct page *page)
  600. {
  601. int maxobj;
  602. VM_BUG_ON(!irqs_disabled());
  603. if (!PageSlab(page)) {
  604. slab_err(s, page, "Not a valid slab page");
  605. return 0;
  606. }
  607. maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
  608. if (page->objects > maxobj) {
  609. slab_err(s, page, "objects %u > max %u",
  610. s->name, page->objects, maxobj);
  611. return 0;
  612. }
  613. if (page->inuse > page->objects) {
  614. slab_err(s, page, "inuse %u > max %u",
  615. s->name, page->inuse, page->objects);
  616. return 0;
  617. }
  618. /* Slab_pad_check fixes things up after itself */
  619. slab_pad_check(s, page);
  620. return 1;
  621. }
  622. /*
  623. * Determine if a certain object on a page is on the freelist. Must hold the
  624. * slab lock to guarantee that the chains are in a consistent state.
  625. */
  626. static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
  627. {
  628. int nr = 0;
  629. void *fp = page->freelist;
  630. void *object = NULL;
  631. unsigned long max_objects;
  632. while (fp && nr <= page->objects) {
  633. if (fp == search)
  634. return 1;
  635. if (!check_valid_pointer(s, page, fp)) {
  636. if (object) {
  637. object_err(s, page, object,
  638. "Freechain corrupt");
  639. set_freepointer(s, object, NULL);
  640. break;
  641. } else {
  642. slab_err(s, page, "Freepointer corrupt");
  643. page->freelist = NULL;
  644. page->inuse = page->objects;
  645. slab_fix(s, "Freelist cleared");
  646. return 0;
  647. }
  648. break;
  649. }
  650. object = fp;
  651. fp = get_freepointer(s, object);
  652. nr++;
  653. }
  654. max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
  655. if (max_objects > 65535)
  656. max_objects = 65535;
  657. if (page->objects != max_objects) {
  658. slab_err(s, page, "Wrong number of objects. Found %d but "
  659. "should be %d", page->objects, max_objects);
  660. page->objects = max_objects;
  661. slab_fix(s, "Number of objects adjusted.");
  662. }
  663. if (page->inuse != page->objects - nr) {
  664. slab_err(s, page, "Wrong object count. Counter is %d but "
  665. "counted were %d", page->inuse, page->objects - nr);
  666. page->inuse = page->objects - nr;
  667. slab_fix(s, "Object count adjusted.");
  668. }
  669. return search == NULL;
  670. }
  671. static void trace(struct kmem_cache *s, struct page *page, void *object,
  672. int alloc)
  673. {
  674. if (s->flags & SLAB_TRACE) {
  675. printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
  676. s->name,
  677. alloc ? "alloc" : "free",
  678. object, page->inuse,
  679. page->freelist);
  680. if (!alloc)
  681. print_section("Object", (void *)object, s->objsize);
  682. dump_stack();
  683. }
  684. }
  685. /*
  686. * Tracking of fully allocated slabs for debugging purposes.
  687. */
  688. static void add_full(struct kmem_cache_node *n, struct page *page)
  689. {
  690. spin_lock(&n->list_lock);
  691. list_add(&page->lru, &n->full);
  692. spin_unlock(&n->list_lock);
  693. }
  694. static void remove_full(struct kmem_cache *s, struct page *page)
  695. {
  696. struct kmem_cache_node *n;
  697. if (!(s->flags & SLAB_STORE_USER))
  698. return;
  699. n = get_node(s, page_to_nid(page));
  700. spin_lock(&n->list_lock);
  701. list_del(&page->lru);
  702. spin_unlock(&n->list_lock);
  703. }
  704. /* Tracking of the number of slabs for debugging purposes */
  705. static inline unsigned long slabs_node(struct kmem_cache *s, int node)
  706. {
  707. struct kmem_cache_node *n = get_node(s, node);
  708. return atomic_long_read(&n->nr_slabs);
  709. }
  710. static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
  711. {
  712. struct kmem_cache_node *n = get_node(s, node);
  713. /*
  714. * May be called early in order to allocate a slab for the
  715. * kmem_cache_node structure. Solve the chicken-egg
  716. * dilemma by deferring the increment of the count during
  717. * bootstrap (see early_kmem_cache_node_alloc).
  718. */
  719. if (!NUMA_BUILD || n) {
  720. atomic_long_inc(&n->nr_slabs);
  721. atomic_long_add(objects, &n->total_objects);
  722. }
  723. }
  724. static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
  725. {
  726. struct kmem_cache_node *n = get_node(s, node);
  727. atomic_long_dec(&n->nr_slabs);
  728. atomic_long_sub(objects, &n->total_objects);
  729. }
  730. /* Object debug checks for alloc/free paths */
  731. static void setup_object_debug(struct kmem_cache *s, struct page *page,
  732. void *object)
  733. {
  734. if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
  735. return;
  736. init_object(s, object, 0);
  737. init_tracking(s, object);
  738. }
  739. static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
  740. void *object, void *addr)
  741. {
  742. if (!check_slab(s, page))
  743. goto bad;
  744. if (!on_freelist(s, page, object)) {
  745. object_err(s, page, object, "Object already allocated");
  746. goto bad;
  747. }
  748. if (!check_valid_pointer(s, page, object)) {
  749. object_err(s, page, object, "Freelist Pointer check fails");
  750. goto bad;
  751. }
  752. if (!check_object(s, page, object, 0))
  753. goto bad;
  754. /* Success perform special debug activities for allocs */
  755. if (s->flags & SLAB_STORE_USER)
  756. set_track(s, object, TRACK_ALLOC, addr);
  757. trace(s, page, object, 1);
  758. init_object(s, object, 1);
  759. return 1;
  760. bad:
  761. if (PageSlab(page)) {
  762. /*
  763. * If this is a slab page then lets do the best we can
  764. * to avoid issues in the future. Marking all objects
  765. * as used avoids touching the remaining objects.
  766. */
  767. slab_fix(s, "Marking all objects used");
  768. page->inuse = page->objects;
  769. page->freelist = NULL;
  770. }
  771. return 0;
  772. }
  773. static int free_debug_processing(struct kmem_cache *s, struct page *page,
  774. void *object, void *addr)
  775. {
  776. if (!check_slab(s, page))
  777. goto fail;
  778. if (!check_valid_pointer(s, page, object)) {
  779. slab_err(s, page, "Invalid object pointer 0x%p", object);
  780. goto fail;
  781. }
  782. if (on_freelist(s, page, object)) {
  783. object_err(s, page, object, "Object already free");
  784. goto fail;
  785. }
  786. if (!check_object(s, page, object, 1))
  787. return 0;
  788. if (unlikely(s != page->slab)) {
  789. if (!PageSlab(page)) {
  790. slab_err(s, page, "Attempt to free object(0x%p) "
  791. "outside of slab", object);
  792. } else if (!page->slab) {
  793. printk(KERN_ERR
  794. "SLUB <none>: no slab for object 0x%p.\n",
  795. object);
  796. dump_stack();
  797. } else
  798. object_err(s, page, object,
  799. "page slab pointer corrupt.");
  800. goto fail;
  801. }
  802. /* Special debug activities for freeing objects */
  803. if (!PageSlubFrozen(page) && !page->freelist)
  804. remove_full(s, page);
  805. if (s->flags & SLAB_STORE_USER)
  806. set_track(s, object, TRACK_FREE, addr);
  807. trace(s, page, object, 0);
  808. init_object(s, object, 0);
  809. return 1;
  810. fail:
  811. slab_fix(s, "Object at 0x%p not freed", object);
  812. return 0;
  813. }
  814. static int __init setup_slub_debug(char *str)
  815. {
  816. slub_debug = DEBUG_DEFAULT_FLAGS;
  817. if (*str++ != '=' || !*str)
  818. /*
  819. * No options specified. Switch on full debugging.
  820. */
  821. goto out;
  822. if (*str == ',')
  823. /*
  824. * No options but restriction on slabs. This means full
  825. * debugging for slabs matching a pattern.
  826. */
  827. goto check_slabs;
  828. slub_debug = 0;
  829. if (*str == '-')
  830. /*
  831. * Switch off all debugging measures.
  832. */
  833. goto out;
  834. /*
  835. * Determine which debug features should be switched on
  836. */
  837. for (; *str && *str != ','; str++) {
  838. switch (tolower(*str)) {
  839. case 'f':
  840. slub_debug |= SLAB_DEBUG_FREE;
  841. break;
  842. case 'z':
  843. slub_debug |= SLAB_RED_ZONE;
  844. break;
  845. case 'p':
  846. slub_debug |= SLAB_POISON;
  847. break;
  848. case 'u':
  849. slub_debug |= SLAB_STORE_USER;
  850. break;
  851. case 't':
  852. slub_debug |= SLAB_TRACE;
  853. break;
  854. default:
  855. printk(KERN_ERR "slub_debug option '%c' "
  856. "unknown. skipped\n", *str);
  857. }
  858. }
  859. check_slabs:
  860. if (*str == ',')
  861. slub_debug_slabs = str + 1;
  862. out:
  863. return 1;
  864. }
  865. __setup("slub_debug", setup_slub_debug);
  866. static unsigned long kmem_cache_flags(unsigned long objsize,
  867. unsigned long flags, const char *name,
  868. void (*ctor)(void *))
  869. {
  870. /*
  871. * Enable debugging if selected on the kernel commandline.
  872. */
  873. if (slub_debug && (!slub_debug_slabs ||
  874. strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
  875. flags |= slub_debug;
  876. return flags;
  877. }
  878. #else
  879. static inline void setup_object_debug(struct kmem_cache *s,
  880. struct page *page, void *object) {}
  881. static inline int alloc_debug_processing(struct kmem_cache *s,
  882. struct page *page, void *object, void *addr) { return 0; }
  883. static inline int free_debug_processing(struct kmem_cache *s,
  884. struct page *page, void *object, void *addr) { return 0; }
  885. static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
  886. { return 1; }
  887. static inline int check_object(struct kmem_cache *s, struct page *page,
  888. void *object, int active) { return 1; }
  889. static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
  890. static inline unsigned long kmem_cache_flags(unsigned long objsize,
  891. unsigned long flags, const char *name,
  892. void (*ctor)(void *))
  893. {
  894. return flags;
  895. }
  896. #define slub_debug 0
  897. static inline unsigned long slabs_node(struct kmem_cache *s, int node)
  898. { return 0; }
  899. static inline void inc_slabs_node(struct kmem_cache *s, int node,
  900. int objects) {}
  901. static inline void dec_slabs_node(struct kmem_cache *s, int node,
  902. int objects) {}
  903. #endif
  904. /*
  905. * Slab allocation and freeing
  906. */
  907. static inline struct page *alloc_slab_page(gfp_t flags, int node,
  908. struct kmem_cache_order_objects oo)
  909. {
  910. int order = oo_order(oo);
  911. if (node == -1)
  912. return alloc_pages(flags, order);
  913. else
  914. return alloc_pages_node(node, flags, order);
  915. }
  916. static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
  917. {
  918. struct page *page;
  919. struct kmem_cache_order_objects oo = s->oo;
  920. flags |= s->allocflags;
  921. page = alloc_slab_page(flags | __GFP_NOWARN | __GFP_NORETRY, node,
  922. oo);
  923. if (unlikely(!page)) {
  924. oo = s->min;
  925. /*
  926. * Allocation may have failed due to fragmentation.
  927. * Try a lower order alloc if possible
  928. */
  929. page = alloc_slab_page(flags, node, oo);
  930. if (!page)
  931. return NULL;
  932. stat(get_cpu_slab(s, raw_smp_processor_id()), ORDER_FALLBACK);
  933. }
  934. page->objects = oo_objects(oo);
  935. mod_zone_page_state(page_zone(page),
  936. (s->flags & SLAB_RECLAIM_ACCOUNT) ?
  937. NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
  938. 1 << oo_order(oo));
  939. return page;
  940. }
  941. static void setup_object(struct kmem_cache *s, struct page *page,
  942. void *object)
  943. {
  944. setup_object_debug(s, page, object);
  945. if (unlikely(s->ctor))
  946. s->ctor(object);
  947. }
  948. static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
  949. {
  950. struct page *page;
  951. void *start;
  952. void *last;
  953. void *p;
  954. BUG_ON(flags & GFP_SLAB_BUG_MASK);
  955. page = allocate_slab(s,
  956. flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
  957. if (!page)
  958. goto out;
  959. inc_slabs_node(s, page_to_nid(page), page->objects);
  960. page->slab = s;
  961. page->flags |= 1 << PG_slab;
  962. if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
  963. SLAB_STORE_USER | SLAB_TRACE))
  964. __SetPageSlubDebug(page);
  965. start = page_address(page);
  966. if (unlikely(s->flags & SLAB_POISON))
  967. memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
  968. last = start;
  969. for_each_object(p, s, start, page->objects) {
  970. setup_object(s, page, last);
  971. set_freepointer(s, last, p);
  972. last = p;
  973. }
  974. setup_object(s, page, last);
  975. set_freepointer(s, last, NULL);
  976. page->freelist = start;
  977. page->inuse = 0;
  978. out:
  979. return page;
  980. }
  981. static void __free_slab(struct kmem_cache *s, struct page *page)
  982. {
  983. int order = compound_order(page);
  984. int pages = 1 << order;
  985. if (unlikely(SLABDEBUG && PageSlubDebug(page))) {
  986. void *p;
  987. slab_pad_check(s, page);
  988. for_each_object(p, s, page_address(page),
  989. page->objects)
  990. check_object(s, page, p, 0);
  991. __ClearPageSlubDebug(page);
  992. }
  993. mod_zone_page_state(page_zone(page),
  994. (s->flags & SLAB_RECLAIM_ACCOUNT) ?
  995. NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
  996. -pages);
  997. __ClearPageSlab(page);
  998. reset_page_mapcount(page);
  999. __free_pages(page, order);
  1000. }
  1001. static void rcu_free_slab(struct rcu_head *h)
  1002. {
  1003. struct page *page;
  1004. page = container_of((struct list_head *)h, struct page, lru);
  1005. __free_slab(page->slab, page);
  1006. }
  1007. static void free_slab(struct kmem_cache *s, struct page *page)
  1008. {
  1009. if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
  1010. /*
  1011. * RCU free overloads the RCU head over the LRU
  1012. */
  1013. struct rcu_head *head = (void *)&page->lru;
  1014. call_rcu(head, rcu_free_slab);
  1015. } else
  1016. __free_slab(s, page);
  1017. }
  1018. static void discard_slab(struct kmem_cache *s, struct page *page)
  1019. {
  1020. dec_slabs_node(s, page_to_nid(page), page->objects);
  1021. free_slab(s, page);
  1022. }
  1023. /*
  1024. * Per slab locking using the pagelock
  1025. */
  1026. static __always_inline void slab_lock(struct page *page)
  1027. {
  1028. bit_spin_lock(PG_locked, &page->flags);
  1029. }
  1030. static __always_inline void slab_unlock(struct page *page)
  1031. {
  1032. __bit_spin_unlock(PG_locked, &page->flags);
  1033. }
  1034. static __always_inline int slab_trylock(struct page *page)
  1035. {
  1036. int rc = 1;
  1037. rc = bit_spin_trylock(PG_locked, &page->flags);
  1038. return rc;
  1039. }
  1040. /*
  1041. * Management of partially allocated slabs
  1042. */
  1043. static void add_partial(struct kmem_cache_node *n,
  1044. struct page *page, int tail)
  1045. {
  1046. spin_lock(&n->list_lock);
  1047. n->nr_partial++;
  1048. if (tail)
  1049. list_add_tail(&page->lru, &n->partial);
  1050. else
  1051. list_add(&page->lru, &n->partial);
  1052. spin_unlock(&n->list_lock);
  1053. }
  1054. static void remove_partial(struct kmem_cache *s, struct page *page)
  1055. {
  1056. struct kmem_cache_node *n = get_node(s, page_to_nid(page));
  1057. spin_lock(&n->list_lock);
  1058. list_del(&page->lru);
  1059. n->nr_partial--;
  1060. spin_unlock(&n->list_lock);
  1061. }
  1062. /*
  1063. * Lock slab and remove from the partial list.
  1064. *
  1065. * Must hold list_lock.
  1066. */
  1067. static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
  1068. struct page *page)
  1069. {
  1070. if (slab_trylock(page)) {
  1071. list_del(&page->lru);
  1072. n->nr_partial--;
  1073. __SetPageSlubFrozen(page);
  1074. return 1;
  1075. }
  1076. return 0;
  1077. }
  1078. /*
  1079. * Try to allocate a partial slab from a specific node.
  1080. */
  1081. static struct page *get_partial_node(struct kmem_cache_node *n)
  1082. {
  1083. struct page *page;
  1084. /*
  1085. * Racy check. If we mistakenly see no partial slabs then we
  1086. * just allocate an empty slab. If we mistakenly try to get a
  1087. * partial slab and there is none available then get_partials()
  1088. * will return NULL.
  1089. */
  1090. if (!n || !n->nr_partial)
  1091. return NULL;
  1092. spin_lock(&n->list_lock);
  1093. list_for_each_entry(page, &n->partial, lru)
  1094. if (lock_and_freeze_slab(n, page))
  1095. goto out;
  1096. page = NULL;
  1097. out:
  1098. spin_unlock(&n->list_lock);
  1099. return page;
  1100. }
  1101. /*
  1102. * Get a page from somewhere. Search in increasing NUMA distances.
  1103. */
  1104. static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
  1105. {
  1106. #ifdef CONFIG_NUMA
  1107. struct zonelist *zonelist;
  1108. struct zoneref *z;
  1109. struct zone *zone;
  1110. enum zone_type high_zoneidx = gfp_zone(flags);
  1111. struct page *page;
  1112. /*
  1113. * The defrag ratio allows a configuration of the tradeoffs between
  1114. * inter node defragmentation and node local allocations. A lower
  1115. * defrag_ratio increases the tendency to do local allocations
  1116. * instead of attempting to obtain partial slabs from other nodes.
  1117. *
  1118. * If the defrag_ratio is set to 0 then kmalloc() always
  1119. * returns node local objects. If the ratio is higher then kmalloc()
  1120. * may return off node objects because partial slabs are obtained
  1121. * from other nodes and filled up.
  1122. *
  1123. * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
  1124. * defrag_ratio = 1000) then every (well almost) allocation will
  1125. * first attempt to defrag slab caches on other nodes. This means
  1126. * scanning over all nodes to look for partial slabs which may be
  1127. * expensive if we do it every time we are trying to find a slab
  1128. * with available objects.
  1129. */
  1130. if (!s->remote_node_defrag_ratio ||
  1131. get_cycles() % 1024 > s->remote_node_defrag_ratio)
  1132. return NULL;
  1133. zonelist = node_zonelist(slab_node(current->mempolicy), flags);
  1134. for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
  1135. struct kmem_cache_node *n;
  1136. n = get_node(s, zone_to_nid(zone));
  1137. if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
  1138. n->nr_partial > n->min_partial) {
  1139. page = get_partial_node(n);
  1140. if (page)
  1141. return page;
  1142. }
  1143. }
  1144. #endif
  1145. return NULL;
  1146. }
  1147. /*
  1148. * Get a partial page, lock it and return it.
  1149. */
  1150. static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
  1151. {
  1152. struct page *page;
  1153. int searchnode = (node == -1) ? numa_node_id() : node;
  1154. page = get_partial_node(get_node(s, searchnode));
  1155. if (page || (flags & __GFP_THISNODE))
  1156. return page;
  1157. return get_any_partial(s, flags);
  1158. }
  1159. /*
  1160. * Move a page back to the lists.
  1161. *
  1162. * Must be called with the slab lock held.
  1163. *
  1164. * On exit the slab lock will have been dropped.
  1165. */
  1166. static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
  1167. {
  1168. struct kmem_cache_node *n = get_node(s, page_to_nid(page));
  1169. struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
  1170. __ClearPageSlubFrozen(page);
  1171. if (page->inuse) {
  1172. if (page->freelist) {
  1173. add_partial(n, page, tail);
  1174. stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
  1175. } else {
  1176. stat(c, DEACTIVATE_FULL);
  1177. if (SLABDEBUG && PageSlubDebug(page) &&
  1178. (s->flags & SLAB_STORE_USER))
  1179. add_full(n, page);
  1180. }
  1181. slab_unlock(page);
  1182. } else {
  1183. stat(c, DEACTIVATE_EMPTY);
  1184. if (n->nr_partial < n->min_partial) {
  1185. /*
  1186. * Adding an empty slab to the partial slabs in order
  1187. * to avoid page allocator overhead. This slab needs
  1188. * to come after the other slabs with objects in
  1189. * so that the others get filled first. That way the
  1190. * size of the partial list stays small.
  1191. *
  1192. * kmem_cache_shrink can reclaim any empty slabs from
  1193. * the partial list.
  1194. */
  1195. add_partial(n, page, 1);
  1196. slab_unlock(page);
  1197. } else {
  1198. slab_unlock(page);
  1199. stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
  1200. discard_slab(s, page);
  1201. }
  1202. }
  1203. }
  1204. /*
  1205. * Remove the cpu slab
  1206. */
  1207. static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
  1208. {
  1209. struct page *page = c->page;
  1210. int tail = 1;
  1211. if (page->freelist)
  1212. stat(c, DEACTIVATE_REMOTE_FREES);
  1213. /*
  1214. * Merge cpu freelist into slab freelist. Typically we get here
  1215. * because both freelists are empty. So this is unlikely
  1216. * to occur.
  1217. */
  1218. while (unlikely(c->freelist)) {
  1219. void **object;
  1220. tail = 0; /* Hot objects. Put the slab first */
  1221. /* Retrieve object from cpu_freelist */
  1222. object = c->freelist;
  1223. c->freelist = c->freelist[c->offset];
  1224. /* And put onto the regular freelist */
  1225. object[c->offset] = page->freelist;
  1226. page->freelist = object;
  1227. page->inuse--;
  1228. }
  1229. c->page = NULL;
  1230. unfreeze_slab(s, page, tail);
  1231. }
  1232. static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
  1233. {
  1234. stat(c, CPUSLAB_FLUSH);
  1235. slab_lock(c->page);
  1236. deactivate_slab(s, c);
  1237. }
  1238. /*
  1239. * Flush cpu slab.
  1240. *
  1241. * Called from IPI handler with interrupts disabled.
  1242. */
  1243. static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
  1244. {
  1245. struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
  1246. if (likely(c && c->page))
  1247. flush_slab(s, c);
  1248. }
  1249. static void flush_cpu_slab(void *d)
  1250. {
  1251. struct kmem_cache *s = d;
  1252. __flush_cpu_slab(s, smp_processor_id());
  1253. }
  1254. static void flush_all(struct kmem_cache *s)
  1255. {
  1256. on_each_cpu(flush_cpu_slab, s, 1);
  1257. }
  1258. /*
  1259. * Check if the objects in a per cpu structure fit numa
  1260. * locality expectations.
  1261. */
  1262. static inline int node_match(struct kmem_cache_cpu *c, int node)
  1263. {
  1264. #ifdef CONFIG_NUMA
  1265. if (node != -1 && c->node != node)
  1266. return 0;
  1267. #endif
  1268. return 1;
  1269. }
  1270. /*
  1271. * Slow path. The lockless freelist is empty or we need to perform
  1272. * debugging duties.
  1273. *
  1274. * Interrupts are disabled.
  1275. *
  1276. * Processing is still very fast if new objects have been freed to the
  1277. * regular freelist. In that case we simply take over the regular freelist
  1278. * as the lockless freelist and zap the regular freelist.
  1279. *
  1280. * If that is not working then we fall back to the partial lists. We take the
  1281. * first element of the freelist as the object to allocate now and move the
  1282. * rest of the freelist to the lockless freelist.
  1283. *
  1284. * And if we were unable to get a new slab from the partial slab lists then
  1285. * we need to allocate a new slab. This is the slowest path since it involves
  1286. * a call to the page allocator and the setup of a new slab.
  1287. */
  1288. static void *__slab_alloc(struct kmem_cache *s,
  1289. gfp_t gfpflags, int node, void *addr, struct kmem_cache_cpu *c)
  1290. {
  1291. void **object;
  1292. struct page *new;
  1293. /* We handle __GFP_ZERO in the caller */
  1294. gfpflags &= ~__GFP_ZERO;
  1295. if (!c->page)
  1296. goto new_slab;
  1297. slab_lock(c->page);
  1298. if (unlikely(!node_match(c, node)))
  1299. goto another_slab;
  1300. stat(c, ALLOC_REFILL);
  1301. load_freelist:
  1302. object = c->page->freelist;
  1303. if (unlikely(!object))
  1304. goto another_slab;
  1305. if (unlikely(SLABDEBUG && PageSlubDebug(c->page)))
  1306. goto debug;
  1307. c->freelist = object[c->offset];
  1308. c->page->inuse = c->page->objects;
  1309. c->page->freelist = NULL;
  1310. c->node = page_to_nid(c->page);
  1311. unlock_out:
  1312. slab_unlock(c->page);
  1313. stat(c, ALLOC_SLOWPATH);
  1314. return object;
  1315. another_slab:
  1316. deactivate_slab(s, c);
  1317. new_slab:
  1318. new = get_partial(s, gfpflags, node);
  1319. if (new) {
  1320. c->page = new;
  1321. stat(c, ALLOC_FROM_PARTIAL);
  1322. goto load_freelist;
  1323. }
  1324. if (gfpflags & __GFP_WAIT)
  1325. local_irq_enable();
  1326. new = new_slab(s, gfpflags, node);
  1327. if (gfpflags & __GFP_WAIT)
  1328. local_irq_disable();
  1329. if (new) {
  1330. c = get_cpu_slab(s, smp_processor_id());
  1331. stat(c, ALLOC_SLAB);
  1332. if (c->page)
  1333. flush_slab(s, c);
  1334. slab_lock(new);
  1335. __SetPageSlubFrozen(new);
  1336. c->page = new;
  1337. goto load_freelist;
  1338. }
  1339. return NULL;
  1340. debug:
  1341. if (!alloc_debug_processing(s, c->page, object, addr))
  1342. goto another_slab;
  1343. c->page->inuse++;
  1344. c->page->freelist = object[c->offset];
  1345. c->node = -1;
  1346. goto unlock_out;
  1347. }
  1348. /*
  1349. * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
  1350. * have the fastpath folded into their functions. So no function call
  1351. * overhead for requests that can be satisfied on the fastpath.
  1352. *
  1353. * The fastpath works by first checking if the lockless freelist can be used.
  1354. * If not then __slab_alloc is called for slow processing.
  1355. *
  1356. * Otherwise we can simply pick the next object from the lockless free list.
  1357. */
  1358. static __always_inline void *slab_alloc(struct kmem_cache *s,
  1359. gfp_t gfpflags, int node, void *addr)
  1360. {
  1361. void **object;
  1362. struct kmem_cache_cpu *c;
  1363. unsigned long flags;
  1364. unsigned int objsize;
  1365. local_irq_save(flags);
  1366. c = get_cpu_slab(s, smp_processor_id());
  1367. objsize = c->objsize;
  1368. if (unlikely(!c->freelist || !node_match(c, node)))
  1369. object = __slab_alloc(s, gfpflags, node, addr, c);
  1370. else {
  1371. object = c->freelist;
  1372. c->freelist = object[c->offset];
  1373. stat(c, ALLOC_FASTPATH);
  1374. }
  1375. local_irq_restore(flags);
  1376. if (unlikely((gfpflags & __GFP_ZERO) && object))
  1377. memset(object, 0, objsize);
  1378. return object;
  1379. }
  1380. void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
  1381. {
  1382. return slab_alloc(s, gfpflags, -1, __builtin_return_address(0));
  1383. }
  1384. EXPORT_SYMBOL(kmem_cache_alloc);
  1385. #ifdef CONFIG_NUMA
  1386. void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
  1387. {
  1388. return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
  1389. }
  1390. EXPORT_SYMBOL(kmem_cache_alloc_node);
  1391. #endif
  1392. /*
  1393. * Slow patch handling. This may still be called frequently since objects
  1394. * have a longer lifetime than the cpu slabs in most processing loads.
  1395. *
  1396. * So we still attempt to reduce cache line usage. Just take the slab
  1397. * lock and free the item. If there is no additional partial page
  1398. * handling required then we can return immediately.
  1399. */
  1400. static void __slab_free(struct kmem_cache *s, struct page *page,
  1401. void *x, void *addr, unsigned int offset)
  1402. {
  1403. void *prior;
  1404. void **object = (void *)x;
  1405. struct kmem_cache_cpu *c;
  1406. c = get_cpu_slab(s, raw_smp_processor_id());
  1407. stat(c, FREE_SLOWPATH);
  1408. slab_lock(page);
  1409. if (unlikely(SLABDEBUG && PageSlubDebug(page)))
  1410. goto debug;
  1411. checks_ok:
  1412. prior = object[offset] = page->freelist;
  1413. page->freelist = object;
  1414. page->inuse--;
  1415. if (unlikely(PageSlubFrozen(page))) {
  1416. stat(c, FREE_FROZEN);
  1417. goto out_unlock;
  1418. }
  1419. if (unlikely(!page->inuse))
  1420. goto slab_empty;
  1421. /*
  1422. * Objects left in the slab. If it was not on the partial list before
  1423. * then add it.
  1424. */
  1425. if (unlikely(!prior)) {
  1426. add_partial(get_node(s, page_to_nid(page)), page, 1);
  1427. stat(c, FREE_ADD_PARTIAL);
  1428. }
  1429. out_unlock:
  1430. slab_unlock(page);
  1431. return;
  1432. slab_empty:
  1433. if (prior) {
  1434. /*
  1435. * Slab still on the partial list.
  1436. */
  1437. remove_partial(s, page);
  1438. stat(c, FREE_REMOVE_PARTIAL);
  1439. }
  1440. slab_unlock(page);
  1441. stat(c, FREE_SLAB);
  1442. discard_slab(s, page);
  1443. return;
  1444. debug:
  1445. if (!free_debug_processing(s, page, x, addr))
  1446. goto out_unlock;
  1447. goto checks_ok;
  1448. }
  1449. /*
  1450. * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
  1451. * can perform fastpath freeing without additional function calls.
  1452. *
  1453. * The fastpath is only possible if we are freeing to the current cpu slab
  1454. * of this processor. This typically the case if we have just allocated
  1455. * the item before.
  1456. *
  1457. * If fastpath is not possible then fall back to __slab_free where we deal
  1458. * with all sorts of special processing.
  1459. */
  1460. static __always_inline void slab_free(struct kmem_cache *s,
  1461. struct page *page, void *x, void *addr)
  1462. {
  1463. void **object = (void *)x;
  1464. struct kmem_cache_cpu *c;
  1465. unsigned long flags;
  1466. local_irq_save(flags);
  1467. c = get_cpu_slab(s, smp_processor_id());
  1468. debug_check_no_locks_freed(object, c->objsize);
  1469. if (!(s->flags & SLAB_DEBUG_OBJECTS))
  1470. debug_check_no_obj_freed(object, s->objsize);
  1471. if (likely(page == c->page && c->node >= 0)) {
  1472. object[c->offset] = c->freelist;
  1473. c->freelist = object;
  1474. stat(c, FREE_FASTPATH);
  1475. } else
  1476. __slab_free(s, page, x, addr, c->offset);
  1477. local_irq_restore(flags);
  1478. }
  1479. void kmem_cache_free(struct kmem_cache *s, void *x)
  1480. {
  1481. struct page *page;
  1482. page = virt_to_head_page(x);
  1483. slab_free(s, page, x, __builtin_return_address(0));
  1484. }
  1485. EXPORT_SYMBOL(kmem_cache_free);
  1486. /* Figure out on which slab object the object resides */
  1487. static struct page *get_object_page(const void *x)
  1488. {
  1489. struct page *page = virt_to_head_page(x);
  1490. if (!PageSlab(page))
  1491. return NULL;
  1492. return page;
  1493. }
  1494. /*
  1495. * Object placement in a slab is made very easy because we always start at
  1496. * offset 0. If we tune the size of the object to the alignment then we can
  1497. * get the required alignment by putting one properly sized object after
  1498. * another.
  1499. *
  1500. * Notice that the allocation order determines the sizes of the per cpu
  1501. * caches. Each processor has always one slab available for allocations.
  1502. * Increasing the allocation order reduces the number of times that slabs
  1503. * must be moved on and off the partial lists and is therefore a factor in
  1504. * locking overhead.
  1505. */
  1506. /*
  1507. * Mininum / Maximum order of slab pages. This influences locking overhead
  1508. * and slab fragmentation. A higher order reduces the number of partial slabs
  1509. * and increases the number of allocations possible without having to
  1510. * take the list_lock.
  1511. */
  1512. static int slub_min_order;
  1513. static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
  1514. static int slub_min_objects;
  1515. /*
  1516. * Merge control. If this is set then no merging of slab caches will occur.
  1517. * (Could be removed. This was introduced to pacify the merge skeptics.)
  1518. */
  1519. static int slub_nomerge;
  1520. /*
  1521. * Calculate the order of allocation given an slab object size.
  1522. *
  1523. * The order of allocation has significant impact on performance and other
  1524. * system components. Generally order 0 allocations should be preferred since
  1525. * order 0 does not cause fragmentation in the page allocator. Larger objects
  1526. * be problematic to put into order 0 slabs because there may be too much
  1527. * unused space left. We go to a higher order if more than 1/16th of the slab
  1528. * would be wasted.
  1529. *
  1530. * In order to reach satisfactory performance we must ensure that a minimum
  1531. * number of objects is in one slab. Otherwise we may generate too much
  1532. * activity on the partial lists which requires taking the list_lock. This is
  1533. * less a concern for large slabs though which are rarely used.
  1534. *
  1535. * slub_max_order specifies the order where we begin to stop considering the
  1536. * number of objects in a slab as critical. If we reach slub_max_order then
  1537. * we try to keep the page order as low as possible. So we accept more waste
  1538. * of space in favor of a small page order.
  1539. *
  1540. * Higher order allocations also allow the placement of more objects in a
  1541. * slab and thereby reduce object handling overhead. If the user has
  1542. * requested a higher mininum order then we start with that one instead of
  1543. * the smallest order which will fit the object.
  1544. */
  1545. static inline int slab_order(int size, int min_objects,
  1546. int max_order, int fract_leftover)
  1547. {
  1548. int order;
  1549. int rem;
  1550. int min_order = slub_min_order;
  1551. if ((PAGE_SIZE << min_order) / size > 65535)
  1552. return get_order(size * 65535) - 1;
  1553. for (order = max(min_order,
  1554. fls(min_objects * size - 1) - PAGE_SHIFT);
  1555. order <= max_order; order++) {
  1556. unsigned long slab_size = PAGE_SIZE << order;
  1557. if (slab_size < min_objects * size)
  1558. continue;
  1559. rem = slab_size % size;
  1560. if (rem <= slab_size / fract_leftover)
  1561. break;
  1562. }
  1563. return order;
  1564. }
  1565. static inline int calculate_order(int size)
  1566. {
  1567. int order;
  1568. int min_objects;
  1569. int fraction;
  1570. /*
  1571. * Attempt to find best configuration for a slab. This
  1572. * works by first attempting to generate a layout with
  1573. * the best configuration and backing off gradually.
  1574. *
  1575. * First we reduce the acceptable waste in a slab. Then
  1576. * we reduce the minimum objects required in a slab.
  1577. */
  1578. min_objects = slub_min_objects;
  1579. if (!min_objects)
  1580. min_objects = 4 * (fls(nr_cpu_ids) + 1);
  1581. while (min_objects > 1) {
  1582. fraction = 16;
  1583. while (fraction >= 4) {
  1584. order = slab_order(size, min_objects,
  1585. slub_max_order, fraction);
  1586. if (order <= slub_max_order)
  1587. return order;
  1588. fraction /= 2;
  1589. }
  1590. min_objects /= 2;
  1591. }
  1592. /*
  1593. * We were unable to place multiple objects in a slab. Now
  1594. * lets see if we can place a single object there.
  1595. */
  1596. order = slab_order(size, 1, slub_max_order, 1);
  1597. if (order <= slub_max_order)
  1598. return order;
  1599. /*
  1600. * Doh this slab cannot be placed using slub_max_order.
  1601. */
  1602. order = slab_order(size, 1, MAX_ORDER, 1);
  1603. if (order <= MAX_ORDER)
  1604. return order;
  1605. return -ENOSYS;
  1606. }
  1607. /*
  1608. * Figure out what the alignment of the objects will be.
  1609. */
  1610. static unsigned long calculate_alignment(unsigned long flags,
  1611. unsigned long align, unsigned long size)
  1612. {
  1613. /*
  1614. * If the user wants hardware cache aligned objects then follow that
  1615. * suggestion if the object is sufficiently large.
  1616. *
  1617. * The hardware cache alignment cannot override the specified
  1618. * alignment though. If that is greater then use it.
  1619. */
  1620. if (flags & SLAB_HWCACHE_ALIGN) {
  1621. unsigned long ralign = cache_line_size();
  1622. while (size <= ralign / 2)
  1623. ralign /= 2;
  1624. align = max(align, ralign);
  1625. }
  1626. if (align < ARCH_SLAB_MINALIGN)
  1627. align = ARCH_SLAB_MINALIGN;
  1628. return ALIGN(align, sizeof(void *));
  1629. }
  1630. static void init_kmem_cache_cpu(struct kmem_cache *s,
  1631. struct kmem_cache_cpu *c)
  1632. {
  1633. c->page = NULL;
  1634. c->freelist = NULL;
  1635. c->node = 0;
  1636. c->offset = s->offset / sizeof(void *);
  1637. c->objsize = s->objsize;
  1638. #ifdef CONFIG_SLUB_STATS
  1639. memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
  1640. #endif
  1641. }
  1642. static void
  1643. init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
  1644. {
  1645. n->nr_partial = 0;
  1646. /*
  1647. * The larger the object size is, the more pages we want on the partial
  1648. * list to avoid pounding the page allocator excessively.
  1649. */
  1650. n->min_partial = ilog2(s->size);
  1651. if (n->min_partial < MIN_PARTIAL)
  1652. n->min_partial = MIN_PARTIAL;
  1653. else if (n->min_partial > MAX_PARTIAL)
  1654. n->min_partial = MAX_PARTIAL;
  1655. spin_lock_init(&n->list_lock);
  1656. INIT_LIST_HEAD(&n->partial);
  1657. #ifdef CONFIG_SLUB_DEBUG
  1658. atomic_long_set(&n->nr_slabs, 0);
  1659. atomic_long_set(&n->total_objects, 0);
  1660. INIT_LIST_HEAD(&n->full);
  1661. #endif
  1662. }
  1663. #ifdef CONFIG_SMP
  1664. /*
  1665. * Per cpu array for per cpu structures.
  1666. *
  1667. * The per cpu array places all kmem_cache_cpu structures from one processor
  1668. * close together meaning that it becomes possible that multiple per cpu
  1669. * structures are contained in one cacheline. This may be particularly
  1670. * beneficial for the kmalloc caches.
  1671. *
  1672. * A desktop system typically has around 60-80 slabs. With 100 here we are
  1673. * likely able to get per cpu structures for all caches from the array defined
  1674. * here. We must be able to cover all kmalloc caches during bootstrap.
  1675. *
  1676. * If the per cpu array is exhausted then fall back to kmalloc
  1677. * of individual cachelines. No sharing is possible then.
  1678. */
  1679. #define NR_KMEM_CACHE_CPU 100
  1680. static DEFINE_PER_CPU(struct kmem_cache_cpu,
  1681. kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
  1682. static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
  1683. static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
  1684. static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s,
  1685. int cpu, gfp_t flags)
  1686. {
  1687. struct kmem_cache_cpu *c = per_cpu(kmem_cache_cpu_free, cpu);
  1688. if (c)
  1689. per_cpu(kmem_cache_cpu_free, cpu) =
  1690. (void *)c->freelist;
  1691. else {
  1692. /* Table overflow: So allocate ourselves */
  1693. c = kmalloc_node(
  1694. ALIGN(sizeof(struct kmem_cache_cpu), cache_line_size()),
  1695. flags, cpu_to_node(cpu));
  1696. if (!c)
  1697. return NULL;
  1698. }
  1699. init_kmem_cache_cpu(s, c);
  1700. return c;
  1701. }
  1702. static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu)
  1703. {
  1704. if (c < per_cpu(kmem_cache_cpu, cpu) ||
  1705. c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) {
  1706. kfree(c);
  1707. return;
  1708. }
  1709. c->freelist = (void *)per_cpu(kmem_cache_cpu_free, cpu);
  1710. per_cpu(kmem_cache_cpu_free, cpu) = c;
  1711. }
  1712. static void free_kmem_cache_cpus(struct kmem_cache *s)
  1713. {
  1714. int cpu;
  1715. for_each_online_cpu(cpu) {
  1716. struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
  1717. if (c) {
  1718. s->cpu_slab[cpu] = NULL;
  1719. free_kmem_cache_cpu(c, cpu);
  1720. }
  1721. }
  1722. }
  1723. static int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
  1724. {
  1725. int cpu;
  1726. for_each_online_cpu(cpu) {
  1727. struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
  1728. if (c)
  1729. continue;
  1730. c = alloc_kmem_cache_cpu(s, cpu, flags);
  1731. if (!c) {
  1732. free_kmem_cache_cpus(s);
  1733. return 0;
  1734. }
  1735. s->cpu_slab[cpu] = c;
  1736. }
  1737. return 1;
  1738. }
  1739. /*
  1740. * Initialize the per cpu array.
  1741. */
  1742. static void init_alloc_cpu_cpu(int cpu)
  1743. {
  1744. int i;
  1745. if (cpu_isset(cpu, kmem_cach_cpu_free_init_once))
  1746. return;
  1747. for (i = NR_KMEM_CACHE_CPU - 1; i >= 0; i--)
  1748. free_kmem_cache_cpu(&per_cpu(kmem_cache_cpu, cpu)[i], cpu);
  1749. cpu_set(cpu, kmem_cach_cpu_free_init_once);
  1750. }
  1751. static void __init init_alloc_cpu(void)
  1752. {
  1753. int cpu;
  1754. for_each_online_cpu(cpu)
  1755. init_alloc_cpu_cpu(cpu);
  1756. }
  1757. #else
  1758. static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
  1759. static inline void init_alloc_cpu(void) {}
  1760. static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
  1761. {
  1762. init_kmem_cache_cpu(s, &s->cpu_slab);
  1763. return 1;
  1764. }
  1765. #endif
  1766. #ifdef CONFIG_NUMA
  1767. /*
  1768. * No kmalloc_node yet so do it by hand. We know that this is the first
  1769. * slab on the node for this slabcache. There are no concurrent accesses
  1770. * possible.
  1771. *
  1772. * Note that this function only works on the kmalloc_node_cache
  1773. * when allocating for the kmalloc_node_cache. This is used for bootstrapping
  1774. * memory on a fresh node that has no slab structures yet.
  1775. */
  1776. static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
  1777. int node)
  1778. {
  1779. struct page *page;
  1780. struct kmem_cache_node *n;
  1781. unsigned long flags;
  1782. BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
  1783. page = new_slab(kmalloc_caches, gfpflags, node);
  1784. BUG_ON(!page);
  1785. if (page_to_nid(page) != node) {
  1786. printk(KERN_ERR "SLUB: Unable to allocate memory from "
  1787. "node %d\n", node);
  1788. printk(KERN_ERR "SLUB: Allocating a useless per node structure "
  1789. "in order to be able to continue\n");
  1790. }
  1791. n = page->freelist;
  1792. BUG_ON(!n);
  1793. page->freelist = get_freepointer(kmalloc_caches, n);
  1794. page->inuse++;
  1795. kmalloc_caches->node[node] = n;
  1796. #ifdef CONFIG_SLUB_DEBUG
  1797. init_object(kmalloc_caches, n, 1);
  1798. init_tracking(kmalloc_caches, n);
  1799. #endif
  1800. init_kmem_cache_node(n, kmalloc_caches);
  1801. inc_slabs_node(kmalloc_caches, node, page->objects);
  1802. /*
  1803. * lockdep requires consistent irq usage for each lock
  1804. * so even though there cannot be a race this early in
  1805. * the boot sequence, we still disable irqs.
  1806. */
  1807. local_irq_save(flags);
  1808. add_partial(n, page, 0);
  1809. local_irq_restore(flags);
  1810. return n;
  1811. }
  1812. static void free_kmem_cache_nodes(struct kmem_cache *s)
  1813. {
  1814. int node;
  1815. for_each_node_state(node, N_NORMAL_MEMORY) {
  1816. struct kmem_cache_node *n = s->node[node];
  1817. if (n && n != &s->local_node)
  1818. kmem_cache_free(kmalloc_caches, n);
  1819. s->node[node] = NULL;
  1820. }
  1821. }
  1822. static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
  1823. {
  1824. int node;
  1825. int local_node;
  1826. if (slab_state >= UP)
  1827. local_node = page_to_nid(virt_to_page(s));
  1828. else
  1829. local_node = 0;
  1830. for_each_node_state(node, N_NORMAL_MEMORY) {
  1831. struct kmem_cache_node *n;
  1832. if (local_node == node)
  1833. n = &s->local_node;
  1834. else {
  1835. if (slab_state == DOWN) {
  1836. n = early_kmem_cache_node_alloc(gfpflags,
  1837. node);
  1838. continue;
  1839. }
  1840. n = kmem_cache_alloc_node(kmalloc_caches,
  1841. gfpflags, node);
  1842. if (!n) {
  1843. free_kmem_cache_nodes(s);
  1844. return 0;
  1845. }
  1846. }
  1847. s->node[node] = n;
  1848. init_kmem_cache_node(n, s);
  1849. }
  1850. return 1;
  1851. }
  1852. #else
  1853. static void free_kmem_cache_nodes(struct kmem_cache *s)
  1854. {
  1855. }
  1856. static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
  1857. {
  1858. init_kmem_cache_node(&s->local_node, s);
  1859. return 1;
  1860. }
  1861. #endif
  1862. /*
  1863. * calculate_sizes() determines the order and the distribution of data within
  1864. * a slab object.
  1865. */
  1866. static int calculate_sizes(struct kmem_cache *s, int forced_order)
  1867. {
  1868. unsigned long flags = s->flags;
  1869. unsigned long size = s->objsize;
  1870. unsigned long align = s->align;
  1871. int order;
  1872. /*
  1873. * Round up object size to the next word boundary. We can only
  1874. * place the free pointer at word boundaries and this determines
  1875. * the possible location of the free pointer.
  1876. */
  1877. size = ALIGN(size, sizeof(void *));
  1878. #ifdef CONFIG_SLUB_DEBUG
  1879. /*
  1880. * Determine if we can poison the object itself. If the user of
  1881. * the slab may touch the object after free or before allocation
  1882. * then we should never poison the object itself.
  1883. */
  1884. if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
  1885. !s->ctor)
  1886. s->flags |= __OBJECT_POISON;
  1887. else
  1888. s->flags &= ~__OBJECT_POISON;
  1889. /*
  1890. * If we are Redzoning then check if there is some space between the
  1891. * end of the object and the free pointer. If not then add an
  1892. * additional word to have some bytes to store Redzone information.
  1893. */
  1894. if ((flags & SLAB_RED_ZONE) && size == s->objsize)
  1895. size += sizeof(void *);
  1896. #endif
  1897. /*
  1898. * With that we have determined the number of bytes in actual use
  1899. * by the object. This is the potential offset to the free pointer.
  1900. */
  1901. s->inuse = size;
  1902. if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
  1903. s->ctor)) {
  1904. /*
  1905. * Relocate free pointer after the object if it is not
  1906. * permitted to overwrite the first word of the object on
  1907. * kmem_cache_free.
  1908. *
  1909. * This is the case if we do RCU, have a constructor or
  1910. * destructor or are poisoning the objects.
  1911. */
  1912. s->offset = size;
  1913. size += sizeof(void *);
  1914. }
  1915. #ifdef CONFIG_SLUB_DEBUG
  1916. if (flags & SLAB_STORE_USER)
  1917. /*
  1918. * Need to store information about allocs and frees after
  1919. * the object.
  1920. */
  1921. size += 2 * sizeof(struct track);
  1922. if (flags & SLAB_RED_ZONE)
  1923. /*
  1924. * Add some empty padding so that we can catch
  1925. * overwrites from earlier objects rather than let
  1926. * tracking information or the free pointer be
  1927. * corrupted if an user writes before the start
  1928. * of the object.
  1929. */
  1930. size += sizeof(void *);
  1931. #endif
  1932. /*
  1933. * Determine the alignment based on various parameters that the
  1934. * user specified and the dynamic determination of cache line size
  1935. * on bootup.
  1936. */
  1937. align = calculate_alignment(flags, align, s->objsize);
  1938. /*
  1939. * SLUB stores one object immediately after another beginning from
  1940. * offset 0. In order to align the objects we have to simply size
  1941. * each object to conform to the alignment.
  1942. */
  1943. size = ALIGN(size, align);
  1944. s->size = size;
  1945. if (forced_order >= 0)
  1946. order = forced_order;
  1947. else
  1948. order = calculate_order(size);
  1949. if (order < 0)
  1950. return 0;
  1951. s->allocflags = 0;
  1952. if (order)
  1953. s->allocflags |= __GFP_COMP;
  1954. if (s->flags & SLAB_CACHE_DMA)
  1955. s->allocflags |= SLUB_DMA;
  1956. if (s->flags & SLAB_RECLAIM_ACCOUNT)
  1957. s->allocflags |= __GFP_RECLAIMABLE;
  1958. /*
  1959. * Determine the number of objects per slab
  1960. */
  1961. s->oo = oo_make(order, size);
  1962. s->min = oo_make(get_order(size), size);
  1963. if (oo_objects(s->oo) > oo_objects(s->max))
  1964. s->max = s->oo;
  1965. return !!oo_objects(s->oo);
  1966. }
  1967. static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
  1968. const char *name, size_t size,
  1969. size_t align, unsigned long flags,
  1970. void (*ctor)(void *))
  1971. {
  1972. memset(s, 0, kmem_size);
  1973. s->name = name;
  1974. s->ctor = ctor;
  1975. s->objsize = size;
  1976. s->align = align;
  1977. s->flags = kmem_cache_flags(size, flags, name, ctor);
  1978. if (!calculate_sizes(s, -1))
  1979. goto error;
  1980. s->refcount = 1;
  1981. #ifdef CONFIG_NUMA
  1982. s->remote_node_defrag_ratio = 1000;
  1983. #endif
  1984. if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
  1985. goto error;
  1986. if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
  1987. return 1;
  1988. free_kmem_cache_nodes(s);
  1989. error:
  1990. if (flags & SLAB_PANIC)
  1991. panic("Cannot create slab %s size=%lu realsize=%u "
  1992. "order=%u offset=%u flags=%lx\n",
  1993. s->name, (unsigned long)size, s->size, oo_order(s->oo),
  1994. s->offset, flags);
  1995. return 0;
  1996. }
  1997. /*
  1998. * Check if a given pointer is valid
  1999. */
  2000. int kmem_ptr_validate(struct kmem_cache *s, const void *object)
  2001. {
  2002. struct page *page;
  2003. page = get_object_page(object);
  2004. if (!page || s != page->slab)
  2005. /* No slab or wrong slab */
  2006. return 0;
  2007. if (!check_valid_pointer(s, page, object))
  2008. return 0;
  2009. /*
  2010. * We could also check if the object is on the slabs freelist.
  2011. * But this would be too expensive and it seems that the main
  2012. * purpose of kmem_ptr_valid() is to check if the object belongs
  2013. * to a certain slab.
  2014. */
  2015. return 1;
  2016. }
  2017. EXPORT_SYMBOL(kmem_ptr_validate);
  2018. /*
  2019. * Determine the size of a slab object
  2020. */
  2021. unsigned int kmem_cache_size(struct kmem_cache *s)
  2022. {
  2023. return s->objsize;
  2024. }
  2025. EXPORT_SYMBOL(kmem_cache_size);
  2026. const char *kmem_cache_name(struct kmem_cache *s)
  2027. {
  2028. return s->name;
  2029. }
  2030. EXPORT_SYMBOL(kmem_cache_name);
  2031. static void list_slab_objects(struct kmem_cache *s, struct page *page,
  2032. const char *text)
  2033. {
  2034. #ifdef CONFIG_SLUB_DEBUG
  2035. void *addr = page_address(page);
  2036. void *p;
  2037. DECLARE_BITMAP(map, page->objects);
  2038. bitmap_zero(map, page->objects);
  2039. slab_err(s, page, "%s", text);
  2040. slab_lock(page);
  2041. for_each_free_object(p, s, page->freelist)
  2042. set_bit(slab_index(p, s, addr), map);
  2043. for_each_object(p, s, addr, page->objects) {
  2044. if (!test_bit(slab_index(p, s, addr), map)) {
  2045. printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
  2046. p, p - addr);
  2047. print_tracking(s, p);
  2048. }
  2049. }
  2050. slab_unlock(page);
  2051. #endif
  2052. }
  2053. /*
  2054. * Attempt to free all partial slabs on a node.
  2055. */
  2056. static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
  2057. {
  2058. unsigned long flags;
  2059. struct page *page, *h;
  2060. spin_lock_irqsave(&n->list_lock, flags);
  2061. list_for_each_entry_safe(page, h, &n->partial, lru) {
  2062. if (!page->inuse) {
  2063. list_del(&page->lru);
  2064. discard_slab(s, page);
  2065. n->nr_partial--;
  2066. } else {
  2067. list_slab_objects(s, page,
  2068. "Objects remaining on kmem_cache_close()");
  2069. }
  2070. }
  2071. spin_unlock_irqrestore(&n->list_lock, flags);
  2072. }
  2073. /*
  2074. * Release all resources used by a slab cache.
  2075. */
  2076. static inline int kmem_cache_close(struct kmem_cache *s)
  2077. {
  2078. int node;
  2079. flush_all(s);
  2080. /* Attempt to free all objects */
  2081. free_kmem_cache_cpus(s);
  2082. for_each_node_state(node, N_NORMAL_MEMORY) {
  2083. struct kmem_cache_node *n = get_node(s, node);
  2084. free_partial(s, n);
  2085. if (n->nr_partial || slabs_node(s, node))
  2086. return 1;
  2087. }
  2088. free_kmem_cache_nodes(s);
  2089. return 0;
  2090. }
  2091. /*
  2092. * Close a cache and release the kmem_cache structure
  2093. * (must be used for caches created using kmem_cache_create)
  2094. */
  2095. void kmem_cache_destroy(struct kmem_cache *s)
  2096. {
  2097. down_write(&slub_lock);
  2098. s->refcount--;
  2099. if (!s->refcount) {
  2100. list_del(&s->list);
  2101. up_write(&slub_lock);
  2102. if (kmem_cache_close(s)) {
  2103. printk(KERN_ERR "SLUB %s: %s called for cache that "
  2104. "still has objects.\n", s->name, __func__);
  2105. dump_stack();
  2106. }
  2107. sysfs_slab_remove(s);
  2108. } else
  2109. up_write(&slub_lock);
  2110. }
  2111. EXPORT_SYMBOL(kmem_cache_destroy);
  2112. /********************************************************************
  2113. * Kmalloc subsystem
  2114. *******************************************************************/
  2115. struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
  2116. EXPORT_SYMBOL(kmalloc_caches);
  2117. static int __init setup_slub_min_order(char *str)
  2118. {
  2119. get_option(&str, &slub_min_order);
  2120. return 1;
  2121. }
  2122. __setup("slub_min_order=", setup_slub_min_order);
  2123. static int __init setup_slub_max_order(char *str)
  2124. {
  2125. get_option(&str, &slub_max_order);
  2126. return 1;
  2127. }
  2128. __setup("slub_max_order=", setup_slub_max_order);
  2129. static int __init setup_slub_min_objects(char *str)
  2130. {
  2131. get_option(&str, &slub_min_objects);
  2132. return 1;
  2133. }
  2134. __setup("slub_min_objects=", setup_slub_min_objects);
  2135. static int __init setup_slub_nomerge(char *str)
  2136. {
  2137. slub_nomerge = 1;
  2138. return 1;
  2139. }
  2140. __setup("slub_nomerge", setup_slub_nomerge);
  2141. static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
  2142. const char *name, int size, gfp_t gfp_flags)
  2143. {
  2144. unsigned int flags = 0;
  2145. if (gfp_flags & SLUB_DMA)
  2146. flags = SLAB_CACHE_DMA;
  2147. down_write(&slub_lock);
  2148. if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
  2149. flags, NULL))
  2150. goto panic;
  2151. list_add(&s->list, &slab_caches);
  2152. up_write(&slub_lock);
  2153. if (sysfs_slab_add(s))
  2154. goto panic;
  2155. return s;
  2156. panic:
  2157. panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
  2158. }
  2159. #ifdef CONFIG_ZONE_DMA
  2160. static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
  2161. static void sysfs_add_func(struct work_struct *w)
  2162. {
  2163. struct kmem_cache *s;
  2164. down_write(&slub_lock);
  2165. list_for_each_entry(s, &slab_caches, list) {
  2166. if (s->flags & __SYSFS_ADD_DEFERRED) {
  2167. s->flags &= ~__SYSFS_ADD_DEFERRED;
  2168. sysfs_slab_add(s);
  2169. }
  2170. }
  2171. up_write(&slub_lock);
  2172. }
  2173. static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
  2174. static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
  2175. {
  2176. struct kmem_cache *s;
  2177. char *text;
  2178. size_t realsize;
  2179. s = kmalloc_caches_dma[index];
  2180. if (s)
  2181. return s;
  2182. /* Dynamically create dma cache */
  2183. if (flags & __GFP_WAIT)
  2184. down_write(&slub_lock);
  2185. else {
  2186. if (!down_write_trylock(&slub_lock))
  2187. goto out;
  2188. }
  2189. if (kmalloc_caches_dma[index])
  2190. goto unlock_out;
  2191. realsize = kmalloc_caches[index].objsize;
  2192. text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
  2193. (unsigned int)realsize);
  2194. s = kmalloc(kmem_size, flags & ~SLUB_DMA);
  2195. if (!s || !text || !kmem_cache_open(s, flags, text,
  2196. realsize, ARCH_KMALLOC_MINALIGN,
  2197. SLAB_CACHE_DMA|__SYSFS_ADD_DEFERRED, NULL)) {
  2198. kfree(s);
  2199. kfree(text);
  2200. goto unlock_out;
  2201. }
  2202. list_add(&s->list, &slab_caches);
  2203. kmalloc_caches_dma[index] = s;
  2204. schedule_work(&sysfs_add_work);
  2205. unlock_out:
  2206. up_write(&slub_lock);
  2207. out:
  2208. return kmalloc_caches_dma[index];
  2209. }
  2210. #endif
  2211. /*
  2212. * Conversion table for small slabs sizes / 8 to the index in the
  2213. * kmalloc array. This is necessary for slabs < 192 since we have non power
  2214. * of two cache sizes there. The size of larger slabs can be determined using
  2215. * fls.
  2216. */
  2217. static s8 size_index[24] = {
  2218. 3, /* 8 */
  2219. 4, /* 16 */
  2220. 5, /* 24 */
  2221. 5, /* 32 */
  2222. 6, /* 40 */
  2223. 6, /* 48 */
  2224. 6, /* 56 */
  2225. 6, /* 64 */
  2226. 1, /* 72 */
  2227. 1, /* 80 */
  2228. 1, /* 88 */
  2229. 1, /* 96 */
  2230. 7, /* 104 */
  2231. 7, /* 112 */
  2232. 7, /* 120 */
  2233. 7, /* 128 */
  2234. 2, /* 136 */
  2235. 2, /* 144 */
  2236. 2, /* 152 */
  2237. 2, /* 160 */
  2238. 2, /* 168 */
  2239. 2, /* 176 */
  2240. 2, /* 184 */
  2241. 2 /* 192 */
  2242. };
  2243. static struct kmem_cache *get_slab(size_t size, gfp_t flags)
  2244. {
  2245. int index;
  2246. if (size <= 192) {
  2247. if (!size)
  2248. return ZERO_SIZE_PTR;
  2249. index = size_index[(size - 1) / 8];
  2250. } else
  2251. index = fls(size - 1);
  2252. #ifdef CONFIG_ZONE_DMA
  2253. if (unlikely((flags & SLUB_DMA)))
  2254. return dma_kmalloc_cache(index, flags);
  2255. #endif
  2256. return &kmalloc_caches[index];
  2257. }
  2258. void *__kmalloc(size_t size, gfp_t flags)
  2259. {
  2260. struct kmem_cache *s;
  2261. if (unlikely(size > PAGE_SIZE))
  2262. return kmalloc_large(size, flags);
  2263. s = get_slab(size, flags);
  2264. if (unlikely(ZERO_OR_NULL_PTR(s)))
  2265. return s;
  2266. return slab_alloc(s, flags, -1, __builtin_return_address(0));
  2267. }
  2268. EXPORT_SYMBOL(__kmalloc);
  2269. static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
  2270. {
  2271. struct page *page = alloc_pages_node(node, flags | __GFP_COMP,
  2272. get_order(size));
  2273. if (page)
  2274. return page_address(page);
  2275. else
  2276. return NULL;
  2277. }
  2278. #ifdef CONFIG_NUMA
  2279. void *__kmalloc_node(size_t size, gfp_t flags, int node)
  2280. {
  2281. struct kmem_cache *s;
  2282. if (unlikely(size > PAGE_SIZE))
  2283. return kmalloc_large_node(size, flags, node);
  2284. s = get_slab(size, flags);
  2285. if (unlikely(ZERO_OR_NULL_PTR(s)))
  2286. return s;
  2287. return slab_alloc(s, flags, node, __builtin_return_address(0));
  2288. }
  2289. EXPORT_SYMBOL(__kmalloc_node);
  2290. #endif
  2291. size_t ksize(const void *object)
  2292. {
  2293. struct page *page;
  2294. struct kmem_cache *s;
  2295. if (unlikely(object == ZERO_SIZE_PTR))
  2296. return 0;
  2297. page = virt_to_head_page(object);
  2298. if (unlikely(!PageSlab(page))) {
  2299. WARN_ON(!PageCompound(page));
  2300. return PAGE_SIZE << compound_order(page);
  2301. }
  2302. s = page->slab;
  2303. #ifdef CONFIG_SLUB_DEBUG
  2304. /*
  2305. * Debugging requires use of the padding between object
  2306. * and whatever may come after it.
  2307. */
  2308. if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
  2309. return s->objsize;
  2310. #endif
  2311. /*
  2312. * If we have the need to store the freelist pointer
  2313. * back there or track user information then we can
  2314. * only use the space before that information.
  2315. */
  2316. if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
  2317. return s->inuse;
  2318. /*
  2319. * Else we can use all the padding etc for the allocation
  2320. */
  2321. return s->size;
  2322. }
  2323. void kfree(const void *x)
  2324. {
  2325. struct page *page;
  2326. void *object = (void *)x;
  2327. if (unlikely(ZERO_OR_NULL_PTR(x)))
  2328. return;
  2329. page = virt_to_head_page(x);
  2330. if (unlikely(!PageSlab(page))) {
  2331. BUG_ON(!PageCompound(page));
  2332. put_page(page);
  2333. return;
  2334. }
  2335. slab_free(page->slab, page, object, __builtin_return_address(0));
  2336. }
  2337. EXPORT_SYMBOL(kfree);
  2338. /*
  2339. * kmem_cache_shrink removes empty slabs from the partial lists and sorts
  2340. * the remaining slabs by the number of items in use. The slabs with the
  2341. * most items in use come first. New allocations will then fill those up
  2342. * and thus they can be removed from the partial lists.
  2343. *
  2344. * The slabs with the least items are placed last. This results in them
  2345. * being allocated from last increasing the chance that the last objects
  2346. * are freed in them.
  2347. */
  2348. int kmem_cache_shrink(struct kmem_cache *s)
  2349. {
  2350. int node;
  2351. int i;
  2352. struct kmem_cache_node *n;
  2353. struct page *page;
  2354. struct page *t;
  2355. int objects = oo_objects(s->max);
  2356. struct list_head *slabs_by_inuse =
  2357. kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
  2358. unsigned long flags;
  2359. if (!slabs_by_inuse)
  2360. return -ENOMEM;
  2361. flush_all(s);
  2362. for_each_node_state(node, N_NORMAL_MEMORY) {
  2363. n = get_node(s, node);
  2364. if (!n->nr_partial)
  2365. continue;
  2366. for (i = 0; i < objects; i++)
  2367. INIT_LIST_HEAD(slabs_by_inuse + i);
  2368. spin_lock_irqsave(&n->list_lock, flags);
  2369. /*
  2370. * Build lists indexed by the items in use in each slab.
  2371. *
  2372. * Note that concurrent frees may occur while we hold the
  2373. * list_lock. page->inuse here is the upper limit.
  2374. */
  2375. list_for_each_entry_safe(page, t, &n->partial, lru) {
  2376. if (!page->inuse && slab_trylock(page)) {
  2377. /*
  2378. * Must hold slab lock here because slab_free
  2379. * may have freed the last object and be
  2380. * waiting to release the slab.
  2381. */
  2382. list_del(&page->lru);
  2383. n->nr_partial--;
  2384. slab_unlock(page);
  2385. discard_slab(s, page);
  2386. } else {
  2387. list_move(&page->lru,
  2388. slabs_by_inuse + page->inuse);
  2389. }
  2390. }
  2391. /*
  2392. * Rebuild the partial list with the slabs filled up most
  2393. * first and the least used slabs at the end.
  2394. */
  2395. for (i = objects - 1; i >= 0; i--)
  2396. list_splice(slabs_by_inuse + i, n->partial.prev);
  2397. spin_unlock_irqrestore(&n->list_lock, flags);
  2398. }
  2399. kfree(slabs_by_inuse);
  2400. return 0;
  2401. }
  2402. EXPORT_SYMBOL(kmem_cache_shrink);
  2403. #if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
  2404. static int slab_mem_going_offline_callback(void *arg)
  2405. {
  2406. struct kmem_cache *s;
  2407. down_read(&slub_lock);
  2408. list_for_each_entry(s, &slab_caches, list)
  2409. kmem_cache_shrink(s);
  2410. up_read(&slub_lock);
  2411. return 0;
  2412. }
  2413. static void slab_mem_offline_callback(void *arg)
  2414. {
  2415. struct kmem_cache_node *n;
  2416. struct kmem_cache *s;
  2417. struct memory_notify *marg = arg;
  2418. int offline_node;
  2419. offline_node = marg->status_change_nid;
  2420. /*
  2421. * If the node still has available memory. we need kmem_cache_node
  2422. * for it yet.
  2423. */
  2424. if (offline_node < 0)
  2425. return;
  2426. down_read(&slub_lock);
  2427. list_for_each_entry(s, &slab_caches, list) {
  2428. n = get_node(s, offline_node);
  2429. if (n) {
  2430. /*
  2431. * if n->nr_slabs > 0, slabs still exist on the node
  2432. * that is going down. We were unable to free them,
  2433. * and offline_pages() function shoudn't call this
  2434. * callback. So, we must fail.
  2435. */
  2436. BUG_ON(slabs_node(s, offline_node));
  2437. s->node[offline_node] = NULL;
  2438. kmem_cache_free(kmalloc_caches, n);
  2439. }
  2440. }
  2441. up_read(&slub_lock);
  2442. }
  2443. static int slab_mem_going_online_callback(void *arg)
  2444. {
  2445. struct kmem_cache_node *n;
  2446. struct kmem_cache *s;
  2447. struct memory_notify *marg = arg;
  2448. int nid = marg->status_change_nid;
  2449. int ret = 0;
  2450. /*
  2451. * If the node's memory is already available, then kmem_cache_node is
  2452. * already created. Nothing to do.
  2453. */
  2454. if (nid < 0)
  2455. return 0;
  2456. /*
  2457. * We are bringing a node online. No memory is available yet. We must
  2458. * allocate a kmem_cache_node structure in order to bring the node
  2459. * online.
  2460. */
  2461. down_read(&slub_lock);
  2462. list_for_each_entry(s, &slab_caches, list) {
  2463. /*
  2464. * XXX: kmem_cache_alloc_node will fallback to other nodes
  2465. * since memory is not yet available from the node that
  2466. * is brought up.
  2467. */
  2468. n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
  2469. if (!n) {
  2470. ret = -ENOMEM;
  2471. goto out;
  2472. }
  2473. init_kmem_cache_node(n, s);
  2474. s->node[nid] = n;
  2475. }
  2476. out:
  2477. up_read(&slub_lock);
  2478. return ret;
  2479. }
  2480. static int slab_memory_callback(struct notifier_block *self,
  2481. unsigned long action, void *arg)
  2482. {
  2483. int ret = 0;
  2484. switch (action) {
  2485. case MEM_GOING_ONLINE:
  2486. ret = slab_mem_going_online_callback(arg);
  2487. break;
  2488. case MEM_GOING_OFFLINE:
  2489. ret = slab_mem_going_offline_callback(arg);
  2490. break;
  2491. case MEM_OFFLINE:
  2492. case MEM_CANCEL_ONLINE:
  2493. slab_mem_offline_callback(arg);
  2494. break;
  2495. case MEM_ONLINE:
  2496. case MEM_CANCEL_OFFLINE:
  2497. break;
  2498. }
  2499. if (ret)
  2500. ret = notifier_from_errno(ret);
  2501. else
  2502. ret = NOTIFY_OK;
  2503. return ret;
  2504. }
  2505. #endif /* CONFIG_MEMORY_HOTPLUG */
  2506. /********************************************************************
  2507. * Basic setup of slabs
  2508. *******************************************************************/
  2509. void __init kmem_cache_init(void)
  2510. {
  2511. int i;
  2512. int caches = 0;
  2513. init_alloc_cpu();
  2514. #ifdef CONFIG_NUMA
  2515. /*
  2516. * Must first have the slab cache available for the allocations of the
  2517. * struct kmem_cache_node's. There is special bootstrap code in
  2518. * kmem_cache_open for slab_state == DOWN.
  2519. */
  2520. create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
  2521. sizeof(struct kmem_cache_node), GFP_KERNEL);
  2522. kmalloc_caches[0].refcount = -1;
  2523. caches++;
  2524. hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
  2525. #endif
  2526. /* Able to allocate the per node structures */
  2527. slab_state = PARTIAL;
  2528. /* Caches that are not of the two-to-the-power-of size */
  2529. if (KMALLOC_MIN_SIZE <= 64) {
  2530. create_kmalloc_cache(&kmalloc_caches[1],
  2531. "kmalloc-96", 96, GFP_KERNEL);
  2532. caches++;
  2533. create_kmalloc_cache(&kmalloc_caches[2],
  2534. "kmalloc-192", 192, GFP_KERNEL);
  2535. caches++;
  2536. }
  2537. for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
  2538. create_kmalloc_cache(&kmalloc_caches[i],
  2539. "kmalloc", 1 << i, GFP_KERNEL);
  2540. caches++;
  2541. }
  2542. /*
  2543. * Patch up the size_index table if we have strange large alignment
  2544. * requirements for the kmalloc array. This is only the case for
  2545. * MIPS it seems. The standard arches will not generate any code here.
  2546. *
  2547. * Largest permitted alignment is 256 bytes due to the way we
  2548. * handle the index determination for the smaller caches.
  2549. *
  2550. * Make sure that nothing crazy happens if someone starts tinkering
  2551. * around with ARCH_KMALLOC_MINALIGN
  2552. */
  2553. BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
  2554. (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
  2555. for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
  2556. size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
  2557. if (KMALLOC_MIN_SIZE == 128) {
  2558. /*
  2559. * The 192 byte sized cache is not used if the alignment
  2560. * is 128 byte. Redirect kmalloc to use the 256 byte cache
  2561. * instead.
  2562. */
  2563. for (i = 128 + 8; i <= 192; i += 8)
  2564. size_index[(i - 1) / 8] = 8;
  2565. }
  2566. slab_state = UP;
  2567. /* Provide the correct kmalloc names now that the caches are up */
  2568. for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
  2569. kmalloc_caches[i]. name =
  2570. kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
  2571. #ifdef CONFIG_SMP
  2572. register_cpu_notifier(&slab_notifier);
  2573. kmem_size = offsetof(struct kmem_cache, cpu_slab) +
  2574. nr_cpu_ids * sizeof(struct kmem_cache_cpu *);
  2575. #else
  2576. kmem_size = sizeof(struct kmem_cache);
  2577. #endif
  2578. printk(KERN_INFO
  2579. "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
  2580. " CPUs=%d, Nodes=%d\n",
  2581. caches, cache_line_size(),
  2582. slub_min_order, slub_max_order, slub_min_objects,
  2583. nr_cpu_ids, nr_node_ids);
  2584. }
  2585. /*
  2586. * Find a mergeable slab cache
  2587. */
  2588. static int slab_unmergeable(struct kmem_cache *s)
  2589. {
  2590. if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
  2591. return 1;
  2592. if (s->ctor)
  2593. return 1;
  2594. /*
  2595. * We may have set a slab to be unmergeable during bootstrap.
  2596. */
  2597. if (s->refcount < 0)
  2598. return 1;
  2599. return 0;
  2600. }
  2601. static struct kmem_cache *find_mergeable(size_t size,
  2602. size_t align, unsigned long flags, const char *name,
  2603. void (*ctor)(void *))
  2604. {
  2605. struct kmem_cache *s;
  2606. if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
  2607. return NULL;
  2608. if (ctor)
  2609. return NULL;
  2610. size = ALIGN(size, sizeof(void *));
  2611. align = calculate_alignment(flags, align, size);
  2612. size = ALIGN(size, align);
  2613. flags = kmem_cache_flags(size, flags, name, NULL);
  2614. list_for_each_entry(s, &slab_caches, list) {
  2615. if (slab_unmergeable(s))
  2616. continue;
  2617. if (size > s->size)
  2618. continue;
  2619. if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
  2620. continue;
  2621. /*
  2622. * Check if alignment is compatible.
  2623. * Courtesy of Adrian Drzewiecki
  2624. */
  2625. if ((s->size & ~(align - 1)) != s->size)
  2626. continue;
  2627. if (s->size - size >= sizeof(void *))
  2628. continue;
  2629. return s;
  2630. }
  2631. return NULL;
  2632. }
  2633. struct kmem_cache *kmem_cache_create(const char *name, size_t size,
  2634. size_t align, unsigned long flags, void (*ctor)(void *))
  2635. {
  2636. struct kmem_cache *s;
  2637. down_write(&slub_lock);
  2638. s = find_mergeable(size, align, flags, name, ctor);
  2639. if (s) {
  2640. int cpu;
  2641. s->refcount++;
  2642. /*
  2643. * Adjust the object sizes so that we clear
  2644. * the complete object on kzalloc.
  2645. */
  2646. s->objsize = max(s->objsize, (int)size);
  2647. /*
  2648. * And then we need to update the object size in the
  2649. * per cpu structures
  2650. */
  2651. for_each_online_cpu(cpu)
  2652. get_cpu_slab(s, cpu)->objsize = s->objsize;
  2653. s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
  2654. up_write(&slub_lock);
  2655. if (sysfs_slab_alias(s, name))
  2656. goto err;
  2657. return s;
  2658. }
  2659. s = kmalloc(kmem_size, GFP_KERNEL);
  2660. if (s) {
  2661. if (kmem_cache_open(s, GFP_KERNEL, name,
  2662. size, align, flags, ctor)) {
  2663. list_add(&s->list, &slab_caches);
  2664. up_write(&slub_lock);
  2665. if (sysfs_slab_add(s))
  2666. goto err;
  2667. return s;
  2668. }
  2669. kfree(s);
  2670. }
  2671. up_write(&slub_lock);
  2672. err:
  2673. if (flags & SLAB_PANIC)
  2674. panic("Cannot create slabcache %s\n", name);
  2675. else
  2676. s = NULL;
  2677. return s;
  2678. }
  2679. EXPORT_SYMBOL(kmem_cache_create);
  2680. #ifdef CONFIG_SMP
  2681. /*
  2682. * Use the cpu notifier to insure that the cpu slabs are flushed when
  2683. * necessary.
  2684. */
  2685. static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
  2686. unsigned long action, void *hcpu)
  2687. {
  2688. long cpu = (long)hcpu;
  2689. struct kmem_cache *s;
  2690. unsigned long flags;
  2691. switch (action) {
  2692. case CPU_UP_PREPARE:
  2693. case CPU_UP_PREPARE_FROZEN:
  2694. init_alloc_cpu_cpu(cpu);
  2695. down_read(&slub_lock);
  2696. list_for_each_entry(s, &slab_caches, list)
  2697. s->cpu_slab[cpu] = alloc_kmem_cache_cpu(s, cpu,
  2698. GFP_KERNEL);
  2699. up_read(&slub_lock);
  2700. break;
  2701. case CPU_UP_CANCELED:
  2702. case CPU_UP_CANCELED_FROZEN:
  2703. case CPU_DEAD:
  2704. case CPU_DEAD_FROZEN:
  2705. down_read(&slub_lock);
  2706. list_for_each_entry(s, &slab_caches, list) {
  2707. struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
  2708. local_irq_save(flags);
  2709. __flush_cpu_slab(s, cpu);
  2710. local_irq_restore(flags);
  2711. free_kmem_cache_cpu(c, cpu);
  2712. s->cpu_slab[cpu] = NULL;
  2713. }
  2714. up_read(&slub_lock);
  2715. break;
  2716. default:
  2717. break;
  2718. }
  2719. return NOTIFY_OK;
  2720. }
  2721. static struct notifier_block __cpuinitdata slab_notifier = {
  2722. .notifier_call = slab_cpuup_callback
  2723. };
  2724. #endif
  2725. void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
  2726. {
  2727. struct kmem_cache *s;
  2728. if (unlikely(size > PAGE_SIZE))
  2729. return kmalloc_large(size, gfpflags);
  2730. s = get_slab(size, gfpflags);
  2731. if (unlikely(ZERO_OR_NULL_PTR(s)))
  2732. return s;
  2733. return slab_alloc(s, gfpflags, -1, caller);
  2734. }
  2735. void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
  2736. int node, void *caller)
  2737. {
  2738. struct kmem_cache *s;
  2739. if (unlikely(size > PAGE_SIZE))
  2740. return kmalloc_large_node(size, gfpflags, node);
  2741. s = get_slab(size, gfpflags);
  2742. if (unlikely(ZERO_OR_NULL_PTR(s)))
  2743. return s;
  2744. return slab_alloc(s, gfpflags, node, caller);
  2745. }
  2746. #ifdef CONFIG_SLUB_DEBUG
  2747. static unsigned long count_partial(struct kmem_cache_node *n,
  2748. int (*get_count)(struct page *))
  2749. {
  2750. unsigned long flags;
  2751. unsigned long x = 0;
  2752. struct page *page;
  2753. spin_lock_irqsave(&n->list_lock, flags);
  2754. list_for_each_entry(page, &n->partial, lru)
  2755. x += get_count(page);
  2756. spin_unlock_irqrestore(&n->list_lock, flags);
  2757. return x;
  2758. }
  2759. static int count_inuse(struct page *page)
  2760. {
  2761. return page->inuse;
  2762. }
  2763. static int count_total(struct page *page)
  2764. {
  2765. return page->objects;
  2766. }
  2767. static int count_free(struct page *page)
  2768. {
  2769. return page->objects - page->inuse;
  2770. }
  2771. static int validate_slab(struct kmem_cache *s, struct page *page,
  2772. unsigned long *map)
  2773. {
  2774. void *p;
  2775. void *addr = page_address(page);
  2776. if (!check_slab(s, page) ||
  2777. !on_freelist(s, page, NULL))
  2778. return 0;
  2779. /* Now we know that a valid freelist exists */
  2780. bitmap_zero(map, page->objects);
  2781. for_each_free_object(p, s, page->freelist) {
  2782. set_bit(slab_index(p, s, addr), map);
  2783. if (!check_object(s, page, p, 0))
  2784. return 0;
  2785. }
  2786. for_each_object(p, s, addr, page->objects)
  2787. if (!test_bit(slab_index(p, s, addr), map))
  2788. if (!check_object(s, page, p, 1))
  2789. return 0;
  2790. return 1;
  2791. }
  2792. static void validate_slab_slab(struct kmem_cache *s, struct page *page,
  2793. unsigned long *map)
  2794. {
  2795. if (slab_trylock(page)) {
  2796. validate_slab(s, page, map);
  2797. slab_unlock(page);
  2798. } else
  2799. printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
  2800. s->name, page);
  2801. if (s->flags & DEBUG_DEFAULT_FLAGS) {
  2802. if (!PageSlubDebug(page))
  2803. printk(KERN_ERR "SLUB %s: SlubDebug not set "
  2804. "on slab 0x%p\n", s->name, page);
  2805. } else {
  2806. if (PageSlubDebug(page))
  2807. printk(KERN_ERR "SLUB %s: SlubDebug set on "
  2808. "slab 0x%p\n", s->name, page);
  2809. }
  2810. }
  2811. static int validate_slab_node(struct kmem_cache *s,
  2812. struct kmem_cache_node *n, unsigned long *map)
  2813. {
  2814. unsigned long count = 0;
  2815. struct page *page;
  2816. unsigned long flags;
  2817. spin_lock_irqsave(&n->list_lock, flags);
  2818. list_for_each_entry(page, &n->partial, lru) {
  2819. validate_slab_slab(s, page, map);
  2820. count++;
  2821. }
  2822. if (count != n->nr_partial)
  2823. printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
  2824. "counter=%ld\n", s->name, count, n->nr_partial);
  2825. if (!(s->flags & SLAB_STORE_USER))
  2826. goto out;
  2827. list_for_each_entry(page, &n->full, lru) {
  2828. validate_slab_slab(s, page, map);
  2829. count++;
  2830. }
  2831. if (count != atomic_long_read(&n->nr_slabs))
  2832. printk(KERN_ERR "SLUB: %s %ld slabs counted but "
  2833. "counter=%ld\n", s->name, count,
  2834. atomic_long_read(&n->nr_slabs));
  2835. out:
  2836. spin_unlock_irqrestore(&n->list_lock, flags);
  2837. return count;
  2838. }
  2839. static long validate_slab_cache(struct kmem_cache *s)
  2840. {
  2841. int node;
  2842. unsigned long count = 0;
  2843. unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
  2844. sizeof(unsigned long), GFP_KERNEL);
  2845. if (!map)
  2846. return -ENOMEM;
  2847. flush_all(s);
  2848. for_each_node_state(node, N_NORMAL_MEMORY) {
  2849. struct kmem_cache_node *n = get_node(s, node);
  2850. count += validate_slab_node(s, n, map);
  2851. }
  2852. kfree(map);
  2853. return count;
  2854. }
  2855. #ifdef SLUB_RESILIENCY_TEST
  2856. static void resiliency_test(void)
  2857. {
  2858. u8 *p;
  2859. printk(KERN_ERR "SLUB resiliency testing\n");
  2860. printk(KERN_ERR "-----------------------\n");
  2861. printk(KERN_ERR "A. Corruption after allocation\n");
  2862. p = kzalloc(16, GFP_KERNEL);
  2863. p[16] = 0x12;
  2864. printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
  2865. " 0x12->0x%p\n\n", p + 16);
  2866. validate_slab_cache(kmalloc_caches + 4);
  2867. /* Hmmm... The next two are dangerous */
  2868. p = kzalloc(32, GFP_KERNEL);
  2869. p[32 + sizeof(void *)] = 0x34;
  2870. printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
  2871. " 0x34 -> -0x%p\n", p);
  2872. printk(KERN_ERR
  2873. "If allocated object is overwritten then not detectable\n\n");
  2874. validate_slab_cache(kmalloc_caches + 5);
  2875. p = kzalloc(64, GFP_KERNEL);
  2876. p += 64 + (get_cycles() & 0xff) * sizeof(void *);
  2877. *p = 0x56;
  2878. printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
  2879. p);
  2880. printk(KERN_ERR
  2881. "If allocated object is overwritten then not detectable\n\n");
  2882. validate_slab_cache(kmalloc_caches + 6);
  2883. printk(KERN_ERR "\nB. Corruption after free\n");
  2884. p = kzalloc(128, GFP_KERNEL);
  2885. kfree(p);
  2886. *p = 0x78;
  2887. printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
  2888. validate_slab_cache(kmalloc_caches + 7);
  2889. p = kzalloc(256, GFP_KERNEL);
  2890. kfree(p);
  2891. p[50] = 0x9a;
  2892. printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
  2893. p);
  2894. validate_slab_cache(kmalloc_caches + 8);
  2895. p = kzalloc(512, GFP_KERNEL);
  2896. kfree(p);
  2897. p[512] = 0xab;
  2898. printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
  2899. validate_slab_cache(kmalloc_caches + 9);
  2900. }
  2901. #else
  2902. static void resiliency_test(void) {};
  2903. #endif
  2904. /*
  2905. * Generate lists of code addresses where slabcache objects are allocated
  2906. * and freed.
  2907. */
  2908. struct location {
  2909. unsigned long count;
  2910. void *addr;
  2911. long long sum_time;
  2912. long min_time;
  2913. long max_time;
  2914. long min_pid;
  2915. long max_pid;
  2916. cpumask_t cpus;
  2917. nodemask_t nodes;
  2918. };
  2919. struct loc_track {
  2920. unsigned long max;
  2921. unsigned long count;
  2922. struct location *loc;
  2923. };
  2924. static void free_loc_track(struct loc_track *t)
  2925. {
  2926. if (t->max)
  2927. free_pages((unsigned long)t->loc,
  2928. get_order(sizeof(struct location) * t->max));
  2929. }
  2930. static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
  2931. {
  2932. struct location *l;
  2933. int order;
  2934. order = get_order(sizeof(struct location) * max);
  2935. l = (void *)__get_free_pages(flags, order);
  2936. if (!l)
  2937. return 0;
  2938. if (t->count) {
  2939. memcpy(l, t->loc, sizeof(struct location) * t->count);
  2940. free_loc_track(t);
  2941. }
  2942. t->max = max;
  2943. t->loc = l;
  2944. return 1;
  2945. }
  2946. static int add_location(struct loc_track *t, struct kmem_cache *s,
  2947. const struct track *track)
  2948. {
  2949. long start, end, pos;
  2950. struct location *l;
  2951. void *caddr;
  2952. unsigned long age = jiffies - track->when;
  2953. start = -1;
  2954. end = t->count;
  2955. for ( ; ; ) {
  2956. pos = start + (end - start + 1) / 2;
  2957. /*
  2958. * There is nothing at "end". If we end up there
  2959. * we need to add something to before end.
  2960. */
  2961. if (pos == end)
  2962. break;
  2963. caddr = t->loc[pos].addr;
  2964. if (track->addr == caddr) {
  2965. l = &t->loc[pos];
  2966. l->count++;
  2967. if (track->when) {
  2968. l->sum_time += age;
  2969. if (age < l->min_time)
  2970. l->min_time = age;
  2971. if (age > l->max_time)
  2972. l->max_time = age;
  2973. if (track->pid < l->min_pid)
  2974. l->min_pid = track->pid;
  2975. if (track->pid > l->max_pid)
  2976. l->max_pid = track->pid;
  2977. cpu_set(track->cpu, l->cpus);
  2978. }
  2979. node_set(page_to_nid(virt_to_page(track)), l->nodes);
  2980. return 1;
  2981. }
  2982. if (track->addr < caddr)
  2983. end = pos;
  2984. else
  2985. start = pos;
  2986. }
  2987. /*
  2988. * Not found. Insert new tracking element.
  2989. */
  2990. if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
  2991. return 0;
  2992. l = t->loc + pos;
  2993. if (pos < t->count)
  2994. memmove(l + 1, l,
  2995. (t->count - pos) * sizeof(struct location));
  2996. t->count++;
  2997. l->count = 1;
  2998. l->addr = track->addr;
  2999. l->sum_time = age;
  3000. l->min_time = age;
  3001. l->max_time = age;
  3002. l->min_pid = track->pid;
  3003. l->max_pid = track->pid;
  3004. cpus_clear(l->cpus);
  3005. cpu_set(track->cpu, l->cpus);
  3006. nodes_clear(l->nodes);
  3007. node_set(page_to_nid(virt_to_page(track)), l->nodes);
  3008. return 1;
  3009. }
  3010. static void process_slab(struct loc_track *t, struct kmem_cache *s,
  3011. struct page *page, enum track_item alloc)
  3012. {
  3013. void *addr = page_address(page);
  3014. DECLARE_BITMAP(map, page->objects);
  3015. void *p;
  3016. bitmap_zero(map, page->objects);
  3017. for_each_free_object(p, s, page->freelist)
  3018. set_bit(slab_index(p, s, addr), map);
  3019. for_each_object(p, s, addr, page->objects)
  3020. if (!test_bit(slab_index(p, s, addr), map))
  3021. add_location(t, s, get_track(s, p, alloc));
  3022. }
  3023. static int list_locations(struct kmem_cache *s, char *buf,
  3024. enum track_item alloc)
  3025. {
  3026. int len = 0;
  3027. unsigned long i;
  3028. struct loc_track t = { 0, 0, NULL };
  3029. int node;
  3030. if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
  3031. GFP_TEMPORARY))
  3032. return sprintf(buf, "Out of memory\n");
  3033. /* Push back cpu slabs */
  3034. flush_all(s);
  3035. for_each_node_state(node, N_NORMAL_MEMORY) {
  3036. struct kmem_cache_node *n = get_node(s, node);
  3037. unsigned long flags;
  3038. struct page *page;
  3039. if (!atomic_long_read(&n->nr_slabs))
  3040. continue;
  3041. spin_lock_irqsave(&n->list_lock, flags);
  3042. list_for_each_entry(page, &n->partial, lru)
  3043. process_slab(&t, s, page, alloc);
  3044. list_for_each_entry(page, &n->full, lru)
  3045. process_slab(&t, s, page, alloc);
  3046. spin_unlock_irqrestore(&n->list_lock, flags);
  3047. }
  3048. for (i = 0; i < t.count; i++) {
  3049. struct location *l = &t.loc[i];
  3050. if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
  3051. break;
  3052. len += sprintf(buf + len, "%7ld ", l->count);
  3053. if (l->addr)
  3054. len += sprint_symbol(buf + len, (unsigned long)l->addr);
  3055. else
  3056. len += sprintf(buf + len, "<not-available>");
  3057. if (l->sum_time != l->min_time) {
  3058. len += sprintf(buf + len, " age=%ld/%ld/%ld",
  3059. l->min_time,
  3060. (long)div_u64(l->sum_time, l->count),
  3061. l->max_time);
  3062. } else
  3063. len += sprintf(buf + len, " age=%ld",
  3064. l->min_time);
  3065. if (l->min_pid != l->max_pid)
  3066. len += sprintf(buf + len, " pid=%ld-%ld",
  3067. l->min_pid, l->max_pid);
  3068. else
  3069. len += sprintf(buf + len, " pid=%ld",
  3070. l->min_pid);
  3071. if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
  3072. len < PAGE_SIZE - 60) {
  3073. len += sprintf(buf + len, " cpus=");
  3074. len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
  3075. l->cpus);
  3076. }
  3077. if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
  3078. len < PAGE_SIZE - 60) {
  3079. len += sprintf(buf + len, " nodes=");
  3080. len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
  3081. l->nodes);
  3082. }
  3083. len += sprintf(buf + len, "\n");
  3084. }
  3085. free_loc_track(&t);
  3086. if (!t.count)
  3087. len += sprintf(buf, "No data\n");
  3088. return len;
  3089. }
  3090. enum slab_stat_type {
  3091. SL_ALL, /* All slabs */
  3092. SL_PARTIAL, /* Only partially allocated slabs */
  3093. SL_CPU, /* Only slabs used for cpu caches */
  3094. SL_OBJECTS, /* Determine allocated objects not slabs */
  3095. SL_TOTAL /* Determine object capacity not slabs */
  3096. };
  3097. #define SO_ALL (1 << SL_ALL)
  3098. #define SO_PARTIAL (1 << SL_PARTIAL)
  3099. #define SO_CPU (1 << SL_CPU)
  3100. #define SO_OBJECTS (1 << SL_OBJECTS)
  3101. #define SO_TOTAL (1 << SL_TOTAL)
  3102. static ssize_t show_slab_objects(struct kmem_cache *s,
  3103. char *buf, unsigned long flags)
  3104. {
  3105. unsigned long total = 0;
  3106. int node;
  3107. int x;
  3108. unsigned long *nodes;
  3109. unsigned long *per_cpu;
  3110. nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
  3111. if (!nodes)
  3112. return -ENOMEM;
  3113. per_cpu = nodes + nr_node_ids;
  3114. if (flags & SO_CPU) {
  3115. int cpu;
  3116. for_each_possible_cpu(cpu) {
  3117. struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
  3118. if (!c || c->node < 0)
  3119. continue;
  3120. if (c->page) {
  3121. if (flags & SO_TOTAL)
  3122. x = c->page->objects;
  3123. else if (flags & SO_OBJECTS)
  3124. x = c->page->inuse;
  3125. else
  3126. x = 1;
  3127. total += x;
  3128. nodes[c->node] += x;
  3129. }
  3130. per_cpu[c->node]++;
  3131. }
  3132. }
  3133. if (flags & SO_ALL) {
  3134. for_each_node_state(node, N_NORMAL_MEMORY) {
  3135. struct kmem_cache_node *n = get_node(s, node);
  3136. if (flags & SO_TOTAL)
  3137. x = atomic_long_read(&n->total_objects);
  3138. else if (flags & SO_OBJECTS)
  3139. x = atomic_long_read(&n->total_objects) -
  3140. count_partial(n, count_free);
  3141. else
  3142. x = atomic_long_read(&n->nr_slabs);
  3143. total += x;
  3144. nodes[node] += x;
  3145. }
  3146. } else if (flags & SO_PARTIAL) {
  3147. for_each_node_state(node, N_NORMAL_MEMORY) {
  3148. struct kmem_cache_node *n = get_node(s, node);
  3149. if (flags & SO_TOTAL)
  3150. x = count_partial(n, count_total);
  3151. else if (flags & SO_OBJECTS)
  3152. x = count_partial(n, count_inuse);
  3153. else
  3154. x = n->nr_partial;
  3155. total += x;
  3156. nodes[node] += x;
  3157. }
  3158. }
  3159. x = sprintf(buf, "%lu", total);
  3160. #ifdef CONFIG_NUMA
  3161. for_each_node_state(node, N_NORMAL_MEMORY)
  3162. if (nodes[node])
  3163. x += sprintf(buf + x, " N%d=%lu",
  3164. node, nodes[node]);
  3165. #endif
  3166. kfree(nodes);
  3167. return x + sprintf(buf + x, "\n");
  3168. }
  3169. static int any_slab_objects(struct kmem_cache *s)
  3170. {
  3171. int node;
  3172. for_each_online_node(node) {
  3173. struct kmem_cache_node *n = get_node(s, node);
  3174. if (!n)
  3175. continue;
  3176. if (atomic_long_read(&n->total_objects))
  3177. return 1;
  3178. }
  3179. return 0;
  3180. }
  3181. #define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
  3182. #define to_slab(n) container_of(n, struct kmem_cache, kobj);
  3183. struct slab_attribute {
  3184. struct attribute attr;
  3185. ssize_t (*show)(struct kmem_cache *s, char *buf);
  3186. ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
  3187. };
  3188. #define SLAB_ATTR_RO(_name) \
  3189. static struct slab_attribute _name##_attr = __ATTR_RO(_name)
  3190. #define SLAB_ATTR(_name) \
  3191. static struct slab_attribute _name##_attr = \
  3192. __ATTR(_name, 0644, _name##_show, _name##_store)
  3193. static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
  3194. {
  3195. return sprintf(buf, "%d\n", s->size);
  3196. }
  3197. SLAB_ATTR_RO(slab_size);
  3198. static ssize_t align_show(struct kmem_cache *s, char *buf)
  3199. {
  3200. return sprintf(buf, "%d\n", s->align);
  3201. }
  3202. SLAB_ATTR_RO(align);
  3203. static ssize_t object_size_show(struct kmem_cache *s, char *buf)
  3204. {
  3205. return sprintf(buf, "%d\n", s->objsize);
  3206. }
  3207. SLAB_ATTR_RO(object_size);
  3208. static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
  3209. {
  3210. return sprintf(buf, "%d\n", oo_objects(s->oo));
  3211. }
  3212. SLAB_ATTR_RO(objs_per_slab);
  3213. static ssize_t order_store(struct kmem_cache *s,
  3214. const char *buf, size_t length)
  3215. {
  3216. unsigned long order;
  3217. int err;
  3218. err = strict_strtoul(buf, 10, &order);
  3219. if (err)
  3220. return err;
  3221. if (order > slub_max_order || order < slub_min_order)
  3222. return -EINVAL;
  3223. calculate_sizes(s, order);
  3224. return length;
  3225. }
  3226. static ssize_t order_show(struct kmem_cache *s, char *buf)
  3227. {
  3228. return sprintf(buf, "%d\n", oo_order(s->oo));
  3229. }
  3230. SLAB_ATTR(order);
  3231. static ssize_t ctor_show(struct kmem_cache *s, char *buf)
  3232. {
  3233. if (s->ctor) {
  3234. int n = sprint_symbol(buf, (unsigned long)s->ctor);
  3235. return n + sprintf(buf + n, "\n");
  3236. }
  3237. return 0;
  3238. }
  3239. SLAB_ATTR_RO(ctor);
  3240. static ssize_t aliases_show(struct kmem_cache *s, char *buf)
  3241. {
  3242. return sprintf(buf, "%d\n", s->refcount - 1);
  3243. }
  3244. SLAB_ATTR_RO(aliases);
  3245. static ssize_t slabs_show(struct kmem_cache *s, char *buf)
  3246. {
  3247. return show_slab_objects(s, buf, SO_ALL);
  3248. }
  3249. SLAB_ATTR_RO(slabs);
  3250. static ssize_t partial_show(struct kmem_cache *s, char *buf)
  3251. {
  3252. return show_slab_objects(s, buf, SO_PARTIAL);
  3253. }
  3254. SLAB_ATTR_RO(partial);
  3255. static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
  3256. {
  3257. return show_slab_objects(s, buf, SO_CPU);
  3258. }
  3259. SLAB_ATTR_RO(cpu_slabs);
  3260. static ssize_t objects_show(struct kmem_cache *s, char *buf)
  3261. {
  3262. return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
  3263. }
  3264. SLAB_ATTR_RO(objects);
  3265. static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
  3266. {
  3267. return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
  3268. }
  3269. SLAB_ATTR_RO(objects_partial);
  3270. static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
  3271. {
  3272. return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
  3273. }
  3274. SLAB_ATTR_RO(total_objects);
  3275. static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
  3276. {
  3277. return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
  3278. }
  3279. static ssize_t sanity_checks_store(struct kmem_cache *s,
  3280. const char *buf, size_t length)
  3281. {
  3282. s->flags &= ~SLAB_DEBUG_FREE;
  3283. if (buf[0] == '1')
  3284. s->flags |= SLAB_DEBUG_FREE;
  3285. return length;
  3286. }
  3287. SLAB_ATTR(sanity_checks);
  3288. static ssize_t trace_show(struct kmem_cache *s, char *buf)
  3289. {
  3290. return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
  3291. }
  3292. static ssize_t trace_store(struct kmem_cache *s, const char *buf,
  3293. size_t length)
  3294. {
  3295. s->flags &= ~SLAB_TRACE;
  3296. if (buf[0] == '1')
  3297. s->flags |= SLAB_TRACE;
  3298. return length;
  3299. }
  3300. SLAB_ATTR(trace);
  3301. static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
  3302. {
  3303. return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
  3304. }
  3305. static ssize_t reclaim_account_store(struct kmem_cache *s,
  3306. const char *buf, size_t length)
  3307. {
  3308. s->flags &= ~SLAB_RECLAIM_ACCOUNT;
  3309. if (buf[0] == '1')
  3310. s->flags |= SLAB_RECLAIM_ACCOUNT;
  3311. return length;
  3312. }
  3313. SLAB_ATTR(reclaim_account);
  3314. static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
  3315. {
  3316. return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
  3317. }
  3318. SLAB_ATTR_RO(hwcache_align);
  3319. #ifdef CONFIG_ZONE_DMA
  3320. static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
  3321. {
  3322. return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
  3323. }
  3324. SLAB_ATTR_RO(cache_dma);
  3325. #endif
  3326. static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
  3327. {
  3328. return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
  3329. }
  3330. SLAB_ATTR_RO(destroy_by_rcu);
  3331. static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
  3332. {
  3333. return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
  3334. }
  3335. static ssize_t red_zone_store(struct kmem_cache *s,
  3336. const char *buf, size_t length)
  3337. {
  3338. if (any_slab_objects(s))
  3339. return -EBUSY;
  3340. s->flags &= ~SLAB_RED_ZONE;
  3341. if (buf[0] == '1')
  3342. s->flags |= SLAB_RED_ZONE;
  3343. calculate_sizes(s, -1);
  3344. return length;
  3345. }
  3346. SLAB_ATTR(red_zone);
  3347. static ssize_t poison_show(struct kmem_cache *s, char *buf)
  3348. {
  3349. return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
  3350. }
  3351. static ssize_t poison_store(struct kmem_cache *s,
  3352. const char *buf, size_t length)
  3353. {
  3354. if (any_slab_objects(s))
  3355. return -EBUSY;
  3356. s->flags &= ~SLAB_POISON;
  3357. if (buf[0] == '1')
  3358. s->flags |= SLAB_POISON;
  3359. calculate_sizes(s, -1);
  3360. return length;
  3361. }
  3362. SLAB_ATTR(poison);
  3363. static ssize_t store_user_show(struct kmem_cache *s, char *buf)
  3364. {
  3365. return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
  3366. }
  3367. static ssize_t store_user_store(struct kmem_cache *s,
  3368. const char *buf, size_t length)
  3369. {
  3370. if (any_slab_objects(s))
  3371. return -EBUSY;
  3372. s->flags &= ~SLAB_STORE_USER;
  3373. if (buf[0] == '1')
  3374. s->flags |= SLAB_STORE_USER;
  3375. calculate_sizes(s, -1);
  3376. return length;
  3377. }
  3378. SLAB_ATTR(store_user);
  3379. static ssize_t validate_show(struct kmem_cache *s, char *buf)
  3380. {
  3381. return 0;
  3382. }
  3383. static ssize_t validate_store(struct kmem_cache *s,
  3384. const char *buf, size_t length)
  3385. {
  3386. int ret = -EINVAL;
  3387. if (buf[0] == '1') {
  3388. ret = validate_slab_cache(s);
  3389. if (ret >= 0)
  3390. ret = length;
  3391. }
  3392. return ret;
  3393. }
  3394. SLAB_ATTR(validate);
  3395. static ssize_t shrink_show(struct kmem_cache *s, char *buf)
  3396. {
  3397. return 0;
  3398. }
  3399. static ssize_t shrink_store(struct kmem_cache *s,
  3400. const char *buf, size_t length)
  3401. {
  3402. if (buf[0] == '1') {
  3403. int rc = kmem_cache_shrink(s);
  3404. if (rc)
  3405. return rc;
  3406. } else
  3407. return -EINVAL;
  3408. return length;
  3409. }
  3410. SLAB_ATTR(shrink);
  3411. static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
  3412. {
  3413. if (!(s->flags & SLAB_STORE_USER))
  3414. return -ENOSYS;
  3415. return list_locations(s, buf, TRACK_ALLOC);
  3416. }
  3417. SLAB_ATTR_RO(alloc_calls);
  3418. static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
  3419. {
  3420. if (!(s->flags & SLAB_STORE_USER))
  3421. return -ENOSYS;
  3422. return list_locations(s, buf, TRACK_FREE);
  3423. }
  3424. SLAB_ATTR_RO(free_calls);
  3425. #ifdef CONFIG_NUMA
  3426. static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
  3427. {
  3428. return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
  3429. }
  3430. static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
  3431. const char *buf, size_t length)
  3432. {
  3433. unsigned long ratio;
  3434. int err;
  3435. err = strict_strtoul(buf, 10, &ratio);
  3436. if (err)
  3437. return err;
  3438. if (ratio <= 100)
  3439. s->remote_node_defrag_ratio = ratio * 10;
  3440. return length;
  3441. }
  3442. SLAB_ATTR(remote_node_defrag_ratio);
  3443. #endif
  3444. #ifdef CONFIG_SLUB_STATS
  3445. static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
  3446. {
  3447. unsigned long sum = 0;
  3448. int cpu;
  3449. int len;
  3450. int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
  3451. if (!data)
  3452. return -ENOMEM;
  3453. for_each_online_cpu(cpu) {
  3454. unsigned x = get_cpu_slab(s, cpu)->stat[si];
  3455. data[cpu] = x;
  3456. sum += x;
  3457. }
  3458. len = sprintf(buf, "%lu", sum);
  3459. #ifdef CONFIG_SMP
  3460. for_each_online_cpu(cpu) {
  3461. if (data[cpu] && len < PAGE_SIZE - 20)
  3462. len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
  3463. }
  3464. #endif
  3465. kfree(data);
  3466. return len + sprintf(buf + len, "\n");
  3467. }
  3468. #define STAT_ATTR(si, text) \
  3469. static ssize_t text##_show(struct kmem_cache *s, char *buf) \
  3470. { \
  3471. return show_stat(s, buf, si); \
  3472. } \
  3473. SLAB_ATTR_RO(text); \
  3474. STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
  3475. STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
  3476. STAT_ATTR(FREE_FASTPATH, free_fastpath);
  3477. STAT_ATTR(FREE_SLOWPATH, free_slowpath);
  3478. STAT_ATTR(FREE_FROZEN, free_frozen);
  3479. STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
  3480. STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
  3481. STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
  3482. STAT_ATTR(ALLOC_SLAB, alloc_slab);
  3483. STAT_ATTR(ALLOC_REFILL, alloc_refill);
  3484. STAT_ATTR(FREE_SLAB, free_slab);
  3485. STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
  3486. STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
  3487. STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
  3488. STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
  3489. STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
  3490. STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
  3491. STAT_ATTR(ORDER_FALLBACK, order_fallback);
  3492. #endif
  3493. static struct attribute *slab_attrs[] = {
  3494. &slab_size_attr.attr,
  3495. &object_size_attr.attr,
  3496. &objs_per_slab_attr.attr,
  3497. &order_attr.attr,
  3498. &objects_attr.attr,
  3499. &objects_partial_attr.attr,
  3500. &total_objects_attr.attr,
  3501. &slabs_attr.attr,
  3502. &partial_attr.attr,
  3503. &cpu_slabs_attr.attr,
  3504. &ctor_attr.attr,
  3505. &aliases_attr.attr,
  3506. &align_attr.attr,
  3507. &sanity_checks_attr.attr,
  3508. &trace_attr.attr,
  3509. &hwcache_align_attr.attr,
  3510. &reclaim_account_attr.attr,
  3511. &destroy_by_rcu_attr.attr,
  3512. &red_zone_attr.attr,
  3513. &poison_attr.attr,
  3514. &store_user_attr.attr,
  3515. &validate_attr.attr,
  3516. &shrink_attr.attr,
  3517. &alloc_calls_attr.attr,
  3518. &free_calls_attr.attr,
  3519. #ifdef CONFIG_ZONE_DMA
  3520. &cache_dma_attr.attr,
  3521. #endif
  3522. #ifdef CONFIG_NUMA
  3523. &remote_node_defrag_ratio_attr.attr,
  3524. #endif
  3525. #ifdef CONFIG_SLUB_STATS
  3526. &alloc_fastpath_attr.attr,
  3527. &alloc_slowpath_attr.attr,
  3528. &free_fastpath_attr.attr,
  3529. &free_slowpath_attr.attr,
  3530. &free_frozen_attr.attr,
  3531. &free_add_partial_attr.attr,
  3532. &free_remove_partial_attr.attr,
  3533. &alloc_from_partial_attr.attr,
  3534. &alloc_slab_attr.attr,
  3535. &alloc_refill_attr.attr,
  3536. &free_slab_attr.attr,
  3537. &cpuslab_flush_attr.attr,
  3538. &deactivate_full_attr.attr,
  3539. &deactivate_empty_attr.attr,
  3540. &deactivate_to_head_attr.attr,
  3541. &deactivate_to_tail_attr.attr,
  3542. &deactivate_remote_frees_attr.attr,
  3543. &order_fallback_attr.attr,
  3544. #endif
  3545. NULL
  3546. };
  3547. static struct attribute_group slab_attr_group = {
  3548. .attrs = slab_attrs,
  3549. };
  3550. static ssize_t slab_attr_show(struct kobject *kobj,
  3551. struct attribute *attr,
  3552. char *buf)
  3553. {
  3554. struct slab_attribute *attribute;
  3555. struct kmem_cache *s;
  3556. int err;
  3557. attribute = to_slab_attr(attr);
  3558. s = to_slab(kobj);
  3559. if (!attribute->show)
  3560. return -EIO;
  3561. err = attribute->show(s, buf);
  3562. return err;
  3563. }
  3564. static ssize_t slab_attr_store(struct kobject *kobj,
  3565. struct attribute *attr,
  3566. const char *buf, size_t len)
  3567. {
  3568. struct slab_attribute *attribute;
  3569. struct kmem_cache *s;
  3570. int err;
  3571. attribute = to_slab_attr(attr);
  3572. s = to_slab(kobj);
  3573. if (!attribute->store)
  3574. return -EIO;
  3575. err = attribute->store(s, buf, len);
  3576. return err;
  3577. }
  3578. static void kmem_cache_release(struct kobject *kobj)
  3579. {
  3580. struct kmem_cache *s = to_slab(kobj);
  3581. kfree(s);
  3582. }
  3583. static struct sysfs_ops slab_sysfs_ops = {
  3584. .show = slab_attr_show,
  3585. .store = slab_attr_store,
  3586. };
  3587. static struct kobj_type slab_ktype = {
  3588. .sysfs_ops = &slab_sysfs_ops,
  3589. .release = kmem_cache_release
  3590. };
  3591. static int uevent_filter(struct kset *kset, struct kobject *kobj)
  3592. {
  3593. struct kobj_type *ktype = get_ktype(kobj);
  3594. if (ktype == &slab_ktype)
  3595. return 1;
  3596. return 0;
  3597. }
  3598. static struct kset_uevent_ops slab_uevent_ops = {
  3599. .filter = uevent_filter,
  3600. };
  3601. static struct kset *slab_kset;
  3602. #define ID_STR_LENGTH 64
  3603. /* Create a unique string id for a slab cache:
  3604. *
  3605. * Format :[flags-]size
  3606. */
  3607. static char *create_unique_id(struct kmem_cache *s)
  3608. {
  3609. char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
  3610. char *p = name;
  3611. BUG_ON(!name);
  3612. *p++ = ':';
  3613. /*
  3614. * First flags affecting slabcache operations. We will only
  3615. * get here for aliasable slabs so we do not need to support
  3616. * too many flags. The flags here must cover all flags that
  3617. * are matched during merging to guarantee that the id is
  3618. * unique.
  3619. */
  3620. if (s->flags & SLAB_CACHE_DMA)
  3621. *p++ = 'd';
  3622. if (s->flags & SLAB_RECLAIM_ACCOUNT)
  3623. *p++ = 'a';
  3624. if (s->flags & SLAB_DEBUG_FREE)
  3625. *p++ = 'F';
  3626. if (p != name + 1)
  3627. *p++ = '-';
  3628. p += sprintf(p, "%07d", s->size);
  3629. BUG_ON(p > name + ID_STR_LENGTH - 1);
  3630. return name;
  3631. }
  3632. static int sysfs_slab_add(struct kmem_cache *s)
  3633. {
  3634. int err;
  3635. const char *name;
  3636. int unmergeable;
  3637. if (slab_state < SYSFS)
  3638. /* Defer until later */
  3639. return 0;
  3640. unmergeable = slab_unmergeable(s);
  3641. if (unmergeable) {
  3642. /*
  3643. * Slabcache can never be merged so we can use the name proper.
  3644. * This is typically the case for debug situations. In that
  3645. * case we can catch duplicate names easily.
  3646. */
  3647. sysfs_remove_link(&slab_kset->kobj, s->name);
  3648. name = s->name;
  3649. } else {
  3650. /*
  3651. * Create a unique name for the slab as a target
  3652. * for the symlinks.
  3653. */
  3654. name = create_unique_id(s);
  3655. }
  3656. s->kobj.kset = slab_kset;
  3657. err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
  3658. if (err) {
  3659. kobject_put(&s->kobj);
  3660. return err;
  3661. }
  3662. err = sysfs_create_group(&s->kobj, &slab_attr_group);
  3663. if (err)
  3664. return err;
  3665. kobject_uevent(&s->kobj, KOBJ_ADD);
  3666. if (!unmergeable) {
  3667. /* Setup first alias */
  3668. sysfs_slab_alias(s, s->name);
  3669. kfree(name);
  3670. }
  3671. return 0;
  3672. }
  3673. static void sysfs_slab_remove(struct kmem_cache *s)
  3674. {
  3675. kobject_uevent(&s->kobj, KOBJ_REMOVE);
  3676. kobject_del(&s->kobj);
  3677. kobject_put(&s->kobj);
  3678. }
  3679. /*
  3680. * Need to buffer aliases during bootup until sysfs becomes
  3681. * available lest we loose that information.
  3682. */
  3683. struct saved_alias {
  3684. struct kmem_cache *s;
  3685. const char *name;
  3686. struct saved_alias *next;
  3687. };
  3688. static struct saved_alias *alias_list;
  3689. static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
  3690. {
  3691. struct saved_alias *al;
  3692. if (slab_state == SYSFS) {
  3693. /*
  3694. * If we have a leftover link then remove it.
  3695. */
  3696. sysfs_remove_link(&slab_kset->kobj, name);
  3697. return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
  3698. }
  3699. al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
  3700. if (!al)
  3701. return -ENOMEM;
  3702. al->s = s;
  3703. al->name = name;
  3704. al->next = alias_list;
  3705. alias_list = al;
  3706. return 0;
  3707. }
  3708. static int __init slab_sysfs_init(void)
  3709. {
  3710. struct kmem_cache *s;
  3711. int err;
  3712. slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
  3713. if (!slab_kset) {
  3714. printk(KERN_ERR "Cannot register slab subsystem.\n");
  3715. return -ENOSYS;
  3716. }
  3717. slab_state = SYSFS;
  3718. list_for_each_entry(s, &slab_caches, list) {
  3719. err = sysfs_slab_add(s);
  3720. if (err)
  3721. printk(KERN_ERR "SLUB: Unable to add boot slab %s"
  3722. " to sysfs\n", s->name);
  3723. }
  3724. while (alias_list) {
  3725. struct saved_alias *al = alias_list;
  3726. alias_list = alias_list->next;
  3727. err = sysfs_slab_alias(al->s, al->name);
  3728. if (err)
  3729. printk(KERN_ERR "SLUB: Unable to add boot slab alias"
  3730. " %s to sysfs\n", s->name);
  3731. kfree(al);
  3732. }
  3733. resiliency_test();
  3734. return 0;
  3735. }
  3736. __initcall(slab_sysfs_init);
  3737. #endif
  3738. /*
  3739. * The /proc/slabinfo ABI
  3740. */
  3741. #ifdef CONFIG_SLABINFO
  3742. static void print_slabinfo_header(struct seq_file *m)
  3743. {
  3744. seq_puts(m, "slabinfo - version: 2.1\n");
  3745. seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
  3746. "<objperslab> <pagesperslab>");
  3747. seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
  3748. seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
  3749. seq_putc(m, '\n');
  3750. }
  3751. static void *s_start(struct seq_file *m, loff_t *pos)
  3752. {
  3753. loff_t n = *pos;
  3754. down_read(&slub_lock);
  3755. if (!n)
  3756. print_slabinfo_header(m);
  3757. return seq_list_start(&slab_caches, *pos);
  3758. }
  3759. static void *s_next(struct seq_file *m, void *p, loff_t *pos)
  3760. {
  3761. return seq_list_next(p, &slab_caches, pos);
  3762. }
  3763. static void s_stop(struct seq_file *m, void *p)
  3764. {
  3765. up_read(&slub_lock);
  3766. }
  3767. static int s_show(struct seq_file *m, void *p)
  3768. {
  3769. unsigned long nr_partials = 0;
  3770. unsigned long nr_slabs = 0;
  3771. unsigned long nr_inuse = 0;
  3772. unsigned long nr_objs = 0;
  3773. unsigned long nr_free = 0;
  3774. struct kmem_cache *s;
  3775. int node;
  3776. s = list_entry(p, struct kmem_cache, list);
  3777. for_each_online_node(node) {
  3778. struct kmem_cache_node *n = get_node(s, node);
  3779. if (!n)
  3780. continue;
  3781. nr_partials += n->nr_partial;
  3782. nr_slabs += atomic_long_read(&n->nr_slabs);
  3783. nr_objs += atomic_long_read(&n->total_objects);
  3784. nr_free += count_partial(n, count_free);
  3785. }
  3786. nr_inuse = nr_objs - nr_free;
  3787. seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
  3788. nr_objs, s->size, oo_objects(s->oo),
  3789. (1 << oo_order(s->oo)));
  3790. seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
  3791. seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
  3792. 0UL);
  3793. seq_putc(m, '\n');
  3794. return 0;
  3795. }
  3796. static const struct seq_operations slabinfo_op = {
  3797. .start = s_start,
  3798. .next = s_next,
  3799. .stop = s_stop,
  3800. .show = s_show,
  3801. };
  3802. static int slabinfo_open(struct inode *inode, struct file *file)
  3803. {
  3804. return seq_open(file, &slabinfo_op);
  3805. }
  3806. static const struct file_operations proc_slabinfo_operations = {
  3807. .open = slabinfo_open,
  3808. .read = seq_read,
  3809. .llseek = seq_lseek,
  3810. .release = seq_release,
  3811. };
  3812. static int __init slab_proc_init(void)
  3813. {
  3814. proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
  3815. return 0;
  3816. }
  3817. module_init(slab_proc_init);
  3818. #endif /* CONFIG_SLABINFO */