免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1849 | 回复: 2
打印 上一主题 下一主题

[内存管理] 分配slab对象的kmem_cache_alloc函数 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-08-25 17:21 |只看该作者 |倒序浏览
  1. void * kmem_cache_alloc(kmem_cache_t *cachep, int flags)
  2. {
  3. unsigned long save_flags;
  4. void *objp;
  5. struct array_cache *ac;
  6. local_irq_save(save_flags);
  7. ac = cache_p->array[smp_processor_id()];
  8. if (ac->avail) {
  9. ac->touched = 1;
  10. objp = ((void **)(ac+1))[--ac->avail];
  11. } else
  12. objp = cache_alloc_refill(cachep, flags);
  13. local_irq_restore(save_flags);
  14. return objp;
  15. }
复制代码
以上代码用于分配slab对象,我对代码objp = ((void **)(ac+1))[--ac->avail];很不理解,请问其中ac+1与--ac->avail分别是什么意思?

论坛徽章:
1
双鱼座
日期:2013-08-28 13:47:26
2 [报告]
发表于 2013-08-26 07:41 |只看该作者
The function tries first to retrieve a free object from the local cache. If there are free objects, the avail field contains the index in the local cache of the entry that points to the last freed object. Because the local cache array is stored right after the ac descriptor, ((void**)(ac+1))[--ac->avail] gets the address of that free object and decreases the value of ac->avail.

论坛徽章:
0
3 [报告]
发表于 2013-08-26 13:10 |只看该作者
复习一下C语言的指针
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP