mm.txt
来自「linux 内核源代码」· 文本 代码 · 共 30 行
TXT
30 行
<previous description obsolete, deleted>Virtual memory map with 4 level page tables:0000000000000000 - 00007fffffffffff (=47 bits) user space, different per mmhole caused by [48:63] sign extensionffff800000000000 - ffff80ffffffffff (=40 bits) guard holeffff810000000000 - ffffc0ffffffffff (=46 bits) direct mapping of all phys. memoryffffc10000000000 - ffffc1ffffffffff (=40 bits) holeffffc20000000000 - ffffe1ffffffffff (=45 bits) vmalloc/ioremap spaceffffe20000000000 - ffffe2ffffffffff (=40 bits) virtual memory map (1TB)... unused hole ...ffffffff80000000 - ffffffff82800000 (=40 MB) kernel text mapping, from phys 0... unused hole ...ffffffff88000000 - fffffffffff00000 (=1919 MB) module mapping spaceThe direct mapping covers all memory in the system up to the highestmemory address (this means in some cases it can also include PCI memoryholes).vmalloc space is lazily synchronized into the different PML4 pages ofthe processes using the page fault handler, with init_level4_pgt asreference.Current X86-64 implementations only support 40 bits of address space,but we support up to 46 bits. This expands into MBZ space in the page tables.-Andi Kleen, Jul 2004
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?