摘要:
内存管理:页框管理和内存区管理每个页框用一个数据结构来描述(page)这个数据结构包含一下一些内容:struct page{unsigned long flags;atomic_t _count;atomic_t _mapcount;unsigned long private;struct adress_space* mapping;unsigned long index;struct list_head lru;}._count页的引用计数,如果为-1则表示页面空闲,page_count()返回该页使用者个数(_count+1);.flags描述页面状态的标志,具体位的含义见(深入linux 阅读全文
posted @ 2013-03-07 22:54
积跬步集小流
阅读(86)
评论(0)
推荐(0)