Linux 内核 内存管理memblock 分配器 ③ ( memblock_region 内存块区域 | memblock_region 结构体成员分析 | memblock 分配器标志位 )
Posted 韩曙亮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 内核 内存管理memblock 分配器 ③ ( memblock_region 内存块区域 | memblock_region 结构体成员分析 | memblock 分配器标志位 )相关的知识,希望对你有一定的参考价值。
文章目录
一、memblock_region 内存块区域
memblock 分配器 中 , 内存块区域 使用 struct memblock_region
结构体进行描述 ,
该结构体定义在 Linux 内核源码的 linux-4.12\\include\\linux\\memblock.h#31 位置
/* Definition of memblock flags. */
enum
MEMBLOCK_NONE = 0x0, /* No special request */
MEMBLOCK_HOTPLUG = 0x1, /* hotpluggable region */
MEMBLOCK_MIRROR = 0x2, /* mirrored region */
MEMBLOCK_NOMAP = 0x4, /* don't add to kernel direct mapping */
;
struct memblock_region
phys_addr_t base;
phys_addr_t size;
unsigned long flags;
#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
int nid;
#endif
;
源码路径 : linux-4.12\\include\\linux\\memblock.h#31
二、memblock_region 结构体成员分析
1、base 成员
base
成员 表示 " 内存块区域 " 的起始地址 ;
phys_addr_t base;
2、size 成员
size
成员 表示 " 内存块区域 " 的大小 ;
phys_addr_t size;
3、flags 成员
flags
成员 表示 " 内存块区域 " 的标志位 ;
unsigned long flags;
可设置的标志位如下 :
/* Definition of memblock flags. */
enum
MEMBLOCK_NONE = 0x0, /* No special request */
MEMBLOCK_HOTPLUG = 0x1, /* hotpluggable region */
MEMBLOCK_MIRROR = 0x2, /* mirrored region */
MEMBLOCK_NOMAP = 0x4, /* don't add to kernel direct mapping */
;
4、nid 成员
nid
成员 表示 " 内存块区域 " 的节点编号 ;
#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
int nid;
#endif
三、memblock 分配器标志枚举
memblock 分配器标志是一个枚举类型 ,
该 枚举 定义在 Linux 内核源码的 linux-4.12\\include\\linux\\memblock.h#23 位置 ;
/* Definition of memblock flags. */
enum
MEMBLOCK_NONE = 0x0, /* No special request */
MEMBLOCK_HOTPLUG = 0x1, /* hotpluggable region */
MEMBLOCK_MIRROR = 0x2, /* mirrored region */
MEMBLOCK_NOMAP = 0x4, /* don't add to kernel direct mapping */
;
1、MEMBLOCK_NONE
MEMBLOCK_NONE
表示 " 没有特殊要求的区域 " ;
MEMBLOCK_NONE = 0x0, /* No special request */
2、MEMBLOCK_HOTPLUG
MEMBLOCK_HOTPLUG
表示 " 支持热插拔区域 " , 在运行过程中 , 物理内存可以 " 热插拔 " ;
MEMBLOCK_HOTPLUG = 0x1, /* hotpluggable region */
3、MEMBLOCK_MIRROR
MEMBLOCK_MIRROR
表示 " 镜像区域 " ;
Linux 内核将 内存中的数据 , 进行了复制备份 , 分别存放在 " 主内存 " 和 " 镜像内存 " 中 ;
MEMBLOCK_MIRROR = 0x2, /* mirrored region */
4、MEMBLOCK_NOMAP
MEMBLOCK_NONE
表示 " 线性映射区域 " , 该区域不添加到内核映射区域 ;
MEMBLOCK_NOMAP = 0x4, /* don't add to kernel direct mapping */
以上是关于Linux 内核 内存管理memblock 分配器 ③ ( memblock_region 内存块区域 | memblock_region 结构体成员分析 | memblock 分配器标志位 )的主要内容,如果未能解决你的问题,请参考以下文章
Linux 内核 内存管理memblock 分配器 ② ( memblock_type 内存块类型 | memblock_type 结构体成员分析 )
Linux 内核 内存管理memblock 分配器编程接口 ⑤ ( memblock_free 函数 | memblock_remove_range 函数 )
Linux 内核 内存管理memblock 分配器 ③ ( memblock_region 内存块区域 | memblock_region 结构体成员分析 | memblock 分配器标志位 )
Linux 内核 内存管理memblock 分配器编程接口 ① ( memblock 分配器编程接口简介 | memblock_add 函数原型分析 | memblock_add 函数源码 )
Linux 内核 内存管理memblock 分配器编程接口 ③ ( memblock_remove 函数 | memblock_remove_range 函数 )
Linux 内核 内存管理memblock 分配器编程接口 ④ ( memblock_alloc 函数 | memblock_alloc_base 函数 )