slub.c 101 KB

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