当指针位数为32位时,virtual space 的大小就是 2^32,只有当指针位数是64位时,virtual space 才会增大。
通常virtual space 的划分方式为 3:1, 依靠 PAGE_OFFSET 常数控制,影响着内核空间和用户空间的上下文切换效率。 像路由器这种设备就希望虚拟空间全部都归kernel,不给user。
昨天建立了数据结构,描述node的pgdat,描述zone的zone,还有nodelist 等初始化
今天是特定于体系结构的设置 architecture-specific ,以IA32,AMD64为例子
PHYSICAL_START , PHYSICAL_ALIGN
the kernel should always be loaded into a contiguous memory range, IA-32 kernels use s0x100000 as the start address, this corresponds to the start of the first megabyte in RAM memory, named _text.
Each time the kernel is compiled, a file named System.map is generated and stored in the source base directory. Besides the address of all other variables, procedures, and functions defined in the kernel, this file also includes the values of the constants ablout _text…
For AMD64 systems, the kernel starts 2MiB after the fisrt page frame, and physical memory is mapped into the virtual address space from 0xffffffff80000000 onward.
These are not the same regions as in the NUMA concept but are areas occupied by ACPI functions
https://zhuanlan.zhihu.com/p/88202063
1.获取当前可用memory
2. parse_early_param 计算highmem, fixmap,
3. bootmem 初始化
4. pageinit
5. bootmem allocator
6. 划分 pageinit新,page table,线性映射,fixmap;清空所有boot期间的mem包括TLB,因为这个TLB是硬件建立的
7. zone 完全实例化, 冷热页的初始化,为watermark准备, buddy
pageinit
896M for system directly map
128M NOT directly :vmalloc, persitent, fixmap
highmemory -> max_low_phn 这里没透,就先按赵是通过find 函数秋出来的。
fixmap 固定映射的内存,TLB高速缓存
the advantage of fixmap addresses is that at compilation time, the address acts like a constant whose physical address is assigned when the kernel is booted.
pagetable_init
–>kernel_physical_mapping
–> fixmap and persitent map
load cr2(swapper_pg_dir)PGD
__flush_all_tlb
kmap_init
->> 得到kmap_pte, kmem_vstart用来映射highmem
内核的zimage 还是保存到 实际物理内存的。
完善pg_data_t 的冷热页元素。
找到所有的活动区域,去除掉孔洞的那些。
开始buddy。