mmap系统调用文档说如果以下情况该函数将失败:
MAP_FIXED was specified and the addr
argument was not page aligned, or part
of the desired address space resides
out of the valid address space for a
user process.
我无法在任何地方找到文档来说明要映射的有效地址. (我有兴趣在OS X和Linux上执行此操作,理想情况下,相同的地址对两者都有效…).
解决方法:
Linux内核为用户空间(几乎)无法访问且无法映射任何内容的部分虚拟地址空间保留.您正在寻找所谓的“userspace / kernelspace split”.
在i386上,arch默认为3G / 1G one – 用户空间低3 GB的虚拟地址空间,内核高1 GB,另外还有2G / 2G和1G / 3G分割:
config PAGE_OFFSET
hex
default 0xB0000000 if VMSPLIT_3G_OPT
default 0x80000000 if VMSPLIT_2G
default 0x78000000 if VMSPLIT_2G_OPT
default 0x40000000 if VMSPLIT_1G
default 0xC0000000
depends on X86_32
在x86_64上,用户空间位于(当前)48位虚拟地址空间的下半部分:
/*
* User space process size. 47bits minus one guard page.
*/
#define TASK_SIZE_MAX ((1UL << 47) - PAGE_SIZE)