slab.c 107 KB

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