- 论坛徽章:
- 0
|
本帖最后由 zhuqing_739 于 2012-05-24 11:55 编辑
在网上找到了一段程序,是关于slab分配的,程序如下:- #include <linux/module.h>
- #include <linux/init.h>
- #include <linux/kernel.h>
- #include <linux/mm.h>
- #include <linux/errno.h>
- #include <linux/slab.h>
- #include <linux/gfp.h>
-
- struct slab_test{
- int val;
- };
-
- static int n;
- struct kmem_cache *test_cachep = NULL;
- struct slab_test *object1 = NULL, *object2 = NULL;
-
- void slab_ctor(void *cachep){
- printk("slab_ctor is called! object %d has been inited!\n", n);
- n++;
- }
-
-
- static int __init slab_test_init(void){
- printk("slab test module init\n");
- n = 0;
- test_cachep = kmem_cache_create("slab_test_cachep", sizeof(struct slab_test), 0, SLAB_HWCACHE_ALIGN, slab_ctor);
- if(!test_cachep)
- return -ENOMEM;
- object1 = kmem_cache_alloc(test_cachep, GFP_KERNEL);
- if(!object1)
- return -ENOMEM;
- else
- printk("object one has been created!\n");
- object2 = kmem_cache_alloc(test_cachep, GFP_KERNEL);
- if(!object2)
- return -ENOMEM;
- else
- printk("object two has been created!\n");
- return 0;
- }
-
- static void __exit slab_test_exit(void){
- printk("slab test module exit\n");
- kmem_cache_free(test_cachep, object1);
- kmem_cache_free(test_cachep, object2);
- if(test_cachep)
- kmem_cache_destroy(test_cachep);
- }
-
- module_init(slab_test_init);
- module_exit(slab_test_exit);
- MODULE_LICENSE("GPL");
- MODULE_AUTHOR("embeddedlwp@163.com");
复制代码 我编译后加载,出现这个打印信息:
slab test module init
slab_ctor is called! object 0 has been inited!
slab_ctor is called! object 1 has been inited!
......
......
slab_ctor is called! object 501 has been inited!
slab_ctor is called! object 502 has been inited!
slab_ctor is called! object 503 has been inited!
slab_ctor is called! object 504 has been inited!
slab_ctor is called! object 505 has been inited!
slab_ctor is called! object 506 has been inited!
slab_ctor is called! object 507 has been inited!
object one has been created!
object two has been created!
然后我cat /proc/slabinfo 得到:
/mnt/3515 $ cat /proc/slabinfo
slabinfo - version: 2.1
# name <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
slab_test_cachep 2 508 4 508 1 : tunables 120 60 0 : slabdata 1 1 0
我想问一下,这个508什么意思?怎么会出来个508?奇怪。。。。。谢谢 |
|