以下C代码展示了我在Linux 2.6.30.5-43.fc11.x86_64上看到的一个问题:
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main() {
char buf[1024];
void *base;
int fd;
size_t pagesz = sysconf(_SC_PAGE_SIZE);
fd = open("<some file, at least 4*pagesz in length>", O_RDONLY);
if (fd < 0) {
perror("open");
return 1;
}
base = mmap(0, 4*pagesz, PROT_READ, MAP_SHARED, fd, 0);
if (base < 0) {
perror("mmap");
close(fd);
return 1;
}
memcpy(buf, (char*)base + 2*pagesz, 1024);
if (remap_file_pages(base, pagesz, 0, 2, 0) < 0) {
perror("remap_file_pages");
munmap(base, 4*pagesz);
close(fd);
return 1;
}
printf("%d
", memcmp(buf, base, 1024));
munmap(base, 4*pagesz);
close(fd);
return 0;
}
这总是失败,remap_file_pages()返回-1,errno设置为EINVAL。查看内核源代码,我可以看到remap_file_pages()中所有可能失败的条件,但是似乎都不适用于我的示例。发生了什么?