linux kernel linear address

共有1g线性空间,分成4部分:
1.先映射内存的前896m空间,到high_memory结束
2.剩下的用于noncontiguous memory area映射,从VMALLOC_OFFSET到VMALLOC_END,其中VMALLOC_OFFSET距high_memory8mb,每个被映射的noncontiguous memory area中间还要间隔4kb
3.用于映射persistent kernel mapping,从PKMAP_BASE开始
4.最后这部分用于fix-mapped linear address
详见<understand the linux kernel>第3版343页,有图。
2009/02/05 四

你可能感兴趣的:(linux)