- 论坛徽章:
- 0
|
一、准备知识:
slab的概念:
- 提出的原因:由于操作系统在运行中会不断产生、使用、释放大量重复的对象,
所以对这样的重复对象的生成进行改进可以大大提高效率 - 最早由sun的工程师提出(1994年)并首先在sunos5.4上应用。
slab算法的基本思路:分配:
if(对相对应的缓存区有空闲位置)
使用这个位置,不必再初始化;
else{
分配内存;
初始化对象;
}
释放:
在缓存中标记空闲,不做析构;
资源不足:
寻找未使用的对象空间;
按照要求对部分对象做析构;
释放对象占用的空间;缓存区:每一个对象放在一个缓存区slab:每个slab块都是页面大小的整数倍(有上限)着色:字节数按照硬件的要求对齐,可以大大提高硬件缓存的利用率和效率。slab块的两种管理模式:
- on-slab 适用于小对象(小于1/8页),slab管理结构存放在slab块中。
- off-slab适用于大对象,(大于等于1/8页),对象和slab块的管理结构都由cache_slabp中分配。
根据slab提出者的论文,slab不适合用在大对象上。 slab涉及的重要操作:
- 缓存区创建kmem_cache_create与销毁kmem_cache_destory
- 缓存区收缩kmem_cache_shrink与扩张kmem_cache_grow
- 对象分配kmem_cache_alloc与释放kmem_cache_free
- 内核态内存的申请kmalloc与释放kfree
二、涉及的重要数据结构:
typedef unsigned int kmem_bufctl_t:slab块中的管理结构cache_size表:保存了不同大小(2^n)页面指向cache_cache的两种指针(dma和非dma)。链表:最重要的是在管理slab结构中出现的3个链表,分别为完全使用的,部分使用的和完全没用过的slab。结构体:见下面的代码分析。三、代码分析:每个颜色代表的含义:[color="#b22222"]红色:代码注释;[color="#a020f0"]藕荷色:编译预处理需要处理的内容;[color="#4169e1"]蓝色:C语言关键字、函数定义;[color="#228b22"]绿色:宏定义;黑色:代码;[color="#666666"]灰色:输出信息;[color="#000066"]深蓝色:我给出的注解。[color="#b22222"]/*
* linux/mm/slab.c
* Written by Mark Hemment, 1996/97.
* (markhe@nextd.demon.co.uk)
*
* kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
*
* Major cleanup, different bufctl logic, per-cpu arrays
* (c) 2000 Manfred Spraul
*[color="#000066"]以上为版权信息[color="#b22222"]
* An implementation of the Slab Allocator as described in outline in;
* UNIX Internals: The New Frontiers by Uresh Vahalia
* Pub: Prentice Hall ISBN 0-13-101908-2 [color="#000066"]关于slab分配符的一本书[color="#b22222"]
* or with a little more detail in;
* The Slab Allocator: An Object-Caching Kernel Memory Allocator
* Jeff Bonwick (Sun Microsystems).
* Presented at: USENIX Summer 1994 Technical Conference
这个人在1994年USENIX年会上首先提出了关于slab(对象缓存)的概念
www.usenix.org
[color="#b22222"]
*
*
* The memory is organized in caches, one cache for each object type.
* (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
* Each cache consists out of many slabs (they are small (usually one
* page long) and always contiguous), and each slab contains multiple
* initialized objects.
*[color="#000066"]注释大意:在缓存中,每一个类型的对象都对应一种缓存,比如inode_cache dentry_cache buffer_head vm_area_struct等等。
每一个缓存包含了很多slab(通常都很小,可能只有一个页那么大)[color="#b22222"]
* Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
* normal). If you need a special memory type, then must create a new
* cache for that memory type.
*[color="#000066"]注释大意:每个缓存只能支持一种内存的模式(GFP_DMA, GFP_HIGHMEM, normal,这些都在include/linux/mm.h中作为宏定义)[color="#b22222"]
* In order to reduce fragmentation, the slabs are sorted in 3 groups:
* full slabs with 0 free objects
* partial slabs
* empty slabs with no allocated objects
*[color="#000066"]注释大意:为了减少碎片,slab被分在3个组:
全都使用了的slab,没有空闲的对象
部分slab
全空的slab,没有分配任何对象[color="#b22222"]
* If partial slabs exist, then new allocations come from these slabs,
* otherwise from empty slabs or new slabs are allocated.
*[color="#000066"]注释大意:如果部分slab存在,则从这些slab中分配,如果不存在那就分配空的或者新的slab。[color="#b22222"]
* kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
* during kmem_cache_destroy(). The caller must prevent concurrent allocs.
*[color="#000066"]注释大意:假如在执行kmem_cache_destory()的时候,又要求缓存分配,则会出现崩溃。调用的时候一定要注意避免并发申请。[color="#b22222"]
* On SMP systems, each cache has a short per-cpu head array, most allocs
* and frees go into that array, and if that array overflows, then 1/2
* of the entries in the array are given back into the global cache.
* This reduces the number of spinlock operations.
*[color="#000066"]注释大意:在对称多处理器器的系统上,每个缓存都有一个对应CPU的数组,
几乎所有的分配和释放操作都会进入这个数组。如果这个数组超过限制了,则数组中一般的内容送回到全局缓存中。
这样可以减少自旋锁的数目。[color="#b22222"]
* The c_cpuarray may not be read with enabled local interrupts.
*[color="#000066"]注释大意:当本地的中断处在激活的状态下,c_cpuarry是不可读的[color="#b22222"]
* SMP synchronization:
* constructors and destructors are called without any locking.
* Several members in kmem_cache_t and slab_t never change, they
* are accessed without any locking.
* The per-cpu arrays are never accessed from the wrong cpu, no locking.
* The non-constant members are protected with a per-cache irq spinlock.
*[color="#000066"]注释大意:多处理器的同步:
构建和析构都是在不加锁的情况下调用的
许多kmem_cache_t和slab_t的成员是永远不会改变的,因此不用加锁。
那些改变的成员通过每一个缓存的中断请求自旋锁来保护。[color="#b22222"]
* Further notes from the original documentation:
*[color="#000066"]注释大意:更多的资料:[color="#b22222"]
* 11 April '97. Started multi-threading - markhe
* The global cache-chain is protected by the semaphore 'cache_chain_sem'.
* The sem is only needed when accessing/extending the cache-chain, which
* can never happen inside an interrupt (kmem_cache_create(),
* kmem_cache_shrink() and kmem_cache_reap()).
*[color="#000066"]注释大意:1997年4月11日,markhe开始做多线程的支持工作。
全局缓存链通过互斥锁cache_chain_sem来保护
这个互斥锁只在访问或者扩展缓存链的时候才需要,不会在中断的过程中(kmem_cache_create(),kmem_cache_shrink(),kmem_cache_reap())出现[color="#b22222"]
* To prevent kmem_cache_shrink() trying to shrink a 'growing' cache (which
* maybe be sleeping and therefore not holding the semaphore/lock), the
* growing field is used. This also prevents reaping from a cache.
*[color="#000066"]注释大意:为了避免kmem_cache_shrink()试图收缩正在增长的缓存(处在睡眠状态,并且不持有互斥锁或者锁),
避免收缩正在被使用的增长的区域,(这个互斥锁)还可以避免回收缓存。[color="#b22222"]
* At present, each engine can be growing a cache. This should be blocked.
*[color="#000066"]注释大意:目前,每个部件都可以是一个正在增长的缓存,这是需要在未来做出改变的。[color="#b22222"]
*/
[color="#a020f0"]#include [color="#000066"]编译的时候调用生成的autoconf.h
[color="#a020f0"]#include [color="#000066"]自己的头文件
[color="#a020f0"]#include [color="#000066"]中断相关的头文件
[color="#a020f0"]#include [color="#000066"]初始化相关的头文件
[color="#a020f0"]#include [color="#000066"]编译器相关的头文件
[color="#a020f0"]#include [color="#000066"]对顺序文件作操作的头文件
[color="#a020f0"]#include [color="#000066"]访问用户态内存操作的头文件
[color="#b22222"]/*
* DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
* SLAB_RED_ZONE & SLAB_POISON.
* 0 for faster, smaller code (especially in the critical paths).
*[color="#000066"]注释大意:如果宏DEBUG为1,则kmem_cache_create()中执行SLAB_DEBUG_INITIAL,SLAB_RED_ZONE,SLAB_POSION相关操作[color="#b22222"]
* STATS - 1 to collect stats for /proc/slabinfo.
* 0 for faster, smaller code (especially in the critical paths).
*[color="#000066"]注释大意:如果STATS为1,则从/proc/slabinfo中收集状态信息。为0的时候可以产生更快并且更小的代码(尤其是在重要的步骤中)[color="#b22222"]
* FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
*/[color="#000066"]注释大意:如果FORCED_DEBUG为1,则激活SLAB_RED_ZONE,并在可能的情况下激活SLAB_POSION
[color="#a020f0"]#ifdef CONFIG_DEBUG_SLAB[color="#000066"]预编译处理,如果定义了CONFIG_DEBUG_SLAB,则将下面三个宏定义为1,否则定义为0
[color="#228b22"]#define DEBUG 1
[color="#228b22"]#define STATS 1
[color="#228b22"]#define FORCED_DEBUG 1
[color="#a020f0"]#else
[color="#228b22"]#define DEBUG 0
[color="#228b22"]#define STATS 0
[color="#228b22"]#define FORCED_DEBUG 0
[color="#a020f0"]#endif
[color="#b22222"]/*
* Parameters for kmem_cache_reap
*/[color="#000066"]注释大意:缓存回收需要的参数
[color="#228b22"]#define REAP_SCANLEN 10
[color="#228b22"]#define REAP_PERFECT 10
[color="#b22222"]/* Shouldn't this be in a header file somewhere? */[color="#000066"]注释大意:这个是否应该加入到某个头文件中?
[color="#228b22"]#define BYTES_PER_WORD sizeof(void *)
[color="#b22222"]/* Legal flag mask for kmem_cache_create(). */[color="#000066"]注释大意:kmem_cache_create()法定的标志位
[color="#a020f0"]#if DEBUG[color="#000066"]条件编译,如果在调试模式下
[color="#a020f0"]# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
SLAB_POISON | SLAB_HWCACHE_ALIGN | \
SLAB_NO_REAP | SLAB_CACHE_DMA | \
SLAB_MUST_HWCACHE_ALIGN)
[color="#a020f0"]#else[color="#000066"]在非调试模式下
[color="#a020f0"]# define CREATE_MASK (SLAB_HWCACHE_ALIGN | SLAB_NO_REAP | \
SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN)
[color="#a020f0"]#endif
[color="#b22222"]/*
* kmem_bufctl_t:
*
* Bufctl's are used for linking objs within a slab
* linked offsets.
*[color="#000066"]注释大意:Bufctl是用来连接slab中的对象的[color="#b22222"]
* This implementation relies on "struct page" for locating the cache &
* slab an object belongs to.
[color="#000066"]注释大意:这个调用通过寻找页面结构体来找对向所属的缓存和slab。[color="#b22222"]
* This allows the bufctl structure to be small (one int), but limits
* the number of objects a slab (not a cache) can contain when off-slab
* bufctls are used. The limit is the size of the largest general cache
* that does not use off-slab slabs.
[color="#000066"]注释大意:bufctl结构体可以非常的小(比如一个整型),但是在off-slab bufctls使用后
slab(不是缓存)中的对象数目是有限的。这个限制数是不使用off-slab的slab最大的普通缓存的大小[color="#b22222"]
* For 32bit archs with 4 kB pages, is this 56.
[color="#000066"]注释大意:对于32位结构的系统而言,4k的页面,这个限制数目为56。[color="#b22222"]
* This is not serious, as it is only for large objects, when it is unwise
* to have too many per slab.
[color="#000066"]注释大意:这个限制并不是很严重,因为它只是针对大的对象而言的。
每个slab中包含很多大的对象是不明智的。[color="#b22222"]
* Note: This limit can be raised by introducing a general cache whose size
* is less than 512 (PAGE_SIZE定义宏BUFCTL_END
[color="#228b22"]#define SLAB_LIMIT 0xffffFFFE[color="#000066"]定义宏SLAB_LIMIT[color="#4169e1"]typedef unsigned int kmem_bufctl_t;[color="#000066"]定义类型kem_bufctl_t实际上是无符号的整型数
[color="#b22222"]/* Max number of objs-per-slab for caches which use off-slab slabs.
* Needed to avoid a possible looping condition in kmem_cache_grow().
*/[color="#000066"]注释大意:使用off-slab对象缓存的每个slab中对象的最大数目
在kmem_cache_grow()中需要避免可能出现的自我循环情况
static unsigned long offslab_limit;[color="#000066"]定义offslab_limit为一个无符号整型数
[color="#b22222"]/*
* slab_t
*
* Manages the objs in a slab. Placed either at the beginning of mem allocated
* for a slab, or allocated from an general cache.
* Slabs are chained into three list: fully used, partial, fully free slabs.
*[color="#000066"]注释大意:管理slab中的对象,出现在为slab分配的内存的起始处或者分配的普通缓存。
slab有3个链,一个是完全使用的,一个是部分使用的,一个是完全空的
[color="#4169e1"]typedef struct slab_s {
[color="#4169e1"]struct list_head list;
unsigned long colouroff;
void *s_mem; [color="#b22222"]/* including colour offset */[color="#000066"]着色的偏移量
unsigned int inuse; [color="#b22222"]/* num of objs active in slab */[color="#000066"]在slab中正在被使用的对象数
kmem_bufctl_t free;[color="#000066"]slab中第一个空闲对象相对s_mem的偏移量。
} slab_t;[color="#000066"]slab的链状结构定义。
[color="#228b22"]#define slab_bufctl(slabp) \
((kmem_bufctl_t *)(((slab_t*)slabp)+1))[color="#000066"]宏定义slab_bufctl
[color="#b22222"]/*
* cpucache_t
*
* Per cpu structures
* The limit is stored in the per-cpu structure to reduce the data cache
* footprint.
*/[color="#000066"]注释大意:每个CPU的结构
[color="#4169e1"]typedef struct cpucache_s {
unsigned int avail;[color="#000066"]可用
unsigned int limit;[color="#000066"]限制
} cpucache_t;[color="#000066"]定义cpucache结构体
[color="#228b22"]#define cc_entry(cpucache) \
((void **)(((cpucache_t*)(cpucache))+1))[color="#000066"]宏定义cc_entry(cpu缓存入口)为一个函数指针
[color="#228b22"]#define cc_data(cachep) \
((cachep)->cpudata[smp_processor_id()])[color="#000066"]宏定义cc_data为缓存中cpu的标号
[color="#b22222"]/*
* kmem_cache_t
*
* manages a cache.
*/
[color="#228b22"]#define CACHE_NAMELEN 20 [color="#b22222"]/* max name length for a slab cache */ [color="#000066"]宏定义slab中最长的命名为20
[color="#4169e1"]struct kmem_cache_s {
[color="#b22222"]/* 1) each alloc & free */[color="#000066"]对于每次申请和释放操作,都首先从满的和部分使用的slab开始,然后再是空的slab
[color="#b22222"]/* full, partial first, then free */
[color="#4169e1"]struct list_head slabs_full;
[color="#4169e1"]struct list_head slabs_partial;
[color="#4169e1"]struct list_head slabs_free;[color="#000066"]前面说到的3个不同状态的链
unsigned int objsize;[color="#000066"]对象的大小
unsigned int flags; [color="#b22222"]/* constant flags */[color="#000066"]属性标志
属性标志可能存在的几种:
SLAB_POISON:标志未初始化的部分,用0xA5(即10100101)填充
SLAB_RED_ZONE: 标志红色区域。红色区域的开始和结束的位置有一个特殊标示来保存这个对象的状态
RED_MAGIC1(0x5A2CF071)为活跃状态,RED_MAGIC2(0x170FC2A5)为不活跃状态
当分配对象的时色区域变为活跃状态,初始化空闲对象和收回对象空间时变为不活跃。
红色区域可以防止堆栈溢出(划了边界了,不能越界)。
SLAB_NO_REAP: 即使内存紧缺也不自动收缩这块缓存
SLAB_HWCACHE_ALIGN: 使用硬件对齐
CFLAGS_OFF_SLAB: off-slab模式(对大的对象操作的时候用这个)
以上变量定义在include/linux/slab.h
unsigned int num; [color="#b22222"]/* # of objs per slab */[color="#000066"]每个slab中对象的数目
spinlock_t spinlock;[color="#000066"]自旋锁
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"]如果定义了SMP
unsigned int batchcount;[color="#000066"]则定义一个批处理计数
[color="#a020f0"]#endif
[color="#b22222"]/* 2) slab additions /removals */ [color="#000066"]slab的增加和消除
[color="#b22222"]/* order of pgs per slab (2^n) */
unsigned int gfporder;[color="#000066"]每个slab中页面数目是2的多少次方
[color="#b22222"]/* force GFP flags, e.g. GFP_DMA */
unsigned int gfpflags;[color="#000066"]申请页面的时候的优先级,在include/linux/mm.h中定义
size_t colour; [color="#b22222"]/* cache colouring range */[color="#000066"]着色的范围
unsigned int colour_off; [color="#b22222"]/* colour offset */[color="#000066"]着色的偏移量
unsigned int colour_next; [color="#b22222"]/* cache colouring */[color="#000066"]下一个着色的
kmem_cache_t *slabp_cache;[color="#000066"]针对off slab模式指向cache_slabp缓冲区的指针
unsigned int growing;[color="#000066"]对正在增长的slab设置的标志,以便避免在增长的时候进行了收缩操作。
unsigned int dflags; [color="#b22222"]/* dynamic flags */[color="#000066"]对动态作的标志
[color="#b22222"]/* constructor func */
void (*ctor)(void *, kmem_cache_t *, unsigned long);[color="#000066"]构造函数
[color="#b22222"]/* de-constructor func */
void (*dtor)(void *, kmem_cache_t *, unsigned long);[color="#000066"]析构函数
unsigned long failures;[color="#000066"]失败标记
[color="#b22222"]/* 3) cache creation/removal */[color="#000066"]缓存增加和消除
char name[CACHE_NAMELEN];[color="#000066"]缓存区的名字(在/proc/slabinfo中的名字)
[color="#4169e1"]struct list_head next;[color="#000066"]指向下一个缓存结构的指针
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"]编译预处理,如果是对称多处理器
[color="#b22222"]/* 4) per-cpu data */
cpucache_t *cpudata[NR_CPUS];[color="#000066"]
则设置一个指向每一个CPU运行的进程的指针(NR_CPUS作为宏定义在include/linux/threads.h)
[color="#a020f0"]#endif
[color="#a020f0"]#if STATS [color="#000066"]编译预处理,如果需要记录状态
unsigned long num_active;[color="#000066"]活跃的数目
unsigned long num_allocations;[color="#000066"]分配的数目
unsigned long high_mark;[color="#000066"]最多活跃的标记
unsigned long grown;[color="#000066"]增长标记
unsigned long reaped;[color="#000066"]回收的标记
unsigned long errors;[color="#000066"]出错的标记
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]编译预处理,如果定义了对称多处理器
atomic_t allochit;[color="#000066"]原子计数器分配命中数
atomic_t allocmiss;[color="#000066"]原子计数器分配未命中数
atomic_t freehit;[color="#000066"]原子计数器释放命中数
atomic_t freemiss;[color="#000066"]原子计数器释放未命中数
[color="#a020f0"]#endif
[color="#a020f0"]#endif
};
[color="#b22222"]/* internal c_flags */
[color="#228b22"]#define CFLGS_OFF_SLAB 0x010000UL [color="#b22222"]/* slab management in own cache */ [color="#000066"]slab管理自己的缓存
[color="#228b22"]#define CFLGS_OPTIMIZE 0x020000UL [color="#b22222"]/* optimized slab lookup */[color="#000066"] 优化slab查找
[color="#b22222"]/* c_dflags (dynamic flags). Need to hold the spinlock to access this member */[color="#000066"]动态标志,访问的时候要加一个自旋锁
[color="#228b22"]#define DFLGS_GROWN 0x000001UL [color="#b22222"]/* don't reap a recently grown */
[color="#228b22"]#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)[color="#000066"]设置off slab模式
[color="#228b22"]#define OPTIMIZE(x) ((x)->flags & CFLGS_OPTIMIZE)[color="#000066"]设置优化模式
[color="#228b22"]#define GROWN(x) ((x)->dlags & DFLGS_GROWN)[color="#000066"]设置动态增长标志
[color="#a020f0"]#if STATS [color="#000066"]编译预处理,如果察看状态
[color="#228b22"]#define STATS_INC_ACTIVE(x) ((x)->num_active++)[color="#000066"]活跃加1
[color="#228b22"]#define STATS_DEC_ACTIVE(x) ((x)->num_active--)[color="#000066"]活跃减1
[color="#228b22"]#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)[color="#000066"]已经分配加1
[color="#228b22"]#define STATS_INC_GROWN(x) ((x)->grown++)[color="#000066"]增长加1
[color="#228b22"]#define STATS_INC_REAPED(x) ((x)->reaped++)[color="#000066"]回收加1
[color="#228b22"]#define STATS_SET_HIGH(x) do { if ((x)->num_active > (x)->high_mark) \
(x)->high_mark = (x)->num_active; \
} while (0)[color="#000066"]设置最多活跃
[color="#228b22"]#define STATS_INC_ERR(x) ((x)->errors++)[color="#000066"]错误加1
[color="#a020f0"]#else [color="#000066"]编译预处理,如果不察看状态,那么都是空操作
[color="#228b22"]#define STATS_INC_ACTIVE(x) do { } while (0)
[color="#228b22"]#define STATS_DEC_ACTIVE(x) do { } while (0)
[color="#228b22"]#define STATS_INC_ALLOCED(x) do { } while (0)
[color="#228b22"]#define STATS_INC_GROWN(x) do { } while (0)
[color="#228b22"]#define STATS_INC_REAPED(x) do { } while (0)
[color="#228b22"]#define STATS_SET_HIGH(x) do { } while (0)
[color="#228b22"]#define STATS_INC_ERR(x) do { } while (0)
[color="#a020f0"]#endif
[color="#a020f0"]#if STATS && defined(CONFIG_SMP)[color="#000066"]编译预处理,如果察看状态并且是对称多处理器
[color="#228b22"]#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)[color="#000066"]原子操作增加分配命中
[color="#228b22"]#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)[color="#000066"]原子操作增加分配没有命中
[color="#228b22"]#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)[color="#000066"]原子操作增加释放命中的[color="#228b22"]
#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)[color="#000066"]原子操作增加释放没有命中的
[color="#a020f0"]#else [color="#000066"]编译预处理,如果不察看状态,那么都是空操作
[color="#228b22"]#define STATS_INC_ALLOCHIT(x) do { } while (0)
[color="#228b22"]#define STATS_INC_ALLOCMISS(x) do { } while (0)
[color="#228b22"]#define STATS_INC_FREEHIT(x) do { } while (0)
[color="#228b22"]#define STATS_INC_FREEMISS(x) do { } while (0)
[color="#a020f0"]#endif
[color="#a020f0"]#if DEBUG[color="#000066"]编译预处理,如果设置了查错模式
[color="#b22222"]/* Magic nums for obj red zoning.
* Placed in the first word before and the first word after an obj.
*/[color="#000066"]为红色区域标记的magic number.(前面已经提到过)
[color="#228b22"]#define RED_MAGIC1 0x5A2CF071UL [color="#b22222"]/* when obj is active */
[color="#228b22"]#define RED_MAGIC2 0x170FC2A5UL [color="#b22222"]/* when obj is inactive */
[color="#b22222"]/* ...and for poisoning */[color="#000066"]没有初始化标记
[color="#228b22"]#define POISON_BYTE 0x5a [color="#b22222"]/* byte value for poisoning */[color="#000066"]01011010作为起始标记
[color="#228b22"]#define POISON_END 0xa5 [color="#b22222"]/* end-byte of poisoning */10100101作为结束标记
额外的知识:使用0xA5填充未初始化的区域的原因:
对于为初始化的区域,也可以考虑用0xFF或0x00填充,但是用0xA5填充可以确保不出现偶然的相邻位的短路:
例如,D0 D1 D2 D3 ....D7,其中D1-D2出现了短路
对于用0x00填充而言:D0-D7 00000000
对于用0xFF填充而言:D0-D7 11111111
对于用0xA5填充而言:D0-D7 10000101
可以非常容易的检查出来硬件的失效或者偶然的错误
参考:Software-Based Memory Testing 1997 by Michael Barr
http://www.netrino.com/Articles/MemoryTesting/paper.html
[color="#a020f0"]#endif
[color="#b22222"]/* maximum size of an obj (in 2^order pages) */ [color="#000066"]对象可以占用的最大的页面的2的幂
[color="#228b22"]#define MAX_OBJ_ORDER 5 [color="#b22222"]/* 32 pages */ [color="#000066"]2的5次方等于32
[color="#b22222"]/*
* Do not go above this order unless 0 objects fit into the slab.
*/[color="#000066"]当没有对象适合在slab中的时候,空闲页最多不超过4个页,最少不小于2个页。
[color="#228b22"]#define BREAK_GFP_ORDER_HI 2
[color="#228b22"]#define BREAK_GFP_ORDER_LO 1
static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;[color="#000066"]初始为2个页
[color="#b22222"]/*
* Absolute limit for the gfp order [color="#000066"]最多的空闲页的硬上限为2的5次方,即32[color="#b22222"]
*/
[color="#228b22"]#define MAX_GFP_ORDER 5 [color="#b22222"]/* 32 pages */
[color="#b22222"]/* Macros for storing/retrieving the cachep and or slab from the
* global 'mem_map'. These are used to find the slab an obj belongs to.
* With kfree(), these are used to find the cache which an obj belongs to.
*/[color="#000066"]注释大意:下面的这些宏是用来在全局mem_map(内存映射)中存储/找回cachep或slab。
这些宏是用来找到对象所属的slab,通过使用kfree()来找到对象所属的缓存。
[color="#228b22"]#define SET_PAGE_CACHE(pg,x) ((pg)->list.next = (struct list_head *)(x))
[color="#228b22"]#define GET_PAGE_CACHE(pg) ((kmem_cache_t *)(pg)->list.next)
[color="#228b22"]#define SET_PAGE_SLAB(pg,x) ((pg)->list.prev = (struct list_head *)(x))
[color="#228b22"]#define GET_PAGE_SLAB(pg) ((slab_t *)(pg)->list.prev)
[color="#000066"]上面这些宏是通过对页面的链来做操作实现功能的
[color="#b22222"]/* Size description struct for general caches. */[color="#000066"]下面的结构体是对于普通缓存的描述
[color="#4169e1"]typedef struct cache_sizes {
size_t cs_size;[color="#000066"]缓存的大小
kmem_cache_t *cs_cachep;[color="#000066"]指向cache_cache中kmem_cache_cache_s型通用缓存区描述结构
kmem_cache_t *cs_dmacachep;[color="#000066"]指向cache_cache中kmem_cache_cache_s型通用缓存区描述结构,处理dma数据块用的
} cache_sizes_t;
static cache_sizes_t cache_sizes[] = {[color="#000066"]定义缓存的大小
[color="#a020f0"]#if PAGE_SIZE == 4096 [color="#000066"]编译预处理,假如页面的大小为4096
{ 32, NULL, NULL},
[color="#a020f0"]#endif
{ 64, NULL, NULL},
{ 128, NULL, NULL},
{ 256, NULL, NULL},
{ 512, NULL, NULL},
{ 1024, NULL, NULL},
{ 2048, NULL, NULL},
{ 4096, NULL, NULL},
{ 8192, NULL, NULL},
{ 16384, NULL, NULL},
{ 32768, NULL, NULL},
{ 65536, NULL, NULL},
{131072, NULL, NULL},
{ 0, NULL, NULL}
};[color="#000066"]后面的NULL就是为cs_cachep和cs_dmacachep准备的
[color="#b22222"]/* internal cache of cache description objs */ [color="#000066"]内部缓存的缓存描述对象结构体
static kmem_cache_t cache_cache = {
[color="#000066"] slabs_full: LIST_HEAD_INIT(cache_cache.slabs_full),
[color="#000066"] slabs_partial: LIST_HEAD_INIT(cache_cache.slabs_partial),
[color="#000066"] slabs_free: LIST_HEAD_INIT(cache_cache.slabs_free), [color="#000066"]三种状态的链表
[color="#000066"] objsize: [color="#4169e1"]sizeof(kmem_cache_t), [color="#000066"]对象的大小
[color="#000066"] flags: SLAB_NO_REAP, [color="#000066"]设置标志为不自动回收
[color="#000066"] spinlock: SPIN_LOCK_UNLOCKED,[color="#000066"]设置自旋锁为不锁定状态
[color="#000066"] colour_off: L1_CACHE_BYTES,[color="#000066"]设定着色范围为1级缓存的大小
[color="#000066"] name: [color="#666666"]"kmem_cache",[color="#000066"]设置名称
};
[color="#b22222"]/* Guard access to the cache-chain. */
static [color="#4169e1"]struct semaphore cache_chain_sem;[color="#000066"]设置互斥锁,以便保护缓存链
[color="#b22222"]/* Place maintainer for reaping. */[color="#000066"]准备回收用的指针
static kmem_cache_t *clock_searchp = &cache_cache;
[color="#228b22"]#define cache_chain (cache_cache.next)[color="#000066"]宏定义缓存链
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]编译预处理,如果是对称多处理器
[color="#b22222"]/*
* chicken and egg problem: delay the per-cpu array allocation
* until the general caches are up.
*/[color="#000066"]注释大意:先有鸡还是先有蛋的问题:等普通缓存就绪之后再分配每个CPU的数组。
static int g_cpucache_up;[color="#000066"]定义普通缓存是否就绪的状态变量
[color="#4169e1"]static void enable_cpucache (kmem_cache_t *cachep);[color="#000066"]激活cpu缓存
[color="#4169e1"]static void enable_all_cpucaches (void);[color="#000066"]激活所有cpu缓存
[color="#a020f0"]#endif
[color="#b22222"]/* Cal the num objs, wastage, and bytes left over for a given slab size. */
[color="#000066"]本函数负责计算对象的数目,浪费的空间,以及在所给的slab中剩余的空间。
[color="#4169e1"]static void kmem_cache_estimate (unsigned long gfporder, size_t size,
int flags, size_t *left_over, unsigned int *num)
{
int i;
size_t wastage = PAGE_SIZE 0)
i--;
[color="#4169e1"]if (i > SLAB_LIMIT)
i = SLAB_LIMIT;
*num = i;
wastage -= i*size;
wastage -= L1_CACHE_ALIGN(base+i*extra);
*left_over = wastage;[color="#000066"]计算出来的浪费的空间
}
[color="#b22222"]/* Initialisation - setup the `cache' cache. */
[color="#000066"]本函数负责初始化缓存的"缓存"
[color="#4169e1"]void __init kmem_cache_init(void)
{
size_t left_over;
init_MUTEX(&cache_chain_sem);
INIT_LIST_HEAD(&cache_chain);
kmem_cache_estimate(0, cache_cache.objsize, 0,
&left_over, &cache_cache.num);
[color="#4169e1"]if (!cache_cache.num)
BUG();
cache_cache.colour = left_over/cache_cache.colour_off;
cache_cache.colour_next = 0;
}
[color="#b22222"]/* Initialisation - setup remaining internal and general caches.
* Called after the gfp() functions have been enabled, and before smp_init().
*/[color="#000066"]初始化cache_size表的过程。设置保留的内部和普通缓存。在函数gfp() (GFP, get free page)已经被激活之后再调用,
并且在smp_init() (对称多处理器初始化) 执行后再调用。
[color="#4169e1"]void __init kmem_cache_sizes_init(void)
{
cache_sizes_t *sizes = cache_sizes;
char name[20];[color="#000066"]显然有问题的,前面已经定义了CACHE_NAMELEN,这里竟然不用!
显然是开发不统一造成的,未来修改代码的时候很可能造成不好影响
[color="#b22222"]/*
* Fragmentation resistance on low memory - only use bigger
* page orders on machines with more than 32MB of memory.
*/[color="#000066"]为了避免在小内存的时候出现碎片,只有当内存大于32M的时候才会用比较大的页面数,2^n(幂)
[color="#4169e1"]if (num_physpages > (32 > PAGE_SHIFT)
slab_break_gfp_order = BREAK_GFP_ORDER_HI;
[color="#4169e1"]do {
[color="#b22222"]/* For performance, all the general caches are L1 aligned.
* This should be particularly beneficial on SMP boxes, as it
* eliminates "false sharing".
* Note for systems short on memory removing the alignment will
* allow tighter packing of the smaller caches. */
[color="#000066"] 注释大意:出于性能的考虑,所有的普通缓存都是按照L1缓存的大小对齐的。
这样做对对称多处理器的系统来说是非常有益的,这是由于对称多处理器系统消除了假共享。
snprintf(name, [color="#4169e1"]sizeof(name), [color="#666666"]"size-%Zd",sizes->cs_size);[color="#000066"]为/proc/slabinfo做准备
[color="#4169e1"]if (!(sizes->cs_cachep =
kmem_cache_create(name, sizes->cs_size,
0, SLAB_HWCACHE_ALIGN, NULL, NULL))) {
BUG();
}[color="#000066"]如果创建缓存失败,则报错。
[color="#b22222"]/* Inc off-slab bufctl limit until the ceiling is hit. */[color="#000066"]增加off-slab模式的控制限制,直到到达底线
[color="#4169e1"]if (!(OFF_SLAB(sizes->cs_cachep))) {
offslab_limit = sizes->cs_size-[color="#4169e1"]sizeof(slab_t);
offslab_limit /= 2;这里实际上有问题,应该写成offslab_limit /=sizeof(kmem_bufctl_t)
如果按照/2计算的话,那永远都不会到达底线了。这个问题在2.6的内核中已经修正
参考资料:
http://www.cs.helsinki.fi/linux/linux-kernel/2001-17/1193.html
}
snprintf(name, [color="#4169e1"]sizeof(name), [color="#666666"]"size-%Zd(DMA)",sizes->cs_size);[color="#000066"]设置名称
sizes->cs_dmacachep = kmem_cache_create(name, sizes->cs_size, 0,
SLAB_CACHE_DMA|SLAB_HWCACHE_ALIGN, NULL, NULL);
[color="#4169e1"]if (!sizes->cs_dmacachep)
BUG();
sizes++;
} [color="#4169e1"]while (sizes->cs_size);
}
[color="#4169e1"]int __init kmem_cpucache_init(void)
{
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]编译预处理,如果是多处理器
g_cpucache_up = 1;[color="#000066"]设置普通缓存已经激活标志
enable_all_cpucaches();[color="#000066"]激活所有cpu的缓存 怀疑有问题,不作为原子操作可以吗?而且先设置激活然后执行?
[color="#a020f0"]#endif
[color="#4169e1"]return 0;
}
[color="#4169e1"]__initcall(kmem_cpucache_init);
[color="#b22222"]/* Interface to system's page allocator. No need to hold the cache-lock.
*/[color="#000066"]对系统页分配器的借口,不需要加缓存锁。
static inline void * kmem_getpages (kmem_cache_t *cachep, unsigned long flags)
{
void *addr;
[color="#b22222"]/*
* If we requested dmaable memory, we will get it. Even if we
* did not request dmaable memory, we might get it, but that
* would be relatively rare and ignorable.
*/[color="#000066"]如果我们要求dma方式的内存,那么我们将获得。即使我们没有要求可以dma方式的内存,
我们仍然可能会获取到,但是通常情况下这个是不会被忽略的。
flags |= cachep->gfpflags;
addr = (void*) __get_free_pages(flags, cachep->gfporder);
[color="#b22222"]/* Assume that now we have the pages no one else can legally
* messes with the 'struct page's.
* However vm_scan() might try to test the structure to see if
* it is a named-page or buffer-page. The members it tests are
* of no interest here.....
*/[color="#000066"]到此为止,我们已经有了别人不能弄乱的页面了。尽管vm_scan()有可能会去检测这个结构,看看是一个命名了的页还是一个缓存页。
对于成员的测试在这里并不关心。
[color="#4169e1"]return addr;
}
[color="#b22222"]/* Interface to system's page release. */
[color="#000066"]系统释放页面的接口。
[color="#4169e1"]static inline void kmem_freepages (kmem_cache_t *cachep, void *addr)
{
unsigned long i = (1gfporder);
[color="#4169e1"]struct page *page = virt_to_page(addr);
[color="#b22222"]/* free_pages() does not clear the type bit - we do that.
* The pages have been unlinked from their cache-slab,
* but their 'struct page's might be accessed in
* vm_scan(). Shouldn't be a worry.
*/[color="#000066"]free_page()不清除标志位,我们这里手工去做。
这些页面从slab缓存中移出,但是他们的结构化页仍然可能被vm_scan()访问到,但是不必担心。
[color="#4169e1"]while (i--) {
PageClearSlab(page);[color="#000066"]清除标记位
page++;
}
free_pages((unsigned long)addr, cachep->gfporder);[color="#000066"]释放页
}
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译,如果设置调试模式
[color="#4169e1"]static inline void kmem_poison_obj (kmem_cache_t *cachep, void *addr)
{
int size = cachep->objsize;
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
addr += BYTES_PER_WORD;
size -= 2*BYTES_PER_WORD;
}[color="#000066"]留出红区
memset(addr, POISON_BYTE, size);[color="#000066"]设置未初始化的地址内容为POSION_BYTE
*(unsigned char *)(addr+size-1) = POISON_END;[color="#000066"]写结尾
}
[color="#4169e1"]static inline int kmem_check_poison_obj (kmem_cache_t *cachep, void *addr)[color="#000066"]检查未初始化的空间的对象
{
int size = cachep->objsize;
void *end;
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
addr += BYTES_PER_WORD;
size -= 2*BYTES_PER_WORD;
}[color="#000066"]红区
end = memchr(addr, POISON_END, size);
[color="#4169e1"]if (end != (addr+size-1))
[color="#4169e1"]return 1;[color="#000066"]出错退出
[color="#4169e1"]return 0;[color="#000066"]正常退出
}
[color="#a020f0"]#endif
[color="#b22222"]/* Destroy all the objs in a slab, and release the mem back to the system.
* Before calling the slab must have been unlinked from the cache.
* The cache-lock is not held/needed.
*/[color="#000066"]注释大意:销毁slab中的所有对象,释放内存给系统。
调用前,slab必须已经和cache取消了连接
缓存锁不被占用,也不需要缓存锁。
[color="#4169e1"]static void kmem_slab_destroy (kmem_cache_t *cachep, slab_t *slabp)
{
[color="#4169e1"]if (cachep->dtor
[color="#a020f0"]#if DEBUG
|| cachep->flags & (SLAB_POISON | SLAB_RED_ZONE)[color="#000066"]如果调试模式,则作红区处理
[color="#a020f0"]#endif
) {
int i;
[color="#4169e1"]for (i = 0; i num; i++) {
void* objp = slabp->s_mem+cachep->objsize*i;
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
[color="#4169e1"]if (*((unsigned long*)(objp)) != RED_MAGIC1)
BUG();
[color="#4169e1"]if (*((unsigned long*)(objp + cachep->objsize
-BYTES_PER_WORD)) != RED_MAGIC1)
BUG();[color="#000066"]红区的边界不对,则报错
objp += BYTES_PER_WORD;
}
[color="#a020f0"]#endif
[color="#4169e1"]if (cachep->dtor)
(cachep->dtor)(objp, cachep, 0);[color="#000066"]清空
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
objp -= BYTES_PER_WORD;[color="#000066"]减去一个字的长度
}
[color="#4169e1"]if ((cachep->flags & SLAB_POISON) &&
kmem_check_poison_obj(cachep, objp))[color="#000066"]检查未初始化的部分,如果有问题则报错
BUG();
[color="#a020f0"]#endif
}
}
kmem_freepages(cachep, slabp->s_mem-slabp->colouroff);[color="#000066"]释放资源
[color="#4169e1"]if (OFF_SLAB(cachep))[color="#000066"]释放off-slab模式的资源
kmem_cache_free(cachep->slabp_cache, slabp);
}
[color="#b22222"]/**
* kmem_cache_create - Create a cache.
* @name: A string which is used in /proc/slabinfo to identify this cache.
* @size: The size of objects to be created in this cache.
* @offset: The offset to use within the page.
* @flags: SLAB flags
* @ctor: A constructor for the objects.
* @dtor: A destructor for the objects.
*
* Returns a ptr to the cache on success, NULL on failure.
* Cannot be called within a int, but can be interrupted.
* The @ctor is run when new pages are allocated by the cache
* and the @dtor is run before the pages are handed back.
* The flags are
*
* %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
* to catch references to uninitialised memory.
*
* %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
* for buffer overruns.
*
* %SLAB_NO_REAP - Don't automatically reap this cache when we're under
* memory pressure.
*
* %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
* cacheline. This can be beneficial if you're counting cycles as closely
* as davem.
*/
kmem_cache_t *
[color="#4169e1"]kmem_cache_create (const char *name, size_t size, size_t offset,
unsigned long flags, void (*ctor)(void*, kmem_cache_t *, unsigned long),
void (*dtor)(void*, kmem_cache_t *, unsigned long))
{
const char *func_nm = KERN_ERR [color="#666666"]"kmem_create: ";
size_t left_over, align, slab_size;
kmem_cache_t *cachep = NULL;
[color="#b22222"]/*
* Sanity checks... these are all serious usage bugs.
*/[color="#000066"]健壮性检察
[color="#4169e1"]if ((!name) ||
((strlen(name) >= CACHE_NAMELEN - 1)) ||
in_interrupt() ||
(size (1 size))
BUG();
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译
[color="#4169e1"]if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
[color="#b22222"]/* No constructor, but inital state check requested */[color="#000066"]没有构建者,但是要求初始化检查
printk([color="#666666"]"%sNo con, but init state check requested - %s\n", func_nm, name);
flags &= ~SLAB_DEBUG_INITIAL;
}
[color="#4169e1"]if ((flags & SLAB_POISON) && ctor) {[color="#000066"]在没有构建者的情况下要求设置未初始化
[color="#b22222"]/* request for poisoning, but we can't do that with a constructor */
printk([color="#666666"]"%sPoisoning requested, but con given - %s\n", func_nm, name);
flags &= ~SLAB_POISON;
}
[color="#a020f0"]#if FORCED_DEBUG
[color="#4169e1"]if ((size >3)) && !(flags & SLAB_MUST_HWCACHE_ALIGN))
[color="#b22222"]/*
* do not red zone large object, causes severe
* fragmentation.
*/[color="#000066"]不将大的对象放入到红区,否则会造成大量碎片
flags |= SLAB_RED_ZONE;
[color="#4169e1"]if (!ctor)
flags |= SLAB_POISON;
[color="#a020f0"]#endif
[color="#a020f0"]#endif
[color="#b22222"]/*
* Always checks flags, a caller might be expecting debug
* support which isn't available.
*/
BUG_ON(flags & ~CREATE_MASK);
[color="#b22222"]/* Get cache's description obj. */[color="#000066"]调用kmem_cache_alloc从cache_cache中分配一个对象
cachep = (kmem_cache_t *) kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
[color="#4169e1"]if (!cachep)
[color="#4169e1"]goto opps;
memset(cachep, 0, [color="#4169e1"]sizeof(kmem_cache_t));[color="#000066"]将新分配的空间全都设置为0
[color="#b22222"]/* Check that size is in terms of words. This is needed to avoid
* unaligned accesses for some archs when redzoning is used, and makes
* sure any on-slab bufctl's are also correctly aligned.
*/[color="#000066"]检查每个字的大小。在某些体系结构的系统中,要通过这个避免再没有对齐的情况下对红区的访问
并且确认所有on-slab 缓存控制结构体已经正确对齐
[color="#4169e1"]if (size & (BYTES_PER_WORD-1)) {
size += (BYTES_PER_WORD-1);
size &= ~(BYTES_PER_WORD-1);
printk([color="#666666"]"%sForcing size word alignment - %s\n", func_nm, name);
}
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (flags & SLAB_RED_ZONE) {
[color="#b22222"]/*
* There is no point trying to honour cache alignment
* when redzoning.
*/
flags &= ~SLAB_HWCACHE_ALIGN;
size += 2*BYTES_PER_WORD; [color="#b22222"]/* words for redzone */[color="#000066"]红区的字数
}
[color="#a020f0"]#endif
align = BYTES_PER_WORD;
[color="#4169e1"]if (flags & SLAB_HWCACHE_ALIGN)[color="#000066"]如果要求硬件对齐,则按照CPU L1缓存的大小对齐,否则按照字长对齐
align = L1_CACHE_BYTES;
[color="#b22222"]/* Determine if the slab management is 'on' or 'off' slab. */
[color="#4169e1"]if (size >= (PAGE_SIZE>>3))[color="#000066"]判断on-slab还是off-slab
[color="#b22222"]/*
* Size is large, assume best to place the slab management obj
* off-slab (should allow better packing of objs).
*/[color="#000066"]如果大(超过512字节),那就采用off-slab模式
flags |= CFLGS_OFF_SLAB;
[color="#4169e1"]if (flags & SLAB_HWCACHE_ALIGN) {
[color="#b22222"]/* Need to adjust size so that objs are cache aligned. */
[color="#b22222"]/* Small obj size, can get at least two per cache line. */
[color="#b22222"]/* FIXME: only power of 2 supported, was better */
[color="#000066"]调整对象的大小,以便能和缓存对齐
[color="#4169e1"]while (size gfporder, size, flags,
&left_over, &cachep->num);[color="#000066"]
计算消耗,left_over保存剩余的空间,cachep->num保存slab块中可以存放的对象个数
[color="#4169e1"]if (break_flag)
[color="#4169e1"]break;
[color="#4169e1"]if (cachep->gfporder >= MAX_GFP_ORDER)[color="#000066"]如果超大(32*4096=128K),则退出循环
[color="#4169e1"]break;
[color="#4169e1"]if (!cachep->num)[color="#000066"]超过可以保存的数目了,则退出循环。
[color="#4169e1"]goto next;
[color="#4169e1"]if (flags & CFLGS_OFF_SLAB && cachep->num > offslab_limit) {[color="#000066"]超过offslab最大的限制,则重新计算花费,然后退出
[color="#b22222"]/* Oops, this num of objs will cause problems. */
cachep->gfporder--;
break_flag++;
[color="#4169e1"]goto cal_wastage;
}
[color="#b22222"]/*
* Large num of objs is good, but v. large slabs are currently
* bad for the gfp()s.
*/[color="#000066"]对象数目越多越好,但是过多的slab目前会对gfp()造成不好的影响
[color="#4169e1"]if (cachep->gfporder >= slab_break_gfp_order)
[color="#4169e1"]break;
[color="#4169e1"]if ((left_over*8) gfporder))[color="#000066"]
防止浪费的操作:假设slab只比对象大一点点,那么可能会造成一个对象的空间大的浪费,增加slab的大小,以便能存放更多的对象。
如果浪费小于等于1/8则不再增长slab
[color="#4169e1"]break; [color="#b22222"]/* Acceptable internal fragmentation. */
[color="#000066"]next:
cachep->gfporder++;
} [color="#4169e1"]while (1);
[color="#4169e1"]if (!cachep->num) {[color="#000066"]如果超限,则报错释放资源,返回
printk([color="#666666"]"kmem_cache_create: couldn't create cache %s.\n", name);
kmem_cache_free(&cache_cache, cachep);
cachep = NULL;
[color="#4169e1"]goto opps;
}
slab_size = L1_CACHE_ALIGN(cachep->num*[color="#4169e1"]sizeof(kmem_bufctl_t)+[color="#4169e1"]sizeof(slab_t));[color="#000066"]slab块中管理变量的大小总和(L1 cache对齐)
[color="#b22222"]/*
* If the slab has been placed off-slab, and we have enough space then
* move it on-slab. This is at the expense of any extra colouring.
*/[color="#000066"]能用on-slab的时候就用on-slab
[color="#4169e1"]if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
flags &= ~CFLGS_OFF_SLAB;
left_over -= slab_size;
}
[color="#b22222"]/* Offset must be a multiple of the alignment. */[color="#000066"]将offset设置为合适的对齐偏移量
offset += (align-1);
offset &= ~(align-1);
[color="#4169e1"]if (!offset)
offset = L1_CACHE_BYTES;[color="#000066"]如果没有偏移,那就按照L1缓存的大小对齐。
cachep->colour_off = offset;[color="#000066"]着色偏移量
cachep->colour = left_over/offset;[color="#000066"]当前着色
[color="#b22222"]/* init remaining fields */[color="#000066"]初始化其他的部分
[color="#4169e1"]if (!cachep->gfporder && !(flags & CFLGS_OFF_SLAB))
flags |= CFLGS_OPTIMIZE;
cachep->flags = flags;[color="#000066"]设标志
cachep->gfpflags = 0;
[color="#4169e1"]if (flags & SLAB_CACHE_DMA)
cachep->gfpflags |= GFP_DMA;
spin_lock_init(&cachep->spinlock);[color="#000066"]初始化锁
cachep->objsize = size;[color="#000066"]设大小
INIT_LIST_HEAD(&cachep->slabs_full);
INIT_LIST_HEAD(&cachep->slabs_partial);
INIT_LIST_HEAD(&cachep->slabs_free);[color="#000066"]初始化3个队列
[color="#4169e1"]if (flags & CFLGS_OFF_SLAB)
cachep->slabp_cache = kmem_find_general_cachep(slab_size,0);[color="#000066"]指向cache_cache中与slab_size对应的变量
cachep->ctor = ctor;[color="#000066"]构建者
cachep->dtor = dtor;[color="#000066"]析构
[color="#b22222"]/* Copy name over so we don't have problems with unloaded modules */
strcpy(cachep->name, name);[color="#000066"]为了避免模块被卸载后出现问题,在这里保存一下名字。
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"] 条件编译,对称多处理器的情况下,如果普通缓存激活了,那么激活cpu缓存。
[color="#4169e1"]if (g_cpucache_up)
enable_cpucache(cachep);
[color="#a020f0"]#endif
[color="#b22222"]/* Need the semaphore to access the chain. */
down(&cache_chain_sem);[color="#000066"]设置信号量,以便可以访问缓存链
{
[color="#4169e1"]struct list_head *p;
list_for_each(p, &cache_chain) {
kmem_cache_t *pc = list_entry(p, kmem_cache_t, next);
[color="#b22222"]/* The name field is constant - no lock needed. */[color="#000066"]名称出错,则报错
[color="#4169e1"]if (!strcmp(pc->name, name))
BUG();
}
}
[color="#b22222"]/* There is no reason to lock our new cache before we
* link it in - no one knows about it yet...
*/[color="#000066"]在加入链之前没有必要锁定新的缓存,因为还没有任何进程可以知道他
list_add(&cachep->next, &cache_chain);
up(&cache_chain_sem);[color="#000066"]锁定
[color="#000066"]opps:
[color="#4169e1"]return cachep;[color="#000066"]返回新建缓存区的指针
}
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译
[color="#b22222"]/*
* This check if the kmem_cache_t pointer is chained in the cache_cache
* list. -arca
*/[color="#000066"]检查kmem_cache_t是否连接到了cache_cache链表中
[color="#4169e1"]static int is_chained_kmem_cache(kmem_cache_t * cachep)
{
[color="#4169e1"]struct list_head *p;
int ret = 0;
[color="#b22222"]/* Find the cache in the chain of caches. */
down(&cache_chain_sem);
list_for_each(p, &cache_chain) {
[color="#4169e1"]if (p == &cachep->next) {
ret = 1;
[color="#4169e1"]break;
}
}
up(&cache_chain_sem);
[color="#4169e1"]return ret;
}
[color="#a020f0"]#else[color="#000066"]如果不要求调试,则定义空操作
[color="#228b22"]#define is_chained_kmem_cache(x) 1
[color="#a020f0"]#endif
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"] 条件编译,对称多处理器
[color="#b22222"]/*
* Waits for all CPUs to execute func().
*/[color="#000066"]在所有的CPU上都执行某个函数
[color="#4169e1"]static void smp_call_function_all_cpus(void (*func) (void *arg), void *arg)
{
local_irq_disable();[color="#000066"]关中断
func(arg);[color="#000066"]执行函数
local_irq_enable();[color="#000066"]开中断
[color="#4169e1"]if (smp_call_function(func, arg, 1, 1))[color="#000066"]如果掉用函数有问题,则报错
BUG();
}
[color="#4169e1"]typedef struct ccupdate_struct_s
{
kmem_cache_t *cachep;
cpucache_t *new[NR_CPUS];
} ccupdate_struct_t;
[color="#4169e1"]static void do_ccupdate_local(void *info)
{
ccupdate_struct_t *new = (ccupdate_struct_t *)info;
cpucache_t *old = cc_data(new->cachep);
cc_data(new->cachep) = new->new[smp_processor_id()];
new->new[smp_processor_id()] = old;
}[color="#000066"]本地作cpu缓存更新
[color="#4169e1"]static void free_block (kmem_cache_t* cachep, void** objpp, int len);
[color="#4169e1"]static void drain_cpu_caches(kmem_cache_t *cachep)
{[color="#000066"]耗尽cpu缓存
ccupdate_struct_t new;
int i;
memset(&new.new,0,[color="#4169e1"]sizeof(new.new));
new.cachep = cachep;
down(&cache_chain_sem);
smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
[color="#4169e1"]for (i = 0; i avail == 0))
[color="#4169e1"]continue;
local_irq_disable();
free_block(cachep, cc_entry(ccold), ccold->avail);
local_irq_enable();
ccold->avail = 0;
}
smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
up(&cache_chain_sem);
}
[color="#a020f0"]#else [color="#000066"]不是对称多处理器的情况定义一个空操作
[color="#228b22"]#define drain_cpu_caches(cachep) do { } while (0)
[color="#a020f0"]#endif
[color="#b22222"]/*
* Called with the &cachep->spinlock held, returns number of slabs released
*/[color="#000066"]调用的时候要保持自旋锁,返回释放的slab数目
[color="#4169e1"]static int __kmem_cache_shrink_locked(kmem_cache_t *cachep)
{
slab_t *slabp;
int ret = 0;
[color="#b22222"]/* If the cache is growing, stop shrinking. */[color="#000066"]如果正在增长,那么不可以收缩
[color="#4169e1"]while (!cachep->growing) {
[color="#4169e1"]struct list_head *p;
p = cachep->slabs_free.prev;
[color="#4169e1"]if (p == &cachep->slabs_free)
[color="#4169e1"]break;
slabp = list_entry(cachep->slabs_free.prev, slab_t, list);
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (slabp->inuse)
BUG();
[color="#a020f0"]#endif
list_del(&slabp->list);[color="#000066"]遍历链表,从后向前删除
spin_unlock_irq(&cachep->spinlock);[color="#000066"]发解除自旋锁的中断
kmem_slab_destroy(cachep, slabp);[color="#000066"]删除缓存区
ret++;
spin_lock_irq(&cachep->spinlock);[color="#000066"]重新加锁
}
[color="#4169e1"]return ret;
}
[color="#4169e1"]static int __kmem_cache_shrink(kmem_cache_t *cachep)[color="#000066"]收缩操作
{
int ret;
drain_cpu_caches(cachep);
spin_lock_irq(&cachep->spinlock);[color="#000066"]加自旋锁
__kmem_cache_shrink_locked(cachep);[color="#000066"]执行删除
ret = !list_empty(&cachep->slabs_full) ||
!list_empty(&cachep->slabs_partial);[color="#000066"]检查是否为空链表,如果是的话返回1,否则返回0
spin_unlock_irq(&cachep->spinlock);[color="#000066"]解锁
[color="#4169e1"]return ret;
}
[color="#b22222"]/**
* kmem_cache_shrink - Shrink a cache.
* @cachep: The cache to shrink.
*
* Releases as many slabs as possible for a cache.
* Returns number of pages released.
*/[color="#000066"]收缩操作,释放尽量多的slab,返回释放的页面数
[color="#4169e1"]int kmem_cache_shrink(kmem_cache_t *cachep)
{
int ret;
[color="#4169e1"]if (!cachep || in_interrupt() || !is_chained_kmem_cache(cachep))[color="#000066"]如果要收缩NULL,正在中断中,要收缩链上的缓存,则报错
BUG();
spin_lock_irq(&cachep->spinlock);[color="#000066"]发加锁中断
ret = __kmem_cache_shrink_locked(cachep);[color="#000066"]收缩
spin_unlock_irq(&cachep->spinlock);[color="#000066"]发解锁中断
[color="#4169e1"]return ret gfporder;
}
[color="#b22222"]/**
* kmem_cache_destroy - delete a cache
* @cachep: the cache to destroy
*[color="#000066"]注释大意:kmem_cache_destory删除一个缓存,cachep是将要被删除的缓存[color="#b22222"]
* Remove a kmem_cache_t object from the slab cache.
* Returns 0 on success.
*[color="#000066"]返回0则成功[color="#b22222"]
* It is expected this function will be called by a module when it is
* unloaded. This will remove the cache completely, and avoid a duplicate
* cache being allocated each time a module is loaded and unloaded, if the
* module doesn't have persistent in-kernel storage across loads and unloads.
*[color="#000066"]在模块被卸载的时候,这个函数需要被调用。他将完全清除缓存,
以便避免不能永久访问内核存储区的模块每次卸载和挂载的时候会出现重复的缓存被要求分配。[color="#b22222"]
* The cache must be empty before calling this function.
*[color="#000066"]在调用前,缓存必须是空的[color="#b22222"]
* The caller must guarantee that noone will allocate memory from the cache
* during the kmem_cache_destroy().
*/[color="#000066"]调用者必须确认,在执行清除缓存操作的时候,不会有人申请内存
[color="#4169e1"]int kmem_cache_destroy (kmem_cache_t * cachep)
{
[color="#4169e1"]if (!cachep || in_interrupt() || cachep->growing)[color="#000066"]如果要销毁NULL,正在中断中,要销毁正在增长的缓存,则报错
BUG();
[color="#b22222"]/* Find the cache in the chain of caches. */
down(&cache_chain_sem);[color="#000066"]允许访问缓存链
[color="#b22222"]/* the chain is never empty, cache_cache is never destroyed */
[color="#4169e1"]if (clock_searchp == cachep)[color="#000066"]如果链不空,则无法销毁
clock_searchp = list_entry(cachep->next.next,
kmem_cache_t, next);
list_del(&cachep->next);
up(&cache_chain_sem);
[color="#4169e1"]if (__kmem_cache_shrink(cachep)) {[color="#000066"]如果无法一直收缩(非空),则报错
printk(KERN_ERR [color="#666666"]"kmem_cache_destroy: Can't free all objects %p\n",
cachep);
down(&cache_chain_sem);
list_add(&cachep->next,&cache_chain);
up(&cache_chain_sem);
[color="#4169e1"]return 1;
}
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"]条件编译,多处理器情况
{
int i;
[color="#4169e1"]for (i = 0; i cpudata);[color="#000066"]释放每个cpu相应的缓存的数组
}
[color="#a020f0"]#endif
kmem_cache_free(&cache_cache, cachep);[color="#000066"]释放内存
[color="#4169e1"]return 0;
}
[color="#b22222"]/* Get the memory for a slab management obj. */[color="#000066"]为slab管理对象申请内存
static inline slab_t * kmem_cache_slabmgmt (kmem_cache_t *cachep,
void *objp, int colour_off, int local_flags)
{
slab_t *slabp;
[color="#4169e1"]if (OFF_SLAB(cachep)) {
[color="#b22222"]/* Slab management obj is off-slab. */[color="#000066"]如果是off-slab模式的
slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
[color="#4169e1"]if (!slabp)[color="#000066"]出错处理
[color="#4169e1"]return NULL;
} [color="#4169e1"]else {[color="#000066"]on-slab模式
[color="#b22222"]/* FIXME: change to
slabp = objp
* if you enable OPTIMIZE
*/
slabp = objp+colour_off;[color="#000066"]根据着色空间进行偏移
colour_off += L1_CACHE_ALIGN(cachep->num *
[color="#4169e1"]sizeof(kmem_bufctl_t) + [color="#4169e1"]sizeof(slab_t));[color="#000066"]计算着色空间更新
}
slabp->inuse = 0;[color="#000066"]活动对象为0
slabp->colouroff = colour_off;[color="#000066"]着色空间更新
slabp->s_mem = objp+colour_off;[color="#000066"]slab块中第一个对象的地址
[color="#4169e1"]return slabp;
}
[color="#4169e1"]static inline void kmem_cache_init_objs (kmem_cache_t * cachep,
slab_t * slabp, unsigned long ctor_flags)
{
int i;
[color="#4169e1"]for (i = 0; i num; i++) {[color="#000066"]对slab块中每一个对象进行构造
void* objp = slabp->s_mem+cachep->objsize*i;[color="#a020f0"]
#if DEBUG
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
*((unsigned long*)(objp)) = RED_MAGIC1;
*((unsigned long*)(objp + cachep->objsize -
BYTES_PER_WORD)) = RED_MAGIC1;
objp += BYTES_PER_WORD;
}
[color="#a020f0"]#endif
[color="#b22222"]/*
* Constructors are not allowed to allocate memory from
* the same cache which they are a constructor for.
* Otherwise, deadlock. They must also be threaded.
*/[color="#000066"]构造函数不能从他们自己构造的同一个缓存中申请内存,否则会造成死锁。
[color="#4169e1"]if (cachep->ctor)
cachep->ctor(objp, cachep, ctor_flags);
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE)
objp -= BYTES_PER_WORD;
[color="#4169e1"]if (cachep->flags & SLAB_POISON)
[color="#b22222"]/* need to poison the objs */
kmem_poison_obj(cachep, objp);
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
[color="#4169e1"]if (*((unsigned long*)(objp)) != RED_MAGIC1)
BUG();
[color="#4169e1"]if (*((unsigned long*)(objp + cachep->objsize -
BYTES_PER_WORD)) != RED_MAGIC1)
BUG();
}
[color="#a020f0"]#endif
slab_bufctl(slabp) = i+1;
}
slab_bufctl(slabp)[i-1] = BUFCTL_END;[color="#000066"]标示结束(0xffffFFFF)
slabp->free = 0;[color="#000066"]第一个空闲对象(对象数组的下标设置为0)
}
[color="#b22222"]/*
* Grow (by 1) the number of slabs within a cache. This is called by
* kmem_cache_alloc() when there are no active objs left in a cache.
*/[color="#000066"]增加1个slab在cache中。这个函数缓存中没有活跃对象时,被kmem_cache_alloc()调用
[color="#4169e1"]static int kmem_cache_grow (kmem_cache_t * cachep, int flags)
{
slab_t *slabp;
[color="#4169e1"]struct page *page;
void *objp;
size_t offset;
unsigned int i, local_flags;
unsigned long ctor_flags;
unsigned long save_flags;
[color="#b22222"]/* Be lazy and only check for valid flags here,
* keeping it out of the critical path in kmem_cache_alloc().
*/[color="#000066"]只检查不合法的标示,重要的完整性检查在kmem_cache_alloc中完成
[color="#4169e1"]if (flags & ~(SLAB_DMA|SLAB_LEVEL_MASK|SLAB_NO_GROW))
BUG();
[color="#4169e1"]if (flags & SLAB_NO_GROW)[color="#000066"]如果不允许增加,则直接返回
[color="#4169e1"]return 0;
[color="#b22222"]/*
* The test for missing atomic flag is performed here, rather than
* the more obvious place, simply to reduce the critical path length
* in kmem_cache_alloc(). If a caller is seriously mis-behaving they
* will eventually be caught here (where it matters).
*/[color="#000066"]原子操作位一定要设置,以便防止被中断处理程序调用的时候中断处理时间过长。
如果GFP_WAIT GFP_HIGH GFP_IO GFP_HIGHMEM没有被设置则报错
如果正在中断中,报错
[color="#4169e1"]if (in_interrupt() && (flags & SLAB_LEVEL_MASK) != SLAB_ATOMIC)
BUG();
ctor_flags = SLAB_CTOR_CONSTRUCTOR;
local_flags = (flags & SLAB_LEVEL_MASK);
[color="#4169e1"]if (local_flags == SLAB_ATOMIC)
[color="#b22222"]/*
* Not allowed to sleep. Need to tell a constructor about
* this - it might need to know...
*/[color="#000066"]告诉构造者,不能进入睡眠状态
ctor_flags |= SLAB_CTOR_ATOMIC;
[color="#b22222"]/* About to mess with non-constant members - lock. */[color="#000066"]对变量的处理,存中断
spin_lock_irqsave(&cachep->spinlock, save_flags);
[color="#b22222"]/* Get colour for the slab, and cal the next value. */[color="#000066"]获得slab颜色,算下一个着色值
offset = cachep->colour_next;
cachep->colour_next++;
[color="#4169e1"]if (cachep->colour_next >= cachep->colour)[color="#000066"]如果计数器>=最大值
cachep->colour_next = 0;[color="#000066"]绕了一圈,回到起点
offset *= cachep->colour_off; [color="#000066"]offset等于当前slab所有偏移量的大小(offset=数目*每一个对象的偏移量)
cachep->dflags |= DFLGS_GROWN;[color="#000066"]设置动态增长位
cachep->growing++;[color="#000066"]标志正在增长
spin_unlock_irqrestore(&cachep->spinlock, save_flags);[color="#000066"]恢复中断
[color="#b22222"]/* A series of memory allocations for a new slab.
* Neither the cache-chain semaphore, or cache-lock, are
* held, but the incrementing c_growing prevents this
* cache from being reaped or shrunk.
* Note: The cache could be selected in for reaping in
* kmem_cache_reap(), but when the final test is made the
* growing value will be seen.
*/[color="#000066"]注释大意:为新的slab做的一系列的内存申请操作。
通过c_growing来避免这块缓存被回收或者收缩,而不是通过加互斥锁或者缓存锁来实现。
需要注意,这块缓存可以被选进回收的函数kmem_cache_reap(),但是在那里面会发现这块缓存正在增长所以不回收。
[color="#b22222"]/* Get mem for the objs. */
[color="#4169e1"]if (!(objp = kmem_getpages(cachep, flags)))[color="#000066"]为对象申请页面
[color="#4169e1"]goto failed;[color="#000066"]出错处理
[color="#b22222"]/* Get slab management. */[color="#000066"]获得slab管理对象
[color="#4169e1"]if (!(slabp = kmem_cache_slabmgmt(cachep, objp, offset, local_flags)))
[color="#4169e1"]goto opps1;[color="#000066"]出错处理
[color="#b22222"]/* Nasty!!!!!! I hope this is OK. */
i = 1 gfporder;[color="#000066"]i=slab块的页面数
page = virt_to_page(objp);[color="#000066"]page是指向这个对象所在页面指针
[color="#4169e1"]do {
SET_PAGE_CACHE(page, cachep);[color="#000066"]设置页所在的cache,即(page->list.next=(struct list_head *)cachep
SET_PAGE_SLAB(page, slabp);[color="#000066"]设置页所在的slab,即(page->list.prev=(struct list_head *)slabp
PageSetSlab(page);[color="#000066"]设置页在slab中
page++;[color="#000066"]下一页
} [color="#4169e1"]while (--i);[color="#000066"]循环,直到在slab中的页都设置好了
kmem_cache_init_objs(cachep, slabp, ctor_flags);[color="#000066"]初始化对象
spin_lock_irqsave(&cachep->spinlock, save_flags);[color="#000066"]存中断
cachep->growing--;[color="#000066"]标记缓存不增长
[color="#b22222"]/* Make slab active. */
list_add_tail(&slabp->list, &cachep->slabs_free);[color="#000066"]将新创建的slab放在该缓存区slab链的尾部
STATS_INC_GROWN(cachep);[color="#000066"]增长状态
cachep->failures = 0;[color="#000066"]缓存失效次数等于0
spin_unlock_irqrestore(&cachep->spinlock, save_flags);[color="#000066"]解锁,回复中断状态
[color="#4169e1"]return 1;[color="#000066"]正常返回
[color="#000066"]opps1:
kmem_freepages(cachep, objp);[color="#000066"]释放页面
[color="#000066"]failed:
spin_lock_irqsave(&cachep->spinlock, save_flags);
cachep->growing--;[color="#000066"]不增长状态
spin_unlock_irqrestore(&cachep->spinlock, save_flags);
[color="#4169e1"]return 0;
}
[color="#b22222"]/*
* Perform extra freeing checks:
* - detect double free
* - detect bad pointers.
* Called with the cache-lock held.
*/[color="#000066"]检查是否有多余的free,是否有野指针,调用的时候需要有缓存锁
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译,如果是查错模式
[color="#4169e1"]static int kmem_extra_free_checks (kmem_cache_t * cachep,
slab_t *slabp, void * objp)
{
int i;
unsigned int objnr = (objp-slabp->s_mem)/cachep->objsize;
[color="#4169e1"]if (objnr >= cachep->num)
BUG();
[color="#4169e1"]if (objp != slabp->s_mem + objnr*cachep->objsize)
BUG();
[color="#b22222"]/* Check slab's freelist to see if this obj is there. */[color="#000066"]检查对象是否在施放列表里
[color="#4169e1"]for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)) {
[color="#4169e1"]if (i == objnr)
BUG();
}
[color="#4169e1"]return 0;
}
[color="#a020f0"]#endif
[color="#4169e1"]static inline void kmem_cache_alloc_head(kmem_cache_t *cachep, int flags)
{
[color="#4169e1"]if (flags & SLAB_DMA) {
[color="#4169e1"]if (!(cachep->gfpflags & GFP_DMA))[color="#000066"]如果flags包含SLAB_DMA并且缓存要求新页的flag不包含GFP_DMA则报错
BUG();
} [color="#4169e1"]else {
[color="#4169e1"]if (cachep->gfpflags & GFP_DMA)[color="#000066"]如果flags不包含SLAB_DMA并且缓存要求新页的flag包含GFP_DMA则报错
BUG();
}
}
static inline void * kmem_cache_alloc_one_tail (kmem_cache_t *cachep,
slab_t *slabp)
{
void *objp;
STATS_INC_ALLOCED(cachep);
STATS_INC_ACTIVE(cachep);
STATS_SET_HIGH(cachep);[color="#000066"]统计操作(如果STATS不是1,则相当于空操作)
[color="#b22222"]/* get obj pointer */
slabp->inuse++;[color="#000066"]slab的活动对象加1
objp = slabp->s_mem + slabp->free*cachep->objsize;[color="#000066"]
指向该slab中第一个空闲对象地址的指针(=第一个对象地址+空闲数目*对象的大小)
slabp->free=slab_bufctl(slabp)[slabp->free];[color="#000066"]当前对象的下一个空闲对象在对象数组中的下标(即第几个)
[color="#4169e1"]if (unlikely(slabp->free == BUFCTL_END)) {[color="#000066"]满了,把它放到满了的slab列表中。
list_del(&slabp->list);[color="#000066"]从当前列表中删除
list_add(&slabp->list, &cachep->slabs_full);[color="#000066"]放到满了的列表里
}
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译,调试模式下
[color="#4169e1"]if (cachep->flags & SLAB_POISON)[color="#000066"]在未初始化的slab区域
[color="#4169e1"]if (kmem_check_poison_obj(cachep, objp))[color="#000066"]如果是未初始化的对象,则报错
BUG();
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {[color="#000066"]在红区
[color="#b22222"]/* Set alloc red-zone, and check old one. */
[color="#4169e1"]if (xchg((unsigned long *)objp, RED_MAGIC2) !=[color="#000066"]如果边界有问题则报错
RED_MAGIC1)
BUG();
[color="#4169e1"]if (xchg((unsigned long *)(objp+cachep->objsize -
BYTES_PER_WORD), RED_MAGIC2) != RED_MAGIC1)[color="#000066"]对象大小出错则报错
BUG();
objp += BYTES_PER_WORD;
}
[color="#a020f0"]#endif
[color="#4169e1"]return objp;[color="#000066"]返回新分配的对象地址
}
[color="#b22222"]/*
* Returns a ptr to an obj in the given cache.
* caller must guarantee synchronization
* #define for the goto optimization 8-)
*/[color="#000066"]返回一个指向给定的cache中一个对象的指针
调用者必须确保同步
使用define以便保证对goto的优化
[color="#228b22"]#define kmem_cache_alloc_one(cachep) \
({ \
struct list_head * slabs_partial, * entry; \
slab_t *slabp; \
\
slabs_partial = &(cachep)->slabs_partial; \
entry = slabs_partial->next; \
if (unlikely(entry == slabs_partial)) { \
struct list_head * slabs_free; \
slabs_free = &(cachep)->slabs_free; \
entry = slabs_free->next; \
if (unlikely(entry == slabs_free)) \
goto alloc_new_slab; \
list_del(entry); \
list_add(entry, slabs_partial); \
} \
\
slabp = list_entry(entry, slab_t, list); \
kmem_cache_alloc_one_tail(cachep, slabp); \
})
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译,对称多处理机的支持,申请一批缓存
void* kmem_cache_alloc_batch(kmem_cache_t* cachep, cpucache_t* cc, int flags)
{
int batchcount = cachep->batchcount;
spin_lock(&cachep->spinlock);
[color="#4169e1"]while (batchcount--) {
[color="#4169e1"]struct list_head * slabs_partial, * entry;
slab_t *slabp;
[color="#b22222"]/* Get slab alloc is to come from. */
slabs_partial = &(cachep)->slabs_partial;
entry = slabs_partial->next;
[color="#4169e1"]if (unlikely(entry == slabs_partial)) {
[color="#4169e1"]struct list_head * slabs_free;
slabs_free = &(cachep)->slabs_free;
entry = slabs_free->next;
[color="#4169e1"]if (unlikely(entry == slabs_free))
[color="#4169e1"]break;
list_del(entry);
list_add(entry, slabs_partial);
}
slabp = list_entry(entry, slab_t, list);
cc_entry(cc)[cc->avail++] =
kmem_cache_alloc_one_tail(cachep, slabp);
}
spin_unlock(&cachep->spinlock);
[color="#4169e1"]if (cc->avail)
[color="#4169e1"]return cc_entry(cc)[--cc->avail];
[color="#4169e1"]return NULL;
}
[color="#a020f0"]#endif
static inline void * __kmem_cache_alloc (kmem_cache_t *cachep, int flags)
{
unsigned long save_flags;
void* objp;
kmem_cache_alloc_head(cachep, flags);[color="#000066"]检查申请是否合理
[color="#000066"]try_again:
local_irq_save(save_flags);[color="#000066"]保存中断
[color="#a020f0"]#ifdef CONFIG_SMP[color="#000066"] 条件编译,对称多处理器的情况
{
cpucache_t *cc = cc_data(cachep);[color="#000066"]cpu缓存指针指向送入的缓存
[color="#4169e1"]if (cc) {[color="#000066"]有缓存的情况
[color="#4169e1"]if (cc->avail) {[color="#000066"]如果CPU缓存可用
STATS_INC_ALLOCHIT(cachep);[color="#000066"]命中计数
objp = cc_entry(cc)[--cc->avail];[color="#000066"]对象的指针指向cpu缓存,并且cpu缓存可用数目减1
} [color="#4169e1"]else {[color="#000066"]cpu缓存不可用
STATS_INC_ALLOCMISS(cachep);[color="#000066"]没有命中计数加1
objp = kmem_cache_alloc_batch(cachep,cc,flags);[color="#000066"]对象指针指向批量申请缓存返回的地址
[color="#4169e1"]if (!objp)
[color="#4169e1"]goto alloc_new_slab_nolock;[color="#000066"]没有申请下缓存,则不加锁申请新的slab块
}
} [color="#4169e1"]else {[color="#000066"]没有缓存的情况
spin_lock(&cachep->spinlock);[color="#000066"]加锁
objp = kmem_cache_alloc_one(cachep);[color="#000066"]申请新的缓存
spin_unlock(&cachep->spinlock);[color="#000066"]解锁
}
}
[color="#a020f0"]#else
objp = kmem_cache_alloc_one(cachep);[color="#000066"]单处理器,直接申请一个新的对象空间
[color="#a020f0"]#endif
local_irq_restore(save_flags);[color="#000066"]恢复中断
[color="#4169e1"]return objp;[color="#000066"]返回申请的对象指针
[color="#000066"]alloc_new_slab:
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译,如果是对称多处理器,则解锁
spin_unlock(&cachep->spinlock);
[color="#000066"]alloc_new_slab_nolock:
[color="#a020f0"]#endif
local_irq_restore(save_flags);[color="#000066"]恢复中断
[color="#4169e1"]if (kmem_cache_grow(cachep, flags))[color="#000066"]如果在给定的cache中成功增加了一个slab
[color="#b22222"]/* Someone may have stolen our objs. Doesn't matter, we'll
* just come back here again.
*/[color="#000066"]其他的人可能会直接要走刚刚申请下来的对象空间。如果出现这种情况,那么还会执行这里
[color="#4169e1"]goto try_again;[color="#000066"]则重新分配对象的空间
[color="#4169e1"]return NULL;[color="#000066"]如果不能给对象分配空间,并且不能在缓存里创建新的slab块,则返回空指针。
}
[color="#b22222"]/*
* Release an obj back to its cache. If the obj has a constructed
* state, it should be in this state _before_ it is released.
* - caller is responsible for the synchronization
*/
[color="#a020f0"]#if DEBUG
[color="#a020f0"]# define CHECK_NR(pg) \
[color="#4169e1"]do { \
[color="#4169e1"]if (!VALID_PAGE(pg)) { \
printk(KERN_ERR [color="#666666"]"kfree: out of range ptr %lxh.\n", \
(unsigned long)objp); \
BUG(); \
} \
} [color="#4169e1"]while (0)
[color="#a020f0"]# define CHECK_PAGE(page) \
[color="#4169e1"]do { \
CHECK_NR(page); \
[color="#4169e1"]if (!PageSlab(page)) { \
printk(KERN_ERR [color="#666666"]"kfree: bad ptr %lxh.\n", \
(unsigned long)objp); \
BUG(); \
} \
} [color="#4169e1"]while (0)
[color="#a020f0"]#else
[color="#a020f0"]# define CHECK_PAGE(pg) do { } while (0)
[color="#a020f0"]#endif
之所以使用do{}while(0)这样的写法是为了保证在任何情况宏被调用的时候都能保持相同的语义
参考:
http://www.rtems.com/rtems/maillistArchives/rtems-users/2001/august/msg00056.html
[color="#4169e1"]static inline void kmem_cache_free_one(kmem_cache_t *cachep, void *objp)
{
slab_t* slabp;
CHECK_PAGE(virt_to_page(objp));[color="#000066"]检查指向对象的页
[color="#b22222"]/* reduces memory footprint
*
if (OPTIMIZE(cachep))
slabp = (void*)((unsigned long)objp&(~(PAGE_SIZE-1)));
else
*/
slabp = GET_PAGE_SLAB(virt_to_page(objp));[color="#000066"]获取对象所在的slab块
[color="#a020f0"]#if DEBUG
[color="#4169e1"]if (cachep->flags & SLAB_DEBUG_INITIAL)
[color="#b22222"]/* Need to call the slab's constructor so the
* caller can perform a verify of its state (debugging).
* Called without the cache-lock held.
*/
cachep->ctor(objp, cachep, SLAB_CTOR_CONSTRUCTOR|SLAB_CTOR_VERIFY);
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE) {
objp -= BYTES_PER_WORD;
[color="#4169e1"]if (xchg((unsigned long *)objp, RED_MAGIC1) != RED_MAGIC2)
[color="#b22222"]/* Either write before start, or a double free. */
BUG();
[color="#4169e1"]if (xchg((unsigned long *)(objp+cachep->objsize -
BYTES_PER_WORD), RED_MAGIC1) != RED_MAGIC2)
[color="#b22222"]/* Either write past end, or a double free. */
BUG();
}
[color="#4169e1"]if (cachep->flags & SLAB_POISON)
kmem_poison_obj(cachep, objp);
[color="#4169e1"]if (kmem_extra_free_checks(cachep, slabp, objp))
[color="#4169e1"]return;
[color="#a020f0"]#endif
{
unsigned int objnr = (objp-slabp->s_mem)/cachep->objsize;
slab_bufctl(slabp)[objnr] = slabp->free;
slabp->free = objnr;[color="#000066"]上限等于新的对象的数目
}
STATS_DEC_ACTIVE(cachep);[color="#000066"]减少一个活跃的对象计数
[color="#b22222"]/* fixup slab chains */[color="#000066"]修复slab链
{
int inuse = slabp->inuse;
[color="#4169e1"]if (unlikely(!--slabp->inuse)) {
[color="#b22222"]/* Was partial or full, now empty. */[color="#000066"]满的或者半满的移到空的里面(只有一个在用的)
list_del(&slabp->list);
list_add(&slabp->list, &cachep->slabs_free);
} [color="#4169e1"]else [color="#4169e1"]if (unlikely(inuse == cachep->num)) {
[color="#b22222"]/* Was full. */[color="#000066"]满的变成半满
list_del(&slabp->list);
list_add(&slabp->list, &cachep->slabs_partial);
}
}
}
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译,对称多处理器
[color="#4169e1"]static inline void __free_block (kmem_cache_t* cachep,
void** objpp, int len)
{
[color="#4169e1"]for ( ; len > 0; len--, objpp++)
kmem_cache_free_one(cachep, *objpp);[color="#000066"]只要还有,就一直释放,直到空了
}
[color="#4169e1"]static void free_block (kmem_cache_t* cachep, void** objpp, int len)
{
spin_lock(&cachep->spinlock);
__free_block(cachep, objpp, len);[color="#000066"]加锁,调用__free_block(),解锁
spin_unlock(&cachep->spinlock);
}
[color="#a020f0"]#endif
[color="#b22222"]/*
* __kmem_cache_free
* called with disabled ints
*/
[color="#4169e1"]static inline void __kmem_cache_free (kmem_cache_t *cachep, void* objp)
{
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译,对称多处理器支持,对每个CPU的缓存作释放操作并且计数(如果定义STATS为1,否则不计数)。
cpucache_t *cc = cc_data(cachep);
CHECK_PAGE(virt_to_page(objp));
[color="#4169e1"]if (cc) {
int batchcount;
[color="#4169e1"]if (cc->avail limit) {
STATS_INC_FREEHIT(cachep);
cc_entry(cc)[cc->avail++] = objp;
[color="#4169e1"]return;
}
STATS_INC_FREEMISS(cachep);
batchcount = cachep->batchcount;
cc->avail -= batchcount;
free_block(cachep,
&cc_entry(cc)[cc->avail],batchcount);
cc_entry(cc)[cc->avail++] = objp;
[color="#4169e1"]return;
} [color="#4169e1"]else {
free_block(cachep, &objp, 1);
}
[color="#a020f0"]#else
kmem_cache_free_one(cachep, objp); [color="#000066"]单CPU,直接释放
[color="#a020f0"]#endif
}
[color="#b22222"]/**
* kmem_cache_alloc - Allocate an object
* @cachep: The cache to allocate from.
* @flags: See kmalloc().
*
* Allocate an object from this cache. The flags are only relevant
* if the cache has no available objects.
*/[color="#000066"]申请一个对象空间
void * kmem_cache_alloc (kmem_cache_t *cachep, int flags)
{
[color="#4169e1"]return __kmem_cache_alloc(cachep, flags);
}
[color="#b22222"]/**
* kmalloc - allocate memory[color="#000066"]申请内核态内存[color="#b22222"]
* @size: how many bytes of memory are required.[color="#000066"]需要申请的大小[color="#b22222"]
* @flags: the type of memory to allocate.[color="#000066"]申请的类型[color="#b22222"]
*
* kmalloc is the normal method of allocating memory
* in the kernel.
*
* The @flags argument may be one of:
*
* %GFP_USER - Allocate memory on behalf of user. May sleep.[color="#000066"]根据用户来申请,申请的时候有可能会转入睡眠[color="#b22222"]
*
* %GFP_KERNEL - Allocate normal kernel ram. May sleep.[color="#000066"]申请普通内核内存,申请的时候有可能会转入睡眠[color="#b22222"]
*
* %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.[color="#000066"]申请原子操作过程,申请的过程不会被打断。在中断处理中使用。[color="#b22222"]
*
* Additionally, the %GFP_DMA flag may be set to indicate the memory
* must be suitable for DMA. This can mean different things on different
* platforms. For example, on i386, it means that the memory must come
* from the first 16MB.
*/[color="#000066"]申请支持DMA方式访问。在不同的平台上有不同的含义,比如i386平台指必须来自前16M内存。
void * kmalloc (size_t size, int flags)
{
cache_sizes_t *csizep = cache_sizes;
[color="#4169e1"]for (; csizep->cs_size; csizep++) {
[color="#4169e1"]if (size > csizep->cs_size)[color="#000066"]遍历缓存链表,找到第一个符合要求的slab块
[color="#4169e1"]continue;
[color="#4169e1"]return __kmem_cache_alloc(flags & GFP_DMA ? [color="#000066"]根据是否是DMA来决定在哪个链上找
csizep->cs_dmacachep : csizep->cs_cachep, flags);
}
[color="#4169e1"]return NULL;[color="#000066"]不成功则返回NULL
}
[color="#b22222"]/**
* kmem_cache_free - Deallocate an object
* @cachep: The cache the allocation was from.
* @objp: The previously allocated object.
*
* Free an object which was previously allocated from this
* cache.
*/[color="#000066"]释放缓存中的一个对象
[color="#4169e1"]void kmem_cache_free (kmem_cache_t *cachep, void *objp)
{
unsigned long flags;
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译
CHECK_PAGE(virt_to_page(objp));
[color="#4169e1"]if (cachep != GET_PAGE_CACHE(virt_to_page(objp)))[color="#000066"]如果对象不在缓存的页里,那么报错
BUG();
[color="#a020f0"]#endif
local_irq_save(flags);
__kmem_cache_free(cachep, objp);[color="#000066"]存中断,执行释放,恢复中断
local_irq_restore(flags);
}
[color="#b22222"]/**
* kfree - free previously allocated memory
* @objp: pointer returned by kmalloc.
*
* Don't free memory not originally allocated by kmalloc()
* or you will run into trouble.
*/[color="#000066"]释放以前申请的内存,不要释放不是kmalloc()分配的内存,否则会出现问题
[color="#4169e1"]void kfree (const void *objp)
{
kmem_cache_t *c;
unsigned long flags;
[color="#4169e1"]if (!objp)[color="#000066"]空无法释放
[color="#4169e1"]return;
local_irq_save(flags);[color="#000066"]存中断
CHECK_PAGE(virt_to_page(objp));[color="#000066"]检查对象所在的页
c = GET_PAGE_CACHE(virt_to_page(objp));[color="#000066"]c指向对象所在的页
__kmem_cache_free(c, (void*)objp);[color="#000066"]释放这个对象
local_irq_restore(flags);[color="#000066"]恢复中断
}
[color="#4169e1"]unsigned int kmem_cache_size(kmem_cache_t *cachep)
{
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译,调试模式下
[color="#4169e1"]if (cachep->flags & SLAB_RED_ZONE)
[color="#4169e1"]return (cachep->objsize - 2*BYTES_PER_WORD);[color="#000066"]如果是红区剪掉边沿的2个字占用的空间
[color="#a020f0"]#endif
[color="#4169e1"]return cachep->objsize;[color="#000066"]返回缓存中对象空间的大小
}
kmem_cache_t * kmem_find_general_cachep (size_t size, int gfpflags)
{[color="#000066"]寻找普通缓存
cache_sizes_t *csizep = cache_sizes;
[color="#b22222"]/* This function could be moved to the header file, and
* made inline so consumers can quickly determine what
* cache pointer they require.
*/[color="#000066"]注释建议将本函数移动到某一头文件中
[color="#4169e1"]for ( ; csizep->cs_size; csizep++) {
[color="#4169e1"]if (size > csizep->cs_size)
[color="#4169e1"]continue;
[color="#4169e1"]break;
}
[color="#4169e1"]return (gfpflags & GFP_DMA) ? csizep->cs_dmacachep : csizep->cs_cachep;[color="#000066"]判读是否要求dma,返回相应的
}
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译,对称多处理器的支持:
[color="#b22222"]/* called with cache_chain_sem acquired. */[color="#000066"]需要有cache_chain_sem允许才可以被调用
[color="#4169e1"]static int kmem_tune_cpucache (kmem_cache_t* cachep, int limit, int batchcount)
{[color="#000066"]对于cpu缓存的优化
ccupdate_struct_t new;
int i;
[color="#b22222"]/*
* These are admin-provided, so we are more graceful.
*/
[color="#4169e1"]if (limit limit)
[color="#4169e1"]return -EINVAL;
[color="#4169e1"]if (limit != 0 && !batchcount)
[color="#4169e1"]return -EINVAL;
memset(&new.new,0,[color="#4169e1"]sizeof(new.new));[color="#000066"]对新的cpu缓存更新结构体置0
[color="#4169e1"]if (limit) {
[color="#4169e1"]for (i = 0; ilimit = limit;[color="#000066"]设置上限
ccnew->avail = 0;[color="#000066"]0个可用
new.new[cpu_logical_map(i)] = ccnew;[color="#000066"]新的cpu逻辑映射
}
}
new.cachep = cachep;[color="#000066"]指向原有缓存区
spin_lock_irq(&cachep->spinlock);[color="#000066"]加锁
cachep->batchcount = batchcount;[color="#000066"]计数
spin_unlock_irq(&cachep->spinlock);[color="#000066"]解锁
smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);[color="#000066"]给每个cpu都做这个操作
[color="#4169e1"]for (i = 0; i avail);
local_irq_enable();
kfree(ccold);
}
[color="#4169e1"]return 0;
[color="#000066"]oom:
[color="#4169e1"]for (i--; i >= 0; i--)
kfree(new.new[cpu_logical_map(i)]);[color="#000066"]释放新的cpu逻辑映射
[color="#4169e1"]return -ENOMEM;[color="#000066"]没有内存错误
}
[color="#4169e1"]static void enable_cpucache (kmem_cache_t *cachep)
{
int err;
int limit;
[color="#b22222"]/* FIXME: optimize */[color="#000066"]设上限
[color="#4169e1"]if (cachep->objsize > PAGE_SIZE)
[color="#4169e1"]return;
[color="#4169e1"]if (cachep->objsize > 1024)
limit = 60;
[color="#4169e1"]else [color="#4169e1"]if (cachep->objsize > 256)
limit = 124;
[color="#4169e1"]else
limit = 252;
err = kmem_tune_cpucache(cachep, limit, limit/2);
[color="#4169e1"]if (err)
printk(KERN_ERR [color="#666666"]"enable_cpucache failed for %s, error %d.\n",
cachep->name, -err);
}[color="#000066"]激活CPU缓存
[color="#4169e1"]static void enable_all_cpucaches (void)
{
[color="#4169e1"]struct list_head* p;
down(&cache_chain_sem);[color="#000066"]允许操作缓存链
p = &cache_cache.next;
[color="#4169e1"]do {
kmem_cache_t* cachep = list_entry(p, kmem_cache_t, next);
enable_cpucache(cachep);[color="#000066"]挨个激活
p = cachep->next.next;
} [color="#4169e1"]while (p != &cache_cache.next);
up(&cache_chain_sem);[color="#000066"]禁止操作缓存链
}
[color="#a020f0"]#endif
[color="#b22222"]/**
* kmem_cache_reap - Reclaim memory from caches.
* @gfp_mask: the type of memory required.
*
* Called from do_try_to_free_pages() and __alloc_pages()
*/[color="#000066"]从缓存中回收内存,在do_try_to_free_pages()和alloc_pages()中调用
[color="#4169e1"]int kmem_cache_reap (int gfp_mask)
{
slab_t *slabp;
kmem_cache_t *searchp;
kmem_cache_t *best_cachep;
unsigned int best_pages;
unsigned int best_len;
unsigned int scan;
int ret = 0;
[color="#4169e1"]if (gfp_mask & __GFP_WAIT)[color="#000066"]需要的内存中包含了GFP_WAIT位
down(&cache_chain_sem);[color="#000066"]允许链操作
[color="#4169e1"]else
[color="#4169e1"]if (down_trylock(&cache_chain_sem))[color="#000066"]非阻塞允许链操作
[color="#4169e1"]return 0;
scan = REAP_SCANLEN [color="#000066"](扫描长度10)
best_len = 0;
best_pages = 0;
best_cachep = NULL;
searchp = clock_searchp;[color="#000066"]指上次成功回收内存的缓存区结构
[color="#4169e1"]do {
unsigned int pages;
[color="#4169e1"]struct list_head* p;
unsigned int full_free;
[color="#b22222"]/* It's safe to test this without holding the cache-lock. */
[color="#4169e1"]if (searchp->flags & SLAB_NO_REAP)[color="#000066"]如果不让回收,则到下一轮
[color="#4169e1"]goto next;
spin_lock_irq(&searchp->spinlock);[color="#000066"]加锁
[color="#4169e1"]if (searchp->growing)[color="#000066"]如果正在增长,则到下一轮(同时解锁定)
[color="#4169e1"]goto next_unlock;
[color="#4169e1"]if (searchp->dflags & DFLGS_GROWN) {
searchp->dflags &= ~DFLGS_GROWN;
[color="#4169e1"]goto next_unlock;[color="#000066"]如果是动态变量,则将dflags清0,然后到下一轮(同时解锁定)
}
[color="#a020f0"]#ifdef CONFIG_SMP [color="#000066"]条件编译。对称多处理器的情况
{
cpucache_t *cc = cc_data(searchp);
[color="#4169e1"]if (cc && cc->avail) { [color="#000066"]如果有cpu缓存,并且可用,则释放
__free_block(searchp, cc_entry(cc), cc->avail);
cc->avail = 0;
}
}
[color="#a020f0"]#endif
full_free = 0;
p = searchp->slabs_free.next;[color="#000066"]指向下一个空slab的对象空间
[color="#4169e1"]while (p != &searchp->slabs_free) {[color="#000066"]
slabp = list_entry(p, slab_t, list);
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译,如果空的里面有正在使用的对象则报错
[color="#4169e1"]if (slabp->inuse)
BUG();
[color="#a020f0"]#endif
full_free++;
p = p->next;
}[color="#000066"]统计共有多少空的(保存在full_free)
[color="#b22222"]/*
* Try to avoid slabs with constructors and/or
* more than one page per slab (as it can be difficult
* to get high orders from gfp()).
*/
pages = full_free * (1gfporder); [color="#000066"]page等于所有的空闲slab块占有的页面数
[color="#4169e1"]if (searchp->ctor)[color="#000066"]如果有自己的构建函数
pages = (pages*4+1)/5;
[color="#4169e1"]if (searchp->gfporder)[color="#000066"]如果超过了1个页面
pages = (pages*4+1)/5;
[color="#4169e1"]if (pages > best_pages) {[color="#000066"]如果页面数比原有最多的页面数多,则最佳的准备释放的缓存变为新的
best_cachep = searchp;
best_len = full_free;
best_pages = pages;
[color="#4169e1"]if (pages >= REAP_PERFECT) {[color="#000066"]如果大于REAP_PREFECT(10),则将clock_searchp指向这些页,然后直接跳转到perfect
clock_searchp = list_entry(searchp->next.next,
kmem_cache_t,next);
[color="#4169e1"]goto perfect;
}
}
[color="#000066"]next_unlock:
spin_unlock_irq(&searchp->spinlock);[color="#000066"]解锁
[color="#000066"]next:
searchp = list_entry(searchp->next.next,kmem_cache_t,next);[color="#000066"]指向下一个链
} [color="#4169e1"]while (--scan && searchp != clock_searchp);[color="#000066"]搜索达到限制次数或者已经找了所有的slab
clock_searchp = searchp;
[color="#4169e1"]if (!best_cachep)[color="#000066"]找不到可以回收的
[color="#b22222"]/* couldn't find anything to reap */
[color="#4169e1"]goto out;[color="#000066"]退出
spin_lock_irq(&best_cachep->spinlock);[color="#000066"]加锁
[color="#000066"]perfect:
[color="#b22222"]/* free only 50% of the free slabs */
best_len = (best_len + 1)/2;[color="#000066"]认为可以释放的只有一半
[color="#4169e1"]for (scan = 0; scan growing)[color="#000066"]如果正在增长,则推出
[color="#4169e1"]break;
p = best_cachep->slabs_free.prev;
[color="#4169e1"]if (p == &best_cachep->slabs_free)[color="#000066"]如果指向了头,则退出
[color="#4169e1"]break;
slabp = list_entry(p,slab_t,list);
[color="#a020f0"]#if DEBUG [color="#000066"]条件编译
[color="#4169e1"]if (slabp->inuse) [color="#000066"]如果正在使用,则报错
BUG();
[color="#a020f0"]#endif
list_del(&slabp->list);[color="#000066"]删除链
STATS_INC_REAPED(best_cachep);[color="#000066"]回收计数
[color="#b22222"]/* Safe to drop the lock. The slab is no longer linked to the
* cache.
*/[color="#000066"]由于slab已经不在链中,所以可以解锁
spin_unlock_irq(&best_cachep->spinlock);[color="#000066"]解锁
kmem_slab_destroy(best_cachep, slabp);[color="#000066"]删除这个slab,将内存还给系统
spin_lock_irq(&best_cachep->spinlock);[color="#000066"]加锁
}
spin_unlock_irq(&best_cachep->spinlock);[color="#000066"]解锁
ret = scan * (1 gfporder);[color="#000066"]返回释放的个数
[color="#000066"]out:
up(&cache_chain_sem);[color="#000066"]禁止对缓存链操作
[color="#4169e1"]return ret;
}
[color="#a020f0"]#ifdef CONFIG_PROC_FS [color="#000066"]下面是对/proc/slabinfo支持的操作。
[color="#4169e1"]static void *s_start(struct seq_file *m, loff_t *pos)
{
loff_t n = *pos;
[color="#4169e1"]struct list_head *p;
down(&cache_chain_sem);
[color="#4169e1"]if (!n)
[color="#4169e1"]return (void *)1;
p = &cache_cache.next;
[color="#4169e1"]while (--n) {
p = p->next;
[color="#4169e1"]if (p == &cache_cache.next)
[color="#4169e1"]return NULL;
}
[color="#4169e1"]return list_entry(p, kmem_cache_t, next);
}
[color="#4169e1"]static void *s_next(struct seq_file *m, void *p, loff_t *pos)
{
kmem_cache_t *cachep = p;
++*pos;
[color="#4169e1"]if (p == (void *)1)
[color="#4169e1"]return &cache_cache;
cachep = list_entry(cachep->next.next, kmem_cache_t, next);
[color="#4169e1"]return cachep == &cache_cache ? NULL : cachep;
}
[color="#4169e1"]static void s_stop(struct seq_file *m, void *p)
{
up(&cache_chain_sem);
}
[color="#4169e1"]static int s_show(struct seq_file *m, void *p)
{
kmem_cache_t *cachep = p;
[color="#4169e1"]struct list_head *q;
slab_t *slabp;
unsigned long active_objs;
unsigned long num_objs;
unsigned long active_slabs = 0;
unsigned long num_slabs;
const char *name;
[color="#4169e1"]if (p == (void*)1) {
[color="#b22222"]/*
* Output format version, so at least we can change it
* without _too_ many complaints.
*/
seq_puts(m, [color="#666666"]"slabinfo - version: 1.1"
[color="#a020f0"]#if STATS
[color="#666666"]" (statistics)"
[color="#a020f0"]#endif
[color="#a020f0"]#ifdef CONFIG_SMP
[color="#666666"]" (SMP)"
[color="#a020f0"]#endif
[color="#666666"]"\n");
[color="#4169e1"]return 0;
}
spin_lock_irq(&cachep->spinlock);
active_objs = 0;
num_slabs = 0;
list_for_each(q,&cachep->slabs_full) {
slabp = list_entry(q, slab_t, list);
[color="#4169e1"]if (slabp->inuse != cachep->num)
BUG();
active_objs += cachep->num;
active_slabs++;
}
list_for_each(q,&cachep->slabs_partial) {
slabp = list_entry(q, slab_t, list);
[color="#4169e1"]if (slabp->inuse == cachep->num || !slabp->inuse)
BUG();
active_objs += slabp->inuse;
active_slabs++;
}
list_for_each(q,&cachep->slabs_free) {
slabp = list_entry(q, slab_t, list);
[color="#4169e1"]if (slabp->inuse)
BUG();
num_slabs++;
}
num_slabs+=active_slabs;
num_objs = num_slabs*cachep->num;
name = cachep->name;
{
char tmp;
mm_segment_t old_fs;
old_fs = get_fs();
set_fs(KERNEL_DS);
[color="#4169e1"]if (__get_user(tmp, name))
name = [color="#666666"]"broken";
set_fs(old_fs);
}
seq_printf(m, [color="#666666"]"%-17s %6lu %6lu %6u %4lu %4lu %4u",
name, active_objs, num_objs, cachep->objsize,
active_slabs, num_slabs, (1gfporder));
[color="#a020f0"]#if STATS
{
unsigned long errors = cachep->errors;
unsigned long high = cachep->high_mark;
unsigned long grown = cachep->grown;
unsigned long reaped = cachep->reaped;
unsigned long allocs = cachep->num_allocations;
seq_printf(m, [color="#666666"]" : %6lu %7lu %5lu %4lu %4lu",
high, allocs, grown, reaped, errors);
}
[color="#a020f0"]#endif
[color="#a020f0"]#ifdef CONFIG_SMP
{
cpucache_t *cc = cc_data(cachep);
unsigned int batchcount = cachep->batchcount;
unsigned int limit;
[color="#4169e1"]if (cc)
limit = cc->limit;
[color="#4169e1"]else
limit = 0;
seq_printf(m, [color="#666666"]" : %4u %4u",
limit, batchcount);
}
[color="#a020f0"]#endif
[color="#a020f0"]#if STATS && defined(CONFIG_SMP)
{
unsigned long allochit = atomic_read(&cachep->allochit);
unsigned long allocmiss = atomic_read(&cachep->allocmiss);
unsigned long freehit = atomic_read(&cachep->freehit);
unsigned long freemiss = atomic_read(&cachep->freemiss);
seq_printf(m, [color="#666666"]" : %6lu %6lu %6lu %6lu",
allochit, allocmiss, freehit, freemiss);
}
[color="#a020f0"]#endif
spin_unlock_irq(&cachep->spinlock);
seq_putc(m, '\n');
[color="#4169e1"]return 0;
}
[color="#b22222"]/**
* slabinfo_op - iterator that generates /proc/slabinfo
*
* Output layout:
* cache-name
* num-active-objs
* total-objs
* object size
* num-active-slabs
* total-slabs
* num-pages-per-slab
* + further values on SMP and with statistics enabled
*/
[color="#4169e1"]struct seq_operations slabinfo_op = {
[color="#000066"] start: s_start,
[color="#000066"] next: s_next,
[color="#000066"] stop: s_stop,
[color="#000066"] show: s_show
};
[color="#228b22"]#define MAX_SLABINFO_WRITE 128
[color="#b22222"]/**
* slabinfo_write - SMP tuning for the slab allocator
* @file: unused
* @buffer: user buffer
* @count: data len
* @data: unused
*/
[color="#4169e1"]ssize_t slabinfo_write(struct file *file, const char *buffer,
size_t count, loff_t *ppos)
{
[color="#a020f0"]#ifdef CONFIG_SMP
char kbuf[MAX_SLABINFO_WRITE+1], *tmp;
int limit, batchcount, res;
[color="#4169e1"]struct list_head *p;
[color="#4169e1"]if (count > MAX_SLABINFO_WRITE)
[color="#4169e1"]return -EINVAL;
[color="#4169e1"]if (copy_from_user(&kbuf, buffer, count))
[color="#4169e1"]return -EFAULT;
kbuf[MAX_SLABINFO_WRITE] = '\0';
tmp = strchr(kbuf, ' ');
[color="#4169e1"]if (!tmp)
[color="#4169e1"]return -EINVAL;
*tmp = '\0';
tmp++;
limit = simple_strtol(tmp, &tmp, 10);
[color="#4169e1"]while (*tmp == ' ')
tmp++;
batchcount = simple_strtol(tmp, &tmp, 10);
[color="#b22222"]/* Find the cache in the chain of caches. */
down(&cache_chain_sem);
res = -EINVAL;
list_for_each(p,&cache_chain) {
kmem_cache_t *cachep = list_entry(p, kmem_cache_t, next);
[color="#4169e1"]if (!strcmp(cachep->name, kbuf)) {
res = kmem_tune_cpucache(cachep, limit, batchcount);
[color="#4169e1"]break;
}
}
up(&cache_chain_sem);
[color="#4169e1"]if (res >= 0)
res = count;
[color="#4169e1"]return res;
[color="#a020f0"]#else
[color="#4169e1"]return -EINVAL;
[color="#a020f0"]#endif
}
[color="#a020f0"]#endif
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/79779/showart_1657804.html |
|