slab.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:52k
源码类别:

嵌入式Linux

开发平台:

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