slab.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:52k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  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.  * An implementation of the Slab Allocator as described in outline in;
  12.  * UNIX Internals: The New Frontiers by Uresh Vahalia
  13.  * Pub: Prentice Hall ISBN 0-13-101908-2
  14.  * or with a little more detail in;
  15.  * The Slab Allocator: An Object-Caching Kernel Memory Allocator
  16.  * Jeff Bonwick (Sun Microsystems).
  17.  * Presented at: USENIX Summer 1994 Technical Conference
  18.  *
  19.  *
  20.  * The memory is organized in caches, one cache for each object type.
  21.  * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
  22.  * Each cache consists out of many slabs (they are small (usually one
  23.  * page long) and always contiguous), and each slab contains multiple
  24.  * initialized objects.
  25.  *
  26.  * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
  27.  * normal). If you need a special memory type, then must create a new
  28.  * cache for that memory type.
  29.  *
  30.  * In order to reduce fragmentation, the slabs are sorted in 3 groups:
  31.  *   full slabs with 0 free objects
  32.  *   partial slabs
  33.  *   empty slabs with no allocated objects
  34.  *
  35.  * If partial slabs exist, then new allocations come from these slabs,
  36.  * otherwise from empty slabs or new slabs are allocated.
  37.  *
  38.  * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
  39.  * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
  40.  *
  41.  * On SMP systems, each cache has a short per-cpu head array, most allocs
  42.  * and frees go into that array, and if that array overflows, then 1/2
  43.  * of the entries in the array are given back into the global cache.
  44.  * This reduces the number of spinlock operations.
  45.  *
  46.  * The c_cpuarray may not be read with enabled local interrupts.
  47.  *
  48.  * SMP synchronization:
  49.  *  constructors and destructors are called without any locking.
  50.  *  Several members in kmem_cache_t and slab_t never change, they
  51.  * are accessed without any locking.
  52.  *  The per-cpu arrays are never accessed from the wrong cpu, no locking.
  53.  *  The non-constant members are protected with a per-cache irq spinlock.
  54.  *
  55.  * Further notes from the original documentation:
  56.  *
  57.  * 11 April '97.  Started multi-threading - markhe
  58.  * The global cache-chain is protected by the semaphore 'cache_chain_sem'.
  59.  * The sem is only needed when accessing/extending the cache-chain, which
  60.  * can never happen inside an interrupt (kmem_cache_create(),
  61.  * kmem_cache_shrink() and kmem_cache_reap()).
  62.  *
  63.  * To prevent kmem_cache_shrink() trying to shrink a 'growing' cache (which
  64.  * maybe be sleeping and therefore not holding the semaphore/lock), the
  65.  * growing field is used.  This also prevents reaping from a cache.
  66.  *
  67.  * At present, each engine can be growing a cache.  This should be blocked.
  68.  *
  69.  */
  70. #include <linux/config.h>
  71. #include <linux/slab.h>
  72. #include <linux/interrupt.h>
  73. #include <linux/init.h>
  74. #include <linux/compiler.h>
  75. #include <linux/seq_file.h>
  76. #include <asm/uaccess.h>
  77. /*
  78.  * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
  79.  *   SLAB_RED_ZONE & SLAB_POISON.
  80.  *   0 for faster, smaller code (especially in the critical paths).
  81.  *
  82.  * STATS - 1 to collect stats for /proc/slabinfo.
  83.  *   0 for faster, smaller code (especially in the critical paths).
  84.  *
  85.  * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
  86.  */
  87. #ifdef CONFIG_DEBUG_SLAB
  88. #define DEBUG 1
  89. #define STATS 1
  90. #define FORCED_DEBUG 1
  91. #else
  92. #define DEBUG 0
  93. #define STATS 0
  94. #define FORCED_DEBUG 0
  95. #endif
  96. /*
  97.  * Parameters for kmem_cache_reap
  98.  */
  99. #define REAP_SCANLEN 10
  100. #define REAP_PERFECT 10
  101. /* Shouldn't this be in a header file somewhere? */
  102. #define BYTES_PER_WORD sizeof(void *)
  103. /* Legal flag mask for kmem_cache_create(). */
  104. #if DEBUG
  105. # define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | 
  106.  SLAB_POISON | SLAB_HWCACHE_ALIGN | 
  107.  SLAB_NO_REAP | SLAB_CACHE_DMA | 
  108.  SLAB_MUST_HWCACHE_ALIGN)
  109. #else
  110. # define CREATE_MASK (SLAB_HWCACHE_ALIGN | SLAB_NO_REAP | 
  111.  SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN)
  112. #endif
  113. /*
  114.  * kmem_bufctl_t:
  115.  *
  116.  * Bufctl's are used for linking objs within a slab
  117.  * linked offsets.
  118.  *
  119.  * This implementation relies on "struct page" for locating the cache &
  120.  * slab an object belongs to.
  121.  * This allows the bufctl structure to be small (one int), but limits
  122.  * the number of objects a slab (not a cache) can contain when off-slab
  123.  * bufctls are used. The limit is the size of the largest general cache
  124.  * that does not use off-slab slabs.
  125.  * For 32bit archs with 4 kB pages, is this 56.
  126.  * This is not serious, as it is only for large objects, when it is unwise
  127.  * to have too many per slab.
  128.  * Note: This limit can be raised by introducing a general cache whose size
  129.  * is less than 512 (PAGE_SIZE<<3), but greater than 256.
  130.  */
  131. #define BUFCTL_END 0xffffFFFF
  132. #define SLAB_LIMIT 0xffffFFFE
  133. typedef unsigned int kmem_bufctl_t;
  134. /* Max number of objs-per-slab for caches which use off-slab slabs.
  135.  * Needed to avoid a possible looping condition in kmem_cache_grow().
  136.  */
  137. static unsigned long offslab_limit;
  138. /*
  139.  * slab_t
  140.  *
  141.  * Manages the objs in a slab. Placed either at the beginning of mem allocated
  142.  * for a slab, or allocated from an general cache.
  143.  * Slabs are chained into three list: fully used, partial, fully free slabs.
  144.  */
  145. typedef struct slab_s {
  146. struct list_head list;
  147. unsigned long colouroff;
  148. void *s_mem; /* including colour offset */
  149. unsigned int inuse; /* num of objs active in slab */
  150. kmem_bufctl_t free;
  151. } slab_t;
  152. #define slab_bufctl(slabp) 
  153. ((kmem_bufctl_t *)(((slab_t*)slabp)+1))
  154. /*
  155.  * cpucache_t
  156.  *
  157.  * Per cpu structures
  158.  * The limit is stored in the per-cpu structure to reduce the data cache
  159.  * footprint.
  160.  */
  161. typedef struct cpucache_s {
  162. unsigned int avail;
  163. unsigned int limit;
  164. } cpucache_t;
  165. #define cc_entry(cpucache) 
  166. ((void **)(((cpucache_t*)(cpucache))+1))
  167. #define cc_data(cachep) 
  168. ((cachep)->cpudata[smp_processor_id()])
  169. /*
  170.  * kmem_cache_t
  171.  *
  172.  * manages a cache.
  173.  */
  174. #define CACHE_NAMELEN 20 /* max name length for a slab cache */
  175. struct kmem_cache_s {
  176. /* 1) each alloc & free */
  177. /* full, partial first, then free */
  178. struct list_head slabs_full;
  179. struct list_head slabs_partial;
  180. struct list_head slabs_free;
  181. unsigned int objsize;
  182. unsigned int   flags; /* constant flags */
  183. unsigned int num; /* # of objs per slab */
  184. spinlock_t spinlock;
  185. #ifdef CONFIG_SMP
  186. unsigned int batchcount;
  187. #endif
  188. /* 2) slab additions /removals */
  189. /* order of pgs per slab (2^n) */
  190. unsigned int gfporder;
  191. /* force GFP flags, e.g. GFP_DMA */
  192. unsigned int gfpflags;
  193. size_t colour; /* cache colouring range */
  194. unsigned int colour_off; /* colour offset */
  195. unsigned int colour_next; /* cache colouring */
  196. kmem_cache_t *slabp_cache;
  197. unsigned int growing;
  198. unsigned int dflags; /* dynamic flags */
  199. /* constructor func */
  200. void (*ctor)(void *, kmem_cache_t *, unsigned long);
  201. /* de-constructor func */
  202. void (*dtor)(void *, kmem_cache_t *, unsigned long);
  203. unsigned long failures;
  204. /* 3) cache creation/removal */
  205. char name[CACHE_NAMELEN];
  206. struct list_head next;
  207. #ifdef CONFIG_SMP
  208. /* 4) per-cpu data */
  209. cpucache_t *cpudata[NR_CPUS];
  210. #endif
  211. #if STATS
  212. unsigned long num_active;
  213. unsigned long num_allocations;
  214. unsigned long high_mark;
  215. unsigned long grown;
  216. unsigned long reaped;
  217. unsigned long  errors;
  218. #ifdef CONFIG_SMP
  219. atomic_t allochit;
  220. atomic_t allocmiss;
  221. atomic_t freehit;
  222. atomic_t freemiss;
  223. #endif
  224. #endif
  225. };
  226. /* internal c_flags */
  227. #define CFLGS_OFF_SLAB 0x010000UL /* slab management in own cache */
  228. #define CFLGS_OPTIMIZE 0x020000UL /* optimized slab lookup */
  229. /* c_dflags (dynamic flags). Need to hold the spinlock to access this member */
  230. #define DFLGS_GROWN 0x000001UL /* don't reap a recently grown */
  231. #define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
  232. #define OPTIMIZE(x) ((x)->flags & CFLGS_OPTIMIZE)
  233. #define GROWN(x) ((x)->dlags & DFLGS_GROWN)
  234. #if STATS
  235. #define STATS_INC_ACTIVE(x) ((x)->num_active++)
  236. #define STATS_DEC_ACTIVE(x) ((x)->num_active--)
  237. #define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
  238. #define STATS_INC_GROWN(x) ((x)->grown++)
  239. #define STATS_INC_REAPED(x) ((x)->reaped++)
  240. #define STATS_SET_HIGH(x) do { if ((x)->num_active > (x)->high_mark) 
  241. (x)->high_mark = (x)->num_active; 
  242. } while (0)
  243. #define STATS_INC_ERR(x) ((x)->errors++)
  244. #else
  245. #define STATS_INC_ACTIVE(x) do { } while (0)
  246. #define STATS_DEC_ACTIVE(x) do { } while (0)
  247. #define STATS_INC_ALLOCED(x) do { } while (0)
  248. #define STATS_INC_GROWN(x) do { } while (0)
  249. #define STATS_INC_REAPED(x) do { } while (0)
  250. #define STATS_SET_HIGH(x) do { } while (0)
  251. #define STATS_INC_ERR(x) do { } while (0)
  252. #endif
  253. #if STATS && defined(CONFIG_SMP)
  254. #define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
  255. #define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
  256. #define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
  257. #define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
  258. #else
  259. #define STATS_INC_ALLOCHIT(x) do { } while (0)
  260. #define STATS_INC_ALLOCMISS(x) do { } while (0)
  261. #define STATS_INC_FREEHIT(x) do { } while (0)
  262. #define STATS_INC_FREEMISS(x) do { } while (0)
  263. #endif
  264. #if DEBUG
  265. /* Magic nums for obj red zoning.
  266.  * Placed in the first word before and the first word after an obj.
  267.  */
  268. #define RED_MAGIC1 0x5A2CF071UL /* when obj is active */
  269. #define RED_MAGIC2 0x170FC2A5UL /* when obj is inactive */
  270. /* ...and for poisoning */
  271. #define POISON_BYTE 0x5a /* byte value for poisoning */
  272. #define POISON_END 0xa5 /* end-byte of poisoning */
  273. #endif
  274. /* maximum size of an obj (in 2^order pages) */
  275. #define MAX_OBJ_ORDER 5 /* 32 pages */
  276. /*
  277.  * Do not go above this order unless 0 objects fit into the slab.
  278.  */
  279. #define BREAK_GFP_ORDER_HI 2
  280. #define BREAK_GFP_ORDER_LO 1
  281. static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
  282. /*
  283.  * Absolute limit for the gfp order
  284.  */
  285. #define MAX_GFP_ORDER 5 /* 32 pages */
  286. /* Macros for storing/retrieving the cachep and or slab from the
  287.  * global 'mem_map'. These are used to find the slab an obj belongs to.
  288.  * With kfree(), these are used to find the cache which an obj belongs to.
  289.  */
  290. #define SET_PAGE_CACHE(pg,x)  ((pg)->list.next = (struct list_head *)(x))
  291. #define GET_PAGE_CACHE(pg)    ((kmem_cache_t *)(pg)->list.next)
  292. #define SET_PAGE_SLAB(pg,x)   ((pg)->list.prev = (struct list_head *)(x))
  293. #define GET_PAGE_SLAB(pg)     ((slab_t *)(pg)->list.prev)
  294. /* Size description struct for general caches. */
  295. typedef struct cache_sizes {
  296. size_t  cs_size;
  297. kmem_cache_t *cs_cachep;
  298. kmem_cache_t *cs_dmacachep;
  299. } cache_sizes_t;
  300. static cache_sizes_t cache_sizes[] = {
  301. #if PAGE_SIZE == 4096
  302. {    32, NULL, NULL},
  303. #endif
  304. {    64, NULL, NULL},
  305. {   128, NULL, NULL},
  306. {   256, NULL, NULL},
  307. {   512, NULL, NULL},
  308. {  1024, NULL, NULL},
  309. {  2048, NULL, NULL},
  310. {  4096, NULL, NULL},
  311. {  8192, NULL, NULL},
  312. { 16384, NULL, NULL},
  313. { 32768, NULL, NULL},
  314. { 65536, NULL, NULL},
  315. {131072, NULL, NULL},
  316. {     0, NULL, NULL}
  317. };
  318. /* internal cache of cache description objs */
  319. static kmem_cache_t cache_cache = {
  320. slabs_full: LIST_HEAD_INIT(cache_cache.slabs_full),
  321. slabs_partial: LIST_HEAD_INIT(cache_cache.slabs_partial),
  322. slabs_free: LIST_HEAD_INIT(cache_cache.slabs_free),
  323. objsize: sizeof(kmem_cache_t),
  324. flags: SLAB_NO_REAP,
  325. spinlock: SPIN_LOCK_UNLOCKED,
  326. colour_off: L1_CACHE_BYTES,
  327. name: "kmem_cache",
  328. };
  329. /* Guard access to the cache-chain. */
  330. static struct semaphore cache_chain_sem;
  331. /* Place maintainer for reaping. */
  332. static kmem_cache_t *clock_searchp = &cache_cache;
  333. #define cache_chain (cache_cache.next)
  334. #ifdef CONFIG_SMP
  335. /*
  336.  * chicken and egg problem: delay the per-cpu array allocation
  337.  * until the general caches are up.
  338.  */
  339. static int g_cpucache_up;
  340. static void enable_cpucache (kmem_cache_t *cachep);
  341. static void enable_all_cpucaches (void);
  342. #endif
  343. /* Cal the num objs, wastage, and bytes left over for a given slab size. */
  344. static void kmem_cache_estimate (unsigned long gfporder, size_t size,
  345.  int flags, size_t *left_over, unsigned int *num)
  346. {
  347. int i;
  348. size_t wastage = PAGE_SIZE<<gfporder;
  349. size_t extra = 0;
  350. size_t base = 0;
  351. if (!(flags & CFLGS_OFF_SLAB)) {
  352. base = sizeof(slab_t);
  353. extra = sizeof(kmem_bufctl_t);
  354. }
  355. i = 0;
  356. while (i*size + L1_CACHE_ALIGN(base+i*extra) <= wastage)
  357. i++;
  358. if (i > 0)
  359. i--;
  360. if (i > SLAB_LIMIT)
  361. i = SLAB_LIMIT;
  362. *num = i;
  363. wastage -= i*size;
  364. wastage -= L1_CACHE_ALIGN(base+i*extra);
  365. *left_over = wastage;
  366. }
  367. /* Initialisation - setup the `cache' cache. */
  368. void __init kmem_cache_init(void)
  369. {
  370. size_t left_over;
  371. init_MUTEX(&cache_chain_sem);
  372. INIT_LIST_HEAD(&cache_chain);
  373. kmem_cache_estimate(0, cache_cache.objsize, 0,
  374. &left_over, &cache_cache.num);
  375. if (!cache_cache.num)
  376. BUG();
  377. cache_cache.colour = left_over/cache_cache.colour_off;
  378. cache_cache.colour_next = 0;
  379. }
  380. /* Initialisation - setup remaining internal and general caches.
  381.  * Called after the gfp() functions have been enabled, and before smp_init().
  382.  */
  383. void __init kmem_cache_sizes_init(void)
  384. {
  385. cache_sizes_t *sizes = cache_sizes;
  386. char name[20];
  387. /*
  388.  * Fragmentation resistance on low memory - only use bigger
  389.  * page orders on machines with more than 32MB of memory.
  390.  */
  391. if (num_physpages > (32 << 20) >> PAGE_SHIFT)
  392. slab_break_gfp_order = BREAK_GFP_ORDER_HI;
  393. do {
  394. /* For performance, all the general caches are L1 aligned.
  395.  * This should be particularly beneficial on SMP boxes, as it
  396.  * eliminates "false sharing".
  397.  * Note for systems short on memory removing the alignment will
  398.  * allow tighter packing of the smaller caches. */
  399. snprintf(name, sizeof(name), "size-%Zd",sizes->cs_size);
  400. if (!(sizes->cs_cachep =
  401. kmem_cache_create(name, sizes->cs_size,
  402. 0, SLAB_HWCACHE_ALIGN, NULL, NULL))) {
  403. BUG();
  404. }
  405. /* Inc off-slab bufctl limit until the ceiling is hit. */
  406. if (!(OFF_SLAB(sizes->cs_cachep))) {
  407. offslab_limit = sizes->cs_size-sizeof(slab_t);
  408. offslab_limit /= 2;
  409. }
  410. snprintf(name, sizeof(name), "size-%Zd(DMA)",sizes->cs_size);
  411. sizes->cs_dmacachep = kmem_cache_create(name, sizes->cs_size, 0,
  412.       SLAB_CACHE_DMA|SLAB_HWCACHE_ALIGN, NULL, NULL);
  413. if (!sizes->cs_dmacachep)
  414. BUG();
  415. sizes++;
  416. } while (sizes->cs_size);
  417. }
  418. int __init kmem_cpucache_init(void)
  419. {
  420. #ifdef CONFIG_SMP
  421. g_cpucache_up = 1;
  422. enable_all_cpucaches();
  423. #endif
  424. return 0;
  425. }
  426. __initcall(kmem_cpucache_init);
  427. /* Interface to system's page allocator. No need to hold the cache-lock.
  428.  */
  429. static inline void * kmem_getpages (kmem_cache_t *cachep, unsigned long flags)
  430. {
  431. void *addr;
  432. /*
  433.  * If we requested dmaable memory, we will get it. Even if we
  434.  * did not request dmaable memory, we might get it, but that
  435.  * would be relatively rare and ignorable.
  436.  */
  437. flags |= cachep->gfpflags;
  438. addr = (void*) __get_free_pages(flags, cachep->gfporder);
  439. /* Assume that now we have the pages no one else can legally
  440.  * messes with the 'struct page's.
  441.  * However vm_scan() might try to test the structure to see if
  442.  * it is a named-page or buffer-page.  The members it tests are
  443.  * of no interest here.....
  444.  */
  445. return addr;
  446. }
  447. /* Interface to system's page release. */
  448. static inline void kmem_freepages (kmem_cache_t *cachep, void *addr)
  449. {
  450. unsigned long i = (1<<cachep->gfporder);
  451. struct page *page = virt_to_page(addr);
  452. /* free_pages() does not clear the type bit - we do that.
  453.  * The pages have been unlinked from their cache-slab,
  454.  * but their 'struct page's might be accessed in
  455.  * vm_scan(). Shouldn't be a worry.
  456.  */
  457. while (i--) {
  458. PageClearSlab(page);
  459. page++;
  460. }
  461. free_pages((unsigned long)addr, cachep->gfporder);
  462. }
  463. #if DEBUG
  464. static inline void kmem_poison_obj (kmem_cache_t *cachep, void *addr)
  465. {
  466. int size = cachep->objsize;
  467. if (cachep->flags & SLAB_RED_ZONE) {
  468. addr += BYTES_PER_WORD;
  469. size -= 2*BYTES_PER_WORD;
  470. }
  471. memset(addr, POISON_BYTE, size);
  472. *(unsigned char *)(addr+size-1) = POISON_END;
  473. }
  474. static inline int kmem_check_poison_obj (kmem_cache_t *cachep, void *addr)
  475. {
  476. int size = cachep->objsize;
  477. void *end;
  478. if (cachep->flags & SLAB_RED_ZONE) {
  479. addr += BYTES_PER_WORD;
  480. size -= 2*BYTES_PER_WORD;
  481. }
  482. end = memchr(addr, POISON_END, size);
  483. if (end != (addr+size-1))
  484. return 1;
  485. return 0;
  486. }
  487. #endif
  488. /* Destroy all the objs in a slab, and release the mem back to the system.
  489.  * Before calling the slab must have been unlinked from the cache.
  490.  * The cache-lock is not held/needed.
  491.  */
  492. static void kmem_slab_destroy (kmem_cache_t *cachep, slab_t *slabp)
  493. {
  494. if (cachep->dtor
  495. #if DEBUG
  496. || cachep->flags & (SLAB_POISON | SLAB_RED_ZONE)
  497. #endif
  498. ) {
  499. int i;
  500. for (i = 0; i < cachep->num; i++) {
  501. void* objp = slabp->s_mem+cachep->objsize*i;
  502. #if DEBUG
  503. if (cachep->flags & SLAB_RED_ZONE) {
  504. if (*((unsigned long*)(objp)) != RED_MAGIC1)
  505. BUG();
  506. if (*((unsigned long*)(objp + cachep->objsize
  507. -BYTES_PER_WORD)) != RED_MAGIC1)
  508. BUG();
  509. objp += BYTES_PER_WORD;
  510. }
  511. #endif
  512. if (cachep->dtor)
  513. (cachep->dtor)(objp, cachep, 0);
  514. #if DEBUG
  515. if (cachep->flags & SLAB_RED_ZONE) {
  516. objp -= BYTES_PER_WORD;
  517. }
  518. if ((cachep->flags & SLAB_POISON)  &&
  519. kmem_check_poison_obj(cachep, objp))
  520. BUG();
  521. #endif
  522. }
  523. }
  524. kmem_freepages(cachep, slabp->s_mem-slabp->colouroff);
  525. if (OFF_SLAB(cachep))
  526. kmem_cache_free(cachep->slabp_cache, slabp);
  527. }
  528. /**
  529.  * kmem_cache_create - Create a cache.
  530.  * @name: A string which is used in /proc/slabinfo to identify this cache.
  531.  * @size: The size of objects to be created in this cache.
  532.  * @offset: The offset to use within the page.
  533.  * @flags: SLAB flags
  534.  * @ctor: A constructor for the objects.
  535.  * @dtor: A destructor for the objects.
  536.  *
  537.  * Returns a ptr to the cache on success, NULL on failure.
  538.  * Cannot be called within a int, but can be interrupted.
  539.  * The @ctor is run when new pages are allocated by the cache
  540.  * and the @dtor is run before the pages are handed back.
  541.  * The flags are
  542.  *
  543.  * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
  544.  * to catch references to uninitialised memory.
  545.  *
  546.  * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
  547.  * for buffer overruns.
  548.  *
  549.  * %SLAB_NO_REAP - Don't automatically reap this cache when we're under
  550.  * memory pressure.
  551.  *
  552.  * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
  553.  * cacheline.  This can be beneficial if you're counting cycles as closely
  554.  * as davem.
  555.  */
  556. kmem_cache_t *
  557. kmem_cache_create (const char *name, size_t size, size_t offset,
  558. unsigned long flags, void (*ctor)(void*, kmem_cache_t *, unsigned long),
  559. void (*dtor)(void*, kmem_cache_t *, unsigned long))
  560. {
  561. const char *func_nm = KERN_ERR "kmem_create: ";
  562. size_t left_over, align, slab_size;
  563. kmem_cache_t *cachep = NULL;
  564. /*
  565.  * Sanity checks... these are all serious usage bugs.
  566.  */
  567. if ((!name) ||
  568. ((strlen(name) >= CACHE_NAMELEN - 1)) ||
  569. in_interrupt() ||
  570. (size < BYTES_PER_WORD) ||
  571. (size > (1<<MAX_OBJ_ORDER)*PAGE_SIZE) ||
  572. (dtor && !ctor) ||
  573. (offset < 0 || offset > size))
  574. BUG();
  575. #if DEBUG
  576. if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
  577. /* No constructor, but inital state check requested */
  578. printk("%sNo con, but init state check requested - %sn", func_nm, name);
  579. flags &= ~SLAB_DEBUG_INITIAL;
  580. }
  581. if ((flags & SLAB_POISON) && ctor) {
  582. /* request for poisoning, but we can't do that with a constructor */
  583. printk("%sPoisoning requested, but con given - %sn", func_nm, name);
  584. flags &= ~SLAB_POISON;
  585. }
  586. #if FORCED_DEBUG
  587. if ((size < (PAGE_SIZE>>3)) && !(flags & SLAB_MUST_HWCACHE_ALIGN))
  588. /*
  589.  * do not red zone large object, causes severe
  590.  * fragmentation.
  591.  */
  592. flags |= SLAB_RED_ZONE;
  593. if (!ctor)
  594. flags |= SLAB_POISON;
  595. #endif
  596. #endif
  597. /*
  598.  * Always checks flags, a caller might be expecting debug
  599.  * support which isn't available.
  600.  */
  601. BUG_ON(flags & ~CREATE_MASK);
  602. /* Get cache's description obj. */
  603. cachep = (kmem_cache_t *) kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
  604. if (!cachep)
  605. goto opps;
  606. memset(cachep, 0, sizeof(kmem_cache_t));
  607. /* Check that size is in terms of words.  This is needed to avoid
  608.  * unaligned accesses for some archs when redzoning is used, and makes
  609.  * sure any on-slab bufctl's are also correctly aligned.
  610.  */
  611. if (size & (BYTES_PER_WORD-1)) {
  612. size += (BYTES_PER_WORD-1);
  613. size &= ~(BYTES_PER_WORD-1);
  614. printk("%sForcing size word alignment - %sn", func_nm, name);
  615. }
  616. #if DEBUG
  617. if (flags & SLAB_RED_ZONE) {
  618. /*
  619.  * There is no point trying to honour cache alignment
  620.  * when redzoning.
  621.  */
  622. flags &= ~SLAB_HWCACHE_ALIGN;
  623. size += 2*BYTES_PER_WORD; /* words for redzone */
  624. }
  625. #endif
  626. align = BYTES_PER_WORD;
  627. if (flags & SLAB_HWCACHE_ALIGN)
  628. align = L1_CACHE_BYTES;
  629. /* Determine if the slab management is 'on' or 'off' slab. */
  630. if (size >= (PAGE_SIZE>>3))
  631. /*
  632.  * Size is large, assume best to place the slab management obj
  633.  * off-slab (should allow better packing of objs).
  634.  */
  635. flags |= CFLGS_OFF_SLAB;
  636. if (flags & SLAB_HWCACHE_ALIGN) {
  637. /* Need to adjust size so that objs are cache aligned. */
  638. /* Small obj size, can get at least two per cache line. */
  639. /* FIXME: only power of 2 supported, was better */
  640. while (size < align/2)
  641. align /= 2;
  642. size = (size+align-1)&(~(align-1));
  643. }
  644. /* Cal size (in pages) of slabs, and the num of objs per slab.
  645.  * This could be made much more intelligent.  For now, try to avoid
  646.  * using high page-orders for slabs.  When the gfp() funcs are more
  647.  * friendly towards high-order requests, this should be changed.
  648.  */
  649. do {
  650. unsigned int break_flag = 0;
  651. cal_wastage:
  652. kmem_cache_estimate(cachep->gfporder, size, flags,
  653. &left_over, &cachep->num);
  654. if (break_flag)
  655. break;
  656. if (cachep->gfporder >= MAX_GFP_ORDER)
  657. break;
  658. if (!cachep->num)
  659. goto next;
  660. if (flags & CFLGS_OFF_SLAB && cachep->num > offslab_limit) {
  661. /* Oops, this num of objs will cause problems. */
  662. cachep->gfporder--;
  663. break_flag++;
  664. goto cal_wastage;
  665. }
  666. /*
  667.  * Large num of objs is good, but v. large slabs are currently
  668.  * bad for the gfp()s.
  669.  */
  670. if (cachep->gfporder >= slab_break_gfp_order)
  671. break;
  672. if ((left_over*8) <= (PAGE_SIZE<<cachep->gfporder))
  673. break; /* Acceptable internal fragmentation. */
  674. next:
  675. cachep->gfporder++;
  676. } while (1);
  677. if (!cachep->num) {
  678. printk("kmem_cache_create: couldn't create cache %s.n", name);
  679. kmem_cache_free(&cache_cache, cachep);
  680. cachep = NULL;
  681. goto opps;
  682. }
  683. slab_size = L1_CACHE_ALIGN(cachep->num*sizeof(kmem_bufctl_t)+sizeof(slab_t));
  684. /*
  685.  * If the slab has been placed off-slab, and we have enough space then
  686.  * move it on-slab. This is at the expense of any extra colouring.
  687.  */
  688. if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
  689. flags &= ~CFLGS_OFF_SLAB;
  690. left_over -= slab_size;
  691. }
  692. /* Offset must be a multiple of the alignment. */
  693. offset += (align-1);
  694. offset &= ~(align-1);
  695. if (!offset)
  696. offset = L1_CACHE_BYTES;
  697. cachep->colour_off = offset;
  698. cachep->colour = left_over/offset;
  699. /* init remaining fields */
  700. if (!cachep->gfporder && !(flags & CFLGS_OFF_SLAB))
  701. flags |= CFLGS_OPTIMIZE;
  702. cachep->flags = flags;
  703. cachep->gfpflags = 0;
  704. if (flags & SLAB_CACHE_DMA)
  705. cachep->gfpflags |= GFP_DMA;
  706. spin_lock_init(&cachep->spinlock);
  707. cachep->objsize = size;
  708. INIT_LIST_HEAD(&cachep->slabs_full);
  709. INIT_LIST_HEAD(&cachep->slabs_partial);
  710. INIT_LIST_HEAD(&cachep->slabs_free);
  711. if (flags & CFLGS_OFF_SLAB)
  712. cachep->slabp_cache = kmem_find_general_cachep(slab_size,0);
  713. cachep->ctor = ctor;
  714. cachep->dtor = dtor;
  715. /* Copy name over so we don't have problems with unloaded modules */
  716. strcpy(cachep->name, name);
  717. #ifdef CONFIG_SMP
  718. if (g_cpucache_up)
  719. enable_cpucache(cachep);
  720. #endif
  721. /* Need the semaphore to access the chain. */
  722. down(&cache_chain_sem);
  723. {
  724. struct list_head *p;
  725. list_for_each(p, &cache_chain) {
  726. kmem_cache_t *pc = list_entry(p, kmem_cache_t, next);
  727. /* The name field is constant - no lock needed. */
  728. if (!strcmp(pc->name, name))
  729. BUG();
  730. }
  731. }
  732. /* There is no reason to lock our new cache before we
  733.  * link it in - no one knows about it yet...
  734.  */
  735. list_add(&cachep->next, &cache_chain);
  736. up(&cache_chain_sem);
  737. opps:
  738. return cachep;
  739. }
  740. #if DEBUG
  741. /*
  742.  * This check if the kmem_cache_t pointer is chained in the cache_cache
  743.  * list. -arca
  744.  */
  745. static int is_chained_kmem_cache(kmem_cache_t * cachep)
  746. {
  747. struct list_head *p;
  748. int ret = 0;
  749. /* Find the cache in the chain of caches. */
  750. down(&cache_chain_sem);
  751. list_for_each(p, &cache_chain) {
  752. if (p == &cachep->next) {
  753. ret = 1;
  754. break;
  755. }
  756. }
  757. up(&cache_chain_sem);
  758. return ret;
  759. }
  760. #else
  761. #define is_chained_kmem_cache(x) 1
  762. #endif
  763. #ifdef CONFIG_SMP
  764. /*
  765.  * Waits for all CPUs to execute func().
  766.  */
  767. static void smp_call_function_all_cpus(void (*func) (void *arg), void *arg)
  768. {
  769. local_irq_disable();
  770. func(arg);
  771. local_irq_enable();
  772. if (smp_call_function(func, arg, 1, 1))
  773. BUG();
  774. }
  775. typedef struct ccupdate_struct_s
  776. {
  777. kmem_cache_t *cachep;
  778. cpucache_t *new[NR_CPUS];
  779. } ccupdate_struct_t;
  780. static void do_ccupdate_local(void *info)
  781. {
  782. ccupdate_struct_t *new = (ccupdate_struct_t *)info;
  783. cpucache_t *old = cc_data(new->cachep);
  784. cc_data(new->cachep) = new->new[smp_processor_id()];
  785. new->new[smp_processor_id()] = old;
  786. }
  787. static void free_block (kmem_cache_t* cachep, void** objpp, int len);
  788. static void drain_cpu_caches(kmem_cache_t *cachep)
  789. {
  790. ccupdate_struct_t new;
  791. int i;
  792. memset(&new.new,0,sizeof(new.new));
  793. new.cachep = cachep;
  794. down(&cache_chain_sem);
  795. smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
  796. for (i = 0; i < smp_num_cpus; i++) {
  797. cpucache_t* ccold = new.new[cpu_logical_map(i)];
  798. if (!ccold || (ccold->avail == 0))
  799. continue;
  800. local_irq_disable();
  801. free_block(cachep, cc_entry(ccold), ccold->avail);
  802. local_irq_enable();
  803. ccold->avail = 0;
  804. }
  805. smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
  806. up(&cache_chain_sem);
  807. }
  808. #else
  809. #define drain_cpu_caches(cachep) do { } while (0)
  810. #endif
  811. /*
  812.  * Called with the &cachep->spinlock held, returns number of slabs released
  813.  */
  814. static int __kmem_cache_shrink_locked(kmem_cache_t *cachep)
  815. {
  816. slab_t *slabp;
  817. int ret = 0;
  818. /* If the cache is growing, stop shrinking. */
  819. while (!cachep->growing) {
  820. struct list_head *p;
  821. p = cachep->slabs_free.prev;
  822. if (p == &cachep->slabs_free)
  823. break;
  824. slabp = list_entry(cachep->slabs_free.prev, slab_t, list);
  825. #if DEBUG
  826. if (slabp->inuse)
  827. BUG();
  828. #endif
  829. list_del(&slabp->list);
  830. spin_unlock_irq(&cachep->spinlock);
  831. kmem_slab_destroy(cachep, slabp);
  832. ret++;
  833. spin_lock_irq(&cachep->spinlock);
  834. }
  835. return ret;
  836. }
  837. static int __kmem_cache_shrink(kmem_cache_t *cachep)
  838. {
  839. int ret;
  840. drain_cpu_caches(cachep);
  841. spin_lock_irq(&cachep->spinlock);
  842. __kmem_cache_shrink_locked(cachep);
  843. ret = !list_empty(&cachep->slabs_full) ||
  844. !list_empty(&cachep->slabs_partial);
  845. spin_unlock_irq(&cachep->spinlock);
  846. return ret;
  847. }
  848. /**
  849.  * kmem_cache_shrink - Shrink a cache.
  850.  * @cachep: The cache to shrink.
  851.  *
  852.  * Releases as many slabs as possible for a cache.
  853.  * Returns number of pages released.
  854.  */
  855. int kmem_cache_shrink(kmem_cache_t *cachep)
  856. {
  857. int ret;
  858. if (!cachep || in_interrupt() || !is_chained_kmem_cache(cachep))
  859. BUG();
  860. spin_lock_irq(&cachep->spinlock);
  861. ret = __kmem_cache_shrink_locked(cachep);
  862. spin_unlock_irq(&cachep->spinlock);
  863. return ret << cachep->gfporder;
  864. }
  865. /**
  866.  * kmem_cache_destroy - delete a cache
  867.  * @cachep: the cache to destroy
  868.  *
  869.  * Remove a kmem_cache_t object from the slab cache.
  870.  * Returns 0 on success.
  871.  *
  872.  * It is expected this function will be called by a module when it is
  873.  * unloaded.  This will remove the cache completely, and avoid a duplicate
  874.  * cache being allocated each time a module is loaded and unloaded, if the
  875.  * module doesn't have persistent in-kernel storage across loads and unloads.
  876.  *
  877.  * The caller must guarantee that noone will allocate memory from the cache
  878.  * during the kmem_cache_destroy().
  879.  */
  880. int kmem_cache_destroy (kmem_cache_t * cachep)
  881. {
  882. if (!cachep || in_interrupt() || cachep->growing)
  883. BUG();
  884. /* Find the cache in the chain of caches. */
  885. down(&cache_chain_sem);
  886. /* the chain is never empty, cache_cache is never destroyed */
  887. if (clock_searchp == cachep)
  888. clock_searchp = list_entry(cachep->next.next,
  889. kmem_cache_t, next);
  890. list_del(&cachep->next);
  891. up(&cache_chain_sem);
  892. if (__kmem_cache_shrink(cachep)) {
  893. printk(KERN_ERR "kmem_cache_destroy: Can't free all objects %pn",
  894.        cachep);
  895. down(&cache_chain_sem);
  896. list_add(&cachep->next,&cache_chain);
  897. up(&cache_chain_sem);
  898. return 1;
  899. }
  900. #ifdef CONFIG_SMP
  901. {
  902. int i;
  903. for (i = 0; i < NR_CPUS; i++)
  904. kfree(cachep->cpudata[i]);
  905. }
  906. #endif
  907. kmem_cache_free(&cache_cache, cachep);
  908. return 0;
  909. }
  910. /* Get the memory for a slab management obj. */
  911. static inline slab_t * kmem_cache_slabmgmt (kmem_cache_t *cachep,
  912. void *objp, int colour_off, int local_flags)
  913. {
  914. slab_t *slabp;
  915. if (OFF_SLAB(cachep)) {
  916. /* Slab management obj is off-slab. */
  917. slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
  918. if (!slabp)
  919. return NULL;
  920. } else {
  921. /* FIXME: change to
  922. slabp = objp
  923.  * if you enable OPTIMIZE
  924.  */
  925. slabp = objp+colour_off;
  926. colour_off += L1_CACHE_ALIGN(cachep->num *
  927. sizeof(kmem_bufctl_t) + sizeof(slab_t));
  928. }
  929. slabp->inuse = 0;
  930. slabp->colouroff = colour_off;
  931. slabp->s_mem = objp+colour_off;
  932. return slabp;
  933. }
  934. static inline void kmem_cache_init_objs (kmem_cache_t * cachep,
  935. slab_t * slabp, unsigned long ctor_flags)
  936. {
  937. int i;
  938. for (i = 0; i < cachep->num; i++) {
  939. void* objp = slabp->s_mem+cachep->objsize*i;
  940. #if DEBUG
  941. if (cachep->flags & SLAB_RED_ZONE) {
  942. *((unsigned long*)(objp)) = RED_MAGIC1;
  943. *((unsigned long*)(objp + cachep->objsize -
  944. BYTES_PER_WORD)) = RED_MAGIC1;
  945. objp += BYTES_PER_WORD;
  946. }
  947. #endif
  948. /*
  949.  * Constructors are not allowed to allocate memory from
  950.  * the same cache which they are a constructor for.
  951.  * Otherwise, deadlock. They must also be threaded.
  952.  */
  953. if (cachep->ctor)
  954. cachep->ctor(objp, cachep, ctor_flags);
  955. #if DEBUG
  956. if (cachep->flags & SLAB_RED_ZONE)
  957. objp -= BYTES_PER_WORD;
  958. if (cachep->flags & SLAB_POISON)
  959. /* need to poison the objs */
  960. kmem_poison_obj(cachep, objp);
  961. if (cachep->flags & SLAB_RED_ZONE) {
  962. if (*((unsigned long*)(objp)) != RED_MAGIC1)
  963. BUG();
  964. if (*((unsigned long*)(objp + cachep->objsize -
  965. BYTES_PER_WORD)) != RED_MAGIC1)
  966. BUG();
  967. }
  968. #endif
  969. slab_bufctl(slabp)[i] = i+1;
  970. }
  971. slab_bufctl(slabp)[i-1] = BUFCTL_END;
  972. slabp->free = 0;
  973. }
  974. /*
  975.  * Grow (by 1) the number of slabs within a cache.  This is called by
  976.  * kmem_cache_alloc() when there are no active objs left in a cache.
  977.  */
  978. static int kmem_cache_grow (kmem_cache_t * cachep, int flags)
  979. {
  980. slab_t *slabp;
  981. struct page *page;
  982. void *objp;
  983. size_t  offset;
  984. unsigned int  i, local_flags;
  985. unsigned long  ctor_flags;
  986. unsigned long  save_flags;
  987. /* Be lazy and only check for valid flags here,
  988.    * keeping it out of the critical path in kmem_cache_alloc().
  989.  */
  990. if (flags & ~(SLAB_DMA|SLAB_LEVEL_MASK|SLAB_NO_GROW))
  991. BUG();
  992. if (flags & SLAB_NO_GROW)
  993. return 0;
  994. /*
  995.  * The test for missing atomic flag is performed here, rather than
  996.  * the more obvious place, simply to reduce the critical path length
  997.  * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
  998.  * will eventually be caught here (where it matters).
  999.  */
  1000. if (in_interrupt() && (flags & SLAB_LEVEL_MASK) != SLAB_ATOMIC)
  1001. BUG();
  1002. ctor_flags = SLAB_CTOR_CONSTRUCTOR;
  1003. local_flags = (flags & SLAB_LEVEL_MASK);
  1004. if (local_flags == SLAB_ATOMIC)
  1005. /*
  1006.  * Not allowed to sleep.  Need to tell a constructor about
  1007.  * this - it might need to know...
  1008.  */
  1009. ctor_flags |= SLAB_CTOR_ATOMIC;
  1010. /* About to mess with non-constant members - lock. */
  1011. spin_lock_irqsave(&cachep->spinlock, save_flags);
  1012. /* Get colour for the slab, and cal the next value. */
  1013. offset = cachep->colour_next;
  1014. cachep->colour_next++;
  1015. if (cachep->colour_next >= cachep->colour)
  1016. cachep->colour_next = 0;
  1017. offset *= cachep->colour_off;
  1018. cachep->dflags |= DFLGS_GROWN;
  1019. cachep->growing++;
  1020. spin_unlock_irqrestore(&cachep->spinlock, save_flags);
  1021. /* A series of memory allocations for a new slab.
  1022.  * Neither the cache-chain semaphore, or cache-lock, are
  1023.  * held, but the incrementing c_growing prevents this
  1024.  * cache from being reaped or shrunk.
  1025.  * Note: The cache could be selected in for reaping in
  1026.  * kmem_cache_reap(), but when the final test is made the
  1027.  * growing value will be seen.
  1028.  */
  1029. /* Get mem for the objs. */
  1030. if (!(objp = kmem_getpages(cachep, flags)))
  1031. goto failed;
  1032. /* Get slab management. */
  1033. if (!(slabp = kmem_cache_slabmgmt(cachep, objp, offset, local_flags)))
  1034. goto opps1;
  1035. /* Nasty!!!!!! I hope this is OK. */
  1036. i = 1 << cachep->gfporder;
  1037. page = virt_to_page(objp);
  1038. do {
  1039. SET_PAGE_CACHE(page, cachep);
  1040. SET_PAGE_SLAB(page, slabp);
  1041. PageSetSlab(page);
  1042. page++;
  1043. } while (--i);
  1044. kmem_cache_init_objs(cachep, slabp, ctor_flags);
  1045. spin_lock_irqsave(&cachep->spinlock, save_flags);
  1046. cachep->growing--;
  1047. /* Make slab active. */
  1048. list_add_tail(&slabp->list, &cachep->slabs_free);
  1049. STATS_INC_GROWN(cachep);
  1050. cachep->failures = 0;
  1051. spin_unlock_irqrestore(&cachep->spinlock, save_flags);
  1052. return 1;
  1053. opps1:
  1054. kmem_freepages(cachep, objp);
  1055. failed:
  1056. spin_lock_irqsave(&cachep->spinlock, save_flags);
  1057. cachep->growing--;
  1058. spin_unlock_irqrestore(&cachep->spinlock, save_flags);
  1059. return 0;
  1060. }
  1061. /*
  1062.  * Perform extra freeing checks:
  1063.  * - detect double free
  1064.  * - detect bad pointers.
  1065.  * Called with the cache-lock held.
  1066.  */
  1067. #if DEBUG
  1068. static int kmem_extra_free_checks (kmem_cache_t * cachep,
  1069. slab_t *slabp, void * objp)
  1070. {
  1071. int i;
  1072. unsigned int objnr = (objp-slabp->s_mem)/cachep->objsize;
  1073. if (objnr >= cachep->num)
  1074. BUG();
  1075. if (objp != slabp->s_mem + objnr*cachep->objsize)
  1076. BUG();
  1077. /* Check slab's freelist to see if this obj is there. */
  1078. for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
  1079. if (i == objnr)
  1080. BUG();
  1081. }
  1082. return 0;
  1083. }
  1084. #endif
  1085. static inline void kmem_cache_alloc_head(kmem_cache_t *cachep, int flags)
  1086. {
  1087. if (flags & SLAB_DMA) {
  1088. if (!(cachep->gfpflags & GFP_DMA))
  1089. BUG();
  1090. } else {
  1091. if (cachep->gfpflags & GFP_DMA)
  1092. BUG();
  1093. }
  1094. }
  1095. static inline void * kmem_cache_alloc_one_tail (kmem_cache_t *cachep,
  1096. slab_t *slabp)
  1097. {
  1098. void *objp;
  1099. STATS_INC_ALLOCED(cachep);
  1100. STATS_INC_ACTIVE(cachep);
  1101. STATS_SET_HIGH(cachep);
  1102. /* get obj pointer */
  1103. slabp->inuse++;
  1104. objp = slabp->s_mem + slabp->free*cachep->objsize;
  1105. slabp->free=slab_bufctl(slabp)[slabp->free];
  1106. if (unlikely(slabp->free == BUFCTL_END)) {
  1107. list_del(&slabp->list);
  1108. list_add(&slabp->list, &cachep->slabs_full);
  1109. }
  1110. #if DEBUG
  1111. if (cachep->flags & SLAB_POISON)
  1112. if (kmem_check_poison_obj(cachep, objp))
  1113. BUG();
  1114. if (cachep->flags & SLAB_RED_ZONE) {
  1115. /* Set alloc red-zone, and check old one. */
  1116. if (xchg((unsigned long *)objp, RED_MAGIC2) !=
  1117.  RED_MAGIC1)
  1118. BUG();
  1119. if (xchg((unsigned long *)(objp+cachep->objsize -
  1120.   BYTES_PER_WORD), RED_MAGIC2) != RED_MAGIC1)
  1121. BUG();
  1122. objp += BYTES_PER_WORD;
  1123. }
  1124. #endif
  1125. return objp;
  1126. }
  1127. /*
  1128.  * Returns a ptr to an obj in the given cache.
  1129.  * caller must guarantee synchronization
  1130.  * #define for the goto optimization 8-)
  1131.  */
  1132. #define kmem_cache_alloc_one(cachep)
  1133. ({
  1134. struct list_head * slabs_partial, * entry;
  1135. slab_t *slabp;
  1136. slabs_partial = &(cachep)->slabs_partial;
  1137. entry = slabs_partial->next;
  1138. if (unlikely(entry == slabs_partial)) {
  1139. struct list_head * slabs_free;
  1140. slabs_free = &(cachep)->slabs_free;
  1141. entry = slabs_free->next;
  1142. if (unlikely(entry == slabs_free))
  1143. goto alloc_new_slab;
  1144. list_del(entry);
  1145. list_add(entry, slabs_partial);
  1146. }
  1147. slabp = list_entry(entry, slab_t, list);
  1148. kmem_cache_alloc_one_tail(cachep, slabp);
  1149. })
  1150. #ifdef CONFIG_SMP
  1151. void* kmem_cache_alloc_batch(kmem_cache_t* cachep, cpucache_t* cc, int flags)
  1152. {
  1153. int batchcount = cachep->batchcount;
  1154. spin_lock(&cachep->spinlock);
  1155. while (batchcount--) {
  1156. struct list_head * slabs_partial, * entry;
  1157. slab_t *slabp;
  1158. /* Get slab alloc is to come from. */
  1159. slabs_partial = &(cachep)->slabs_partial;
  1160. entry = slabs_partial->next;
  1161. if (unlikely(entry == slabs_partial)) {
  1162. struct list_head * slabs_free;
  1163. slabs_free = &(cachep)->slabs_free;
  1164. entry = slabs_free->next;
  1165. if (unlikely(entry == slabs_free))
  1166. break;
  1167. list_del(entry);
  1168. list_add(entry, slabs_partial);
  1169. }
  1170. slabp = list_entry(entry, slab_t, list);
  1171. cc_entry(cc)[cc->avail++] =
  1172. kmem_cache_alloc_one_tail(cachep, slabp);
  1173. }
  1174. spin_unlock(&cachep->spinlock);
  1175. if (cc->avail)
  1176. return cc_entry(cc)[--cc->avail];
  1177. return NULL;
  1178. }
  1179. #endif
  1180. static inline void * __kmem_cache_alloc (kmem_cache_t *cachep, int flags)
  1181. {
  1182. unsigned long save_flags;
  1183. void* objp;
  1184. kmem_cache_alloc_head(cachep, flags);
  1185. try_again:
  1186. local_irq_save(save_flags);
  1187. #ifdef CONFIG_SMP
  1188. {
  1189. cpucache_t *cc = cc_data(cachep);
  1190. if (cc) {
  1191. if (cc->avail) {
  1192. STATS_INC_ALLOCHIT(cachep);
  1193. objp = cc_entry(cc)[--cc->avail];
  1194. } else {
  1195. STATS_INC_ALLOCMISS(cachep);
  1196. objp = kmem_cache_alloc_batch(cachep,cc,flags);
  1197. if (!objp)
  1198. goto alloc_new_slab_nolock;
  1199. }
  1200. } else {
  1201. spin_lock(&cachep->spinlock);
  1202. objp = kmem_cache_alloc_one(cachep);
  1203. spin_unlock(&cachep->spinlock);
  1204. }
  1205. }
  1206. #else
  1207. objp = kmem_cache_alloc_one(cachep);
  1208. #endif
  1209. local_irq_restore(save_flags);
  1210. return objp;
  1211. alloc_new_slab:
  1212. #ifdef CONFIG_SMP
  1213. spin_unlock(&cachep->spinlock);
  1214. alloc_new_slab_nolock:
  1215. #endif
  1216. local_irq_restore(save_flags);
  1217. if (kmem_cache_grow(cachep, flags))
  1218. /* Someone may have stolen our objs.  Doesn't matter, we'll
  1219.  * just come back here again.
  1220.  */
  1221. goto try_again;
  1222. return NULL;
  1223. }
  1224. /*
  1225.  * Release an obj back to its cache. If the obj has a constructed
  1226.  * state, it should be in this state _before_ it is released.
  1227.  * - caller is responsible for the synchronization
  1228.  */
  1229. #if DEBUG
  1230. # define CHECK_NR(pg)
  1231. do {
  1232. if (!VALID_PAGE(pg)) {
  1233. printk(KERN_ERR "kfree: out of range ptr %lxh.n", 
  1234. (unsigned long)objp);
  1235. BUG();
  1236. } while (0)
  1237. # define CHECK_PAGE(page)
  1238. do {
  1239. CHECK_NR(page);
  1240. if (!PageSlab(page)) {
  1241. printk(KERN_ERR "kfree: bad ptr %lxh.n", 
  1242. (unsigned long)objp);
  1243. BUG();
  1244. }
  1245. } while (0)
  1246. #else
  1247. # define CHECK_PAGE(pg) do { } while (0)
  1248. #endif
  1249. static inline void kmem_cache_free_one(kmem_cache_t *cachep, void *objp)
  1250. {
  1251. slab_t* slabp;
  1252. CHECK_PAGE(virt_to_page(objp));
  1253. /* reduces memory footprint
  1254.  *
  1255. if (OPTIMIZE(cachep))
  1256. slabp = (void*)((unsigned long)objp&(~(PAGE_SIZE-1)));
  1257.  else
  1258.  */
  1259. slabp = GET_PAGE_SLAB(virt_to_page(objp));
  1260. #if DEBUG
  1261. if (cachep->flags & SLAB_DEBUG_INITIAL)
  1262. /* Need to call the slab's constructor so the
  1263.  * caller can perform a verify of its state (debugging).
  1264.  * Called without the cache-lock held.
  1265.  */
  1266. cachep->ctor(objp, cachep, SLAB_CTOR_CONSTRUCTOR|SLAB_CTOR_VERIFY);
  1267. if (cachep->flags & SLAB_RED_ZONE) {
  1268. objp -= BYTES_PER_WORD;
  1269. if (xchg((unsigned long *)objp, RED_MAGIC1) != RED_MAGIC2)
  1270. /* Either write before start, or a double free. */
  1271. BUG();
  1272. if (xchg((unsigned long *)(objp+cachep->objsize -
  1273. BYTES_PER_WORD), RED_MAGIC1) != RED_MAGIC2)
  1274. /* Either write past end, or a double free. */
  1275. BUG();
  1276. }
  1277. if (cachep->flags & SLAB_POISON)
  1278. kmem_poison_obj(cachep, objp);
  1279. if (kmem_extra_free_checks(cachep, slabp, objp))
  1280. return;
  1281. #endif
  1282. {
  1283. unsigned int objnr = (objp-slabp->s_mem)/cachep->objsize;
  1284. slab_bufctl(slabp)[objnr] = slabp->free;
  1285. slabp->free = objnr;
  1286. }
  1287. STATS_DEC_ACTIVE(cachep);
  1288. /* fixup slab chains */
  1289. {
  1290. int inuse = slabp->inuse;
  1291. if (unlikely(!--slabp->inuse)) {
  1292. /* Was partial or full, now empty. */
  1293. list_del(&slabp->list);
  1294. list_add(&slabp->list, &cachep->slabs_free);
  1295. } else if (unlikely(inuse == cachep->num)) {
  1296. /* Was full. */
  1297. list_del(&slabp->list);
  1298. list_add(&slabp->list, &cachep->slabs_partial);
  1299. }
  1300. }
  1301. }
  1302. #ifdef CONFIG_SMP
  1303. static inline void __free_block (kmem_cache_t* cachep,
  1304. void** objpp, int len)
  1305. {
  1306. for ( ; len > 0; len--, objpp++)
  1307. kmem_cache_free_one(cachep, *objpp);
  1308. }
  1309. static void free_block (kmem_cache_t* cachep, void** objpp, int len)
  1310. {
  1311. spin_lock(&cachep->spinlock);
  1312. __free_block(cachep, objpp, len);
  1313. spin_unlock(&cachep->spinlock);
  1314. }
  1315. #endif
  1316. /*
  1317.  * __kmem_cache_free
  1318.  * called with disabled ints
  1319.  */
  1320. static inline void __kmem_cache_free (kmem_cache_t *cachep, void* objp)
  1321. {
  1322. #ifdef CONFIG_SMP
  1323. cpucache_t *cc = cc_data(cachep);
  1324. CHECK_PAGE(virt_to_page(objp));
  1325. if (cc) {
  1326. int batchcount;
  1327. if (cc->avail < cc->limit) {
  1328. STATS_INC_FREEHIT(cachep);
  1329. cc_entry(cc)[cc->avail++] = objp;
  1330. return;
  1331. }
  1332. STATS_INC_FREEMISS(cachep);
  1333. batchcount = cachep->batchcount;
  1334. cc->avail -= batchcount;
  1335. free_block(cachep,
  1336. &cc_entry(cc)[cc->avail],batchcount);
  1337. cc_entry(cc)[cc->avail++] = objp;
  1338. return;
  1339. } else {
  1340. free_block(cachep, &objp, 1);
  1341. }
  1342. #else
  1343. kmem_cache_free_one(cachep, objp);
  1344. #endif
  1345. }
  1346. /**
  1347.  * kmem_cache_alloc - Allocate an object
  1348.  * @cachep: The cache to allocate from.
  1349.  * @flags: See kmalloc().
  1350.  *
  1351.  * Allocate an object from this cache.  The flags are only relevant
  1352.  * if the cache has no available objects.
  1353.  */
  1354. void * kmem_cache_alloc (kmem_cache_t *cachep, int flags)
  1355. {
  1356. return __kmem_cache_alloc(cachep, flags);
  1357. }
  1358. /**
  1359.  * kmalloc - allocate memory
  1360.  * @size: how many bytes of memory are required.
  1361.  * @flags: the type of memory to allocate.
  1362.  *
  1363.  * kmalloc is the normal method of allocating memory
  1364.  * in the kernel.
  1365.  *
  1366.  * The @flags argument may be one of:
  1367.  *
  1368.  * %GFP_USER - Allocate memory on behalf of user.  May sleep.
  1369.  *
  1370.  * %GFP_KERNEL - Allocate normal kernel ram.  May sleep.
  1371.  *
  1372.  * %GFP_ATOMIC - Allocation will not sleep.  Use inside interrupt handlers.
  1373.  *
  1374.  * Additionally, the %GFP_DMA flag may be set to indicate the memory
  1375.  * must be suitable for DMA.  This can mean different things on different
  1376.  * platforms.  For example, on i386, it means that the memory must come
  1377.  * from the first 16MB.
  1378.  */
  1379. void * kmalloc (size_t size, int flags)
  1380. {
  1381. cache_sizes_t *csizep = cache_sizes;
  1382. for (; csizep->cs_size; csizep++) {
  1383. if (size > csizep->cs_size)
  1384. continue;
  1385. return __kmem_cache_alloc(flags & GFP_DMA ?
  1386.  csizep->cs_dmacachep : csizep->cs_cachep, flags);
  1387. }
  1388. return NULL;
  1389. }
  1390. /**
  1391.  * kmem_cache_free - Deallocate an object
  1392.  * @cachep: The cache the allocation was from.
  1393.  * @objp: The previously allocated object.
  1394.  *
  1395.  * Free an object which was previously allocated from this
  1396.  * cache.
  1397.  */
  1398. void kmem_cache_free (kmem_cache_t *cachep, void *objp)
  1399. {
  1400. unsigned long flags;
  1401. #if DEBUG
  1402. CHECK_PAGE(virt_to_page(objp));
  1403. if (cachep != GET_PAGE_CACHE(virt_to_page(objp)))
  1404. BUG();
  1405. #endif
  1406. local_irq_save(flags);
  1407. __kmem_cache_free(cachep, objp);
  1408. local_irq_restore(flags);
  1409. }
  1410. /**
  1411.  * kfree - free previously allocated memory
  1412.  * @objp: pointer returned by kmalloc.
  1413.  *
  1414.  * Don't free memory not originally allocated by kmalloc()
  1415.  * or you will run into trouble.
  1416.  */
  1417. void kfree (const void *objp)
  1418. {
  1419. kmem_cache_t *c;
  1420. unsigned long flags;
  1421. if (!objp)
  1422. return;
  1423. local_irq_save(flags);
  1424. CHECK_PAGE(virt_to_page(objp));
  1425. c = GET_PAGE_CACHE(virt_to_page(objp));
  1426. __kmem_cache_free(c, (void*)objp);
  1427. local_irq_restore(flags);
  1428. }
  1429. unsigned int kmem_cache_size(kmem_cache_t *cachep)
  1430. {
  1431. #if DEBUG
  1432. if (cachep->flags & SLAB_RED_ZONE)
  1433. return (cachep->objsize - 2*BYTES_PER_WORD);
  1434. #endif
  1435. return cachep->objsize;
  1436. }
  1437. kmem_cache_t * kmem_find_general_cachep (size_t size, int gfpflags)
  1438. {
  1439. cache_sizes_t *csizep = cache_sizes;
  1440. /* This function could be moved to the header file, and
  1441.  * made inline so consumers can quickly determine what
  1442.  * cache pointer they require.
  1443.  */
  1444. for ( ; csizep->cs_size; csizep++) {
  1445. if (size > csizep->cs_size)
  1446. continue;
  1447. break;
  1448. }
  1449. return (gfpflags & GFP_DMA) ? csizep->cs_dmacachep : csizep->cs_cachep;
  1450. }
  1451. #ifdef CONFIG_SMP
  1452. /* called with cache_chain_sem acquired.  */
  1453. static int kmem_tune_cpucache (kmem_cache_t* cachep, int limit, int batchcount)
  1454. {
  1455. ccupdate_struct_t new;
  1456. int i;
  1457. /*
  1458.  * These are admin-provided, so we are more graceful.
  1459.  */
  1460. if (limit < 0)
  1461. return -EINVAL;
  1462. if (batchcount < 0)
  1463. return -EINVAL;
  1464. if (batchcount > limit)
  1465. return -EINVAL;
  1466. if (limit != 0 && !batchcount)
  1467. return -EINVAL;
  1468. memset(&new.new,0,sizeof(new.new));
  1469. if (limit) {
  1470. for (i = 0; i< smp_num_cpus; i++) {
  1471. cpucache_t* ccnew;
  1472. ccnew = kmalloc(sizeof(void*)*limit+
  1473. sizeof(cpucache_t), GFP_KERNEL);
  1474. if (!ccnew)
  1475. goto oom;
  1476. ccnew->limit = limit;
  1477. ccnew->avail = 0;
  1478. new.new[cpu_logical_map(i)] = ccnew;
  1479. }
  1480. }
  1481. new.cachep = cachep;
  1482. spin_lock_irq(&cachep->spinlock);
  1483. cachep->batchcount = batchcount;
  1484. spin_unlock_irq(&cachep->spinlock);
  1485. smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
  1486. for (i = 0; i < smp_num_cpus; i++) {
  1487. cpucache_t* ccold = new.new[cpu_logical_map(i)];
  1488. if (!ccold)
  1489. continue;
  1490. local_irq_disable();
  1491. free_block(cachep, cc_entry(ccold), ccold->avail);
  1492. local_irq_enable();
  1493. kfree(ccold);
  1494. }
  1495. return 0;
  1496. oom:
  1497. for (i--; i >= 0; i--)
  1498. kfree(new.new[cpu_logical_map(i)]);
  1499. return -ENOMEM;
  1500. }
  1501. static void enable_cpucache (kmem_cache_t *cachep)
  1502. {
  1503. int err;
  1504. int limit;
  1505. /* FIXME: optimize */
  1506. if (cachep->objsize > PAGE_SIZE)
  1507. return;
  1508. if (cachep->objsize > 1024)
  1509. limit = 60;
  1510. else if (cachep->objsize > 256)
  1511. limit = 124;
  1512. else
  1513. limit = 252;
  1514. err = kmem_tune_cpucache(cachep, limit, limit/2);
  1515. if (err)
  1516. printk(KERN_ERR "enable_cpucache failed for %s, error %d.n",
  1517. cachep->name, -err);
  1518. }
  1519. static void enable_all_cpucaches (void)
  1520. {
  1521. struct list_head* p;
  1522. down(&cache_chain_sem);
  1523. p = &cache_cache.next;
  1524. do {
  1525. kmem_cache_t* cachep = list_entry(p, kmem_cache_t, next);
  1526. enable_cpucache(cachep);
  1527. p = cachep->next.next;
  1528. } while (p != &cache_cache.next);
  1529. up(&cache_chain_sem);
  1530. }
  1531. #endif
  1532. /**
  1533.  * kmem_cache_reap - Reclaim memory from caches.
  1534.  * @gfp_mask: the type of memory required.
  1535.  *
  1536.  * Called from do_try_to_free_pages() and __alloc_pages()
  1537.  */
  1538. int kmem_cache_reap (int gfp_mask)
  1539. {
  1540. slab_t *slabp;
  1541. kmem_cache_t *searchp;
  1542. kmem_cache_t *best_cachep;
  1543. unsigned int best_pages;
  1544. unsigned int best_len;
  1545. unsigned int scan;
  1546. int ret = 0;
  1547. if (gfp_mask & __GFP_WAIT)
  1548. down(&cache_chain_sem);
  1549. else
  1550. if (down_trylock(&cache_chain_sem))
  1551. return 0;
  1552. scan = REAP_SCANLEN;
  1553. best_len = 0;
  1554. best_pages = 0;
  1555. best_cachep = NULL;
  1556. searchp = clock_searchp;
  1557. do {
  1558. unsigned int pages;
  1559. struct list_head* p;
  1560. unsigned int full_free;
  1561. /* It's safe to test this without holding the cache-lock. */
  1562. if (searchp->flags & SLAB_NO_REAP)
  1563. goto next;
  1564. spin_lock_irq(&searchp->spinlock);
  1565. if (searchp->growing)
  1566. goto next_unlock;
  1567. if (searchp->dflags & DFLGS_GROWN) {
  1568. searchp->dflags &= ~DFLGS_GROWN;
  1569. goto next_unlock;
  1570. }
  1571. #ifdef CONFIG_SMP
  1572. {
  1573. cpucache_t *cc = cc_data(searchp);
  1574. if (cc && cc->avail) {
  1575. __free_block(searchp, cc_entry(cc), cc->avail);
  1576. cc->avail = 0;
  1577. }
  1578. }
  1579. #endif
  1580. full_free = 0;
  1581. p = searchp->slabs_free.next;
  1582. while (p != &searchp->slabs_free) {
  1583. slabp = list_entry(p, slab_t, list);
  1584. #if DEBUG
  1585. if (slabp->inuse)
  1586. BUG();
  1587. #endif
  1588. full_free++;
  1589. p = p->next;
  1590. }
  1591. /*
  1592.  * Try to avoid slabs with constructors and/or
  1593.  * more than one page per slab (as it can be difficult
  1594.  * to get high orders from gfp()).
  1595.  */
  1596. pages = full_free * (1<<searchp->gfporder);
  1597. if (searchp->ctor)
  1598. pages = (pages*4+1)/5;
  1599. if (searchp->gfporder)
  1600. pages = (pages*4+1)/5;
  1601. if (pages > best_pages) {
  1602. best_cachep = searchp;
  1603. best_len = full_free;
  1604. best_pages = pages;
  1605. if (pages >= REAP_PERFECT) {
  1606. clock_searchp = list_entry(searchp->next.next,
  1607. kmem_cache_t,next);
  1608. goto perfect;
  1609. }
  1610. }
  1611. next_unlock:
  1612. spin_unlock_irq(&searchp->spinlock);
  1613. next:
  1614. searchp = list_entry(searchp->next.next,kmem_cache_t,next);
  1615. } while (--scan && searchp != clock_searchp);
  1616. clock_searchp = searchp;
  1617. if (!best_cachep)
  1618. /* couldn't find anything to reap */
  1619. goto out;
  1620. spin_lock_irq(&best_cachep->spinlock);
  1621. perfect:
  1622. /* free only 50% of the free slabs */
  1623. best_len = (best_len + 1)/2;
  1624. for (scan = 0; scan < best_len; scan++) {
  1625. struct list_head *p;
  1626. if (best_cachep->growing)
  1627. break;
  1628. p = best_cachep->slabs_free.prev;
  1629. if (p == &best_cachep->slabs_free)
  1630. break;
  1631. slabp = list_entry(p,slab_t,list);
  1632. #if DEBUG
  1633. if (slabp->inuse)
  1634. BUG();
  1635. #endif
  1636. list_del(&slabp->list);
  1637. STATS_INC_REAPED(best_cachep);
  1638. /* Safe to drop the lock. The slab is no longer linked to the
  1639.  * cache.
  1640.  */
  1641. spin_unlock_irq(&best_cachep->spinlock);
  1642. kmem_slab_destroy(best_cachep, slabp);
  1643. spin_lock_irq(&best_cachep->spinlock);
  1644. }
  1645. spin_unlock_irq(&best_cachep->spinlock);
  1646. ret = scan * (1 << best_cachep->gfporder);
  1647. out:
  1648. up(&cache_chain_sem);
  1649. return ret;
  1650. }
  1651. #ifdef CONFIG_PROC_FS
  1652. static void *s_start(struct seq_file *m, loff_t *pos)
  1653. {
  1654. loff_t n = *pos;
  1655. struct list_head *p;
  1656. down(&cache_chain_sem);
  1657. if (!n)
  1658. return (void *)1;
  1659. p = &cache_cache.next;
  1660. while (--n) {
  1661. p = p->next;
  1662. if (p == &cache_cache.next)
  1663. return NULL;
  1664. }
  1665. return list_entry(p, kmem_cache_t, next);
  1666. }
  1667. static void *s_next(struct seq_file *m, void *p, loff_t *pos)
  1668. {
  1669. kmem_cache_t *cachep = p;
  1670. ++*pos;
  1671. if (p == (void *)1)
  1672. return &cache_cache;
  1673. cachep = list_entry(cachep->next.next, kmem_cache_t, next);
  1674. return cachep == &cache_cache ? NULL : cachep;
  1675. }
  1676. static void s_stop(struct seq_file *m, void *p)
  1677. {
  1678. up(&cache_chain_sem);
  1679. }
  1680. static int s_show(struct seq_file *m, void *p)
  1681. {
  1682. kmem_cache_t *cachep = p;
  1683. struct list_head *q;
  1684. slab_t *slabp;
  1685. unsigned long active_objs;
  1686. unsigned long num_objs;
  1687. unsigned long active_slabs = 0;
  1688. unsigned long num_slabs;
  1689. const char *name; 
  1690. if (p == (void*)1) {
  1691. /*
  1692.  * Output format version, so at least we can change it
  1693.  * without _too_ many complaints.
  1694.  */
  1695. seq_puts(m, "slabinfo - version: 1.1"
  1696. #if STATS
  1697. " (statistics)"
  1698. #endif
  1699. #ifdef CONFIG_SMP
  1700. " (SMP)"
  1701. #endif
  1702. "n");
  1703. return 0;
  1704. }
  1705. spin_lock_irq(&cachep->spinlock);
  1706. active_objs = 0;
  1707. num_slabs = 0;
  1708. list_for_each(q,&cachep->slabs_full) {
  1709. slabp = list_entry(q, slab_t, list);
  1710. if (slabp->inuse != cachep->num)
  1711. BUG();
  1712. active_objs += cachep->num;
  1713. active_slabs++;
  1714. }
  1715. list_for_each(q,&cachep->slabs_partial) {
  1716. slabp = list_entry(q, slab_t, list);
  1717. if (slabp->inuse == cachep->num || !slabp->inuse)
  1718. BUG();
  1719. active_objs += slabp->inuse;
  1720. active_slabs++;
  1721. }
  1722. list_for_each(q,&cachep->slabs_free) {
  1723. slabp = list_entry(q, slab_t, list);
  1724. if (slabp->inuse)
  1725. BUG();
  1726. num_slabs++;
  1727. }
  1728. num_slabs+=active_slabs;
  1729. num_objs = num_slabs*cachep->num;
  1730. name = cachep->name; 
  1731. {
  1732. char tmp; 
  1733. if (__get_user(tmp, name)) 
  1734. name = "broken"; 
  1735. }       
  1736. seq_printf(m, "%-17s %6lu %6lu %6u %4lu %4lu %4u",
  1737. name, active_objs, num_objs, cachep->objsize,
  1738. active_slabs, num_slabs, (1<<cachep->gfporder));
  1739. #if STATS
  1740. {
  1741. unsigned long errors = cachep->errors;
  1742. unsigned long high = cachep->high_mark;
  1743. unsigned long grown = cachep->grown;
  1744. unsigned long reaped = cachep->reaped;
  1745. unsigned long allocs = cachep->num_allocations;
  1746. seq_printf(m, " : %6lu %7lu %5lu %4lu %4lu",
  1747. high, allocs, grown, reaped, errors);
  1748. }
  1749. #endif
  1750. #ifdef CONFIG_SMP
  1751. {
  1752. cpucache_t *cc = cc_data(cachep);
  1753. unsigned int batchcount = cachep->batchcount;
  1754. unsigned int limit;
  1755. if (cc)
  1756. limit = cc->limit;
  1757. else
  1758. limit = 0;
  1759. seq_printf(m, " : %4u %4u",
  1760. limit, batchcount);
  1761. }
  1762. #endif
  1763. #if STATS && defined(CONFIG_SMP)
  1764. {
  1765. unsigned long allochit = atomic_read(&cachep->allochit);
  1766. unsigned long allocmiss = atomic_read(&cachep->allocmiss);
  1767. unsigned long freehit = atomic_read(&cachep->freehit);
  1768. unsigned long freemiss = atomic_read(&cachep->freemiss);
  1769. seq_printf(m, " : %6lu %6lu %6lu %6lu",
  1770. allochit, allocmiss, freehit, freemiss);
  1771. }
  1772. #endif
  1773. spin_unlock_irq(&cachep->spinlock);
  1774. seq_putc(m, 'n');
  1775. return 0;
  1776. }
  1777. /**
  1778.  * slabinfo_op - iterator that generates /proc/slabinfo
  1779.  *
  1780.  * Output layout:
  1781.  * cache-name
  1782.  * num-active-objs
  1783.  * total-objs
  1784.  * object size
  1785.  * num-active-slabs
  1786.  * total-slabs
  1787.  * num-pages-per-slab
  1788.  * + further values on SMP and with statistics enabled
  1789.  */
  1790. struct seq_operations slabinfo_op = {
  1791. start: s_start,
  1792. next: s_next,
  1793. stop: s_stop,
  1794. show: s_show
  1795. };
  1796. #define MAX_SLABINFO_WRITE 128
  1797. /**
  1798.  * slabinfo_write - SMP tuning for the slab allocator
  1799.  * @file: unused
  1800.  * @buffer: user buffer
  1801.  * @count: data len
  1802.  * @data: unused
  1803.  */
  1804. ssize_t slabinfo_write(struct file *file, const char *buffer,
  1805. size_t count, loff_t *ppos)
  1806. {
  1807. #ifdef CONFIG_SMP
  1808. char kbuf[MAX_SLABINFO_WRITE+1], *tmp;
  1809. int limit, batchcount, res;
  1810. struct list_head *p;
  1811. if (count > MAX_SLABINFO_WRITE)
  1812. return -EINVAL;
  1813. if (copy_from_user(&kbuf, buffer, count))
  1814. return -EFAULT;
  1815. kbuf[MAX_SLABINFO_WRITE] = ''; 
  1816. tmp = strchr(kbuf, ' ');
  1817. if (!tmp)
  1818. return -EINVAL;
  1819. *tmp = '';
  1820. tmp++;
  1821. limit = simple_strtol(tmp, &tmp, 10);
  1822. while (*tmp == ' ')
  1823. tmp++;
  1824. batchcount = simple_strtol(tmp, &tmp, 10);
  1825. /* Find the cache in the chain of caches. */
  1826. down(&cache_chain_sem);
  1827. res = -EINVAL;
  1828. list_for_each(p,&cache_chain) {
  1829. kmem_cache_t *cachep = list_entry(p, kmem_cache_t, next);
  1830. if (!strcmp(cachep->name, kbuf)) {
  1831. res = kmem_tune_cpucache(cachep, limit, batchcount);
  1832. break;
  1833. }
  1834. }
  1835. up(&cache_chain_sem);
  1836. if (res >= 0)
  1837. res = count;
  1838. return res;
  1839. #else
  1840. return -EINVAL;
  1841. #endif
  1842. }
  1843. #endif