免费注册 查看新帖 |

Chinaunix

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

关于group_info的疑问(用于描述进程组) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-03-22 10:52 |只看该作者 |倒序浏览
#define NGROUPS_SMALL                32
#define NGROUPS_PER_BLOCK        ((int)(PAGE_SIZE / sizeof(gid_t)))
struct group_info {
        int ngroups;
        atomic_t usage;
        gid_t small_block[NGROUPS_SMALL];
        int nblocks;
        gid_t *blocks[0];
};

/*
* get_group_info() must be called with the owning task locked (via task_lock())
* when task != current.  The reason being that the vast majority of callers are
* looking at current->group_info, which can not be changed except by the
* current task.  Changing current->group_info requires the task lock, too.
*/
#define get_group_info(group_info) do { \
        atomic_inc(&(group_info)->usage); \
} while (0)

#define put_group_info(group_info) do { \
        if (atomic_dec_and_test(&(group_info)->usage)) \
                groups_free(group_info); \
} while (0)


请问大虾
struct group_info
的用法,其中定义的字段如
ngroups,            //进程组数目,
usage,
small_block,
blocks,
何意,能否解释一下.

> > On Mon, Sep 29, 2003 at 03:43:43PM -0700, Tim Hockin wrote:
> > > My version uses a struct group_info which has an array of pages. The groups
>
> I'm definitely happier about this one.
>
> Not that I'm any more thrilled about users using thousands of groups. But
> this looks a bit saner.

OK, then. Here's a brushed up version against 2.6.0-test6. Linus, if you
like this, I can get it into a public BK for you. If not, please indicate
the issues.

Summary: Get rid of the NGROUPS hard limit.

This patch removes all fixed-size arrays which depend on NGROUPS, and
replaces them with struct group_info, which is refcounted, and holds an
array of pages in which to store groups. groups_alloc() and groups_free()
are used to allocate and free struct group_info, and set_group_info is used
to actually put a group_info into a task. Groups are sorted and b-searched
for efficiency. Because groups are stored in a 2-D array, the GRP_AT()
macro was added to allow simple 1-D style indexing.


不过还是不太明白,希望解释一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP