使用MMAP读取OS X时的页面错误

时间:2010-09-21 20:46:48

标签: macos memory paging

我正在尝试使用mmap在Mac OS X上对文件系统I / O进行基准测试。

#include <unistd.h>
#include <fcntl.h>
#include <dirent.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <stdio.h>
#include <math.h>

char c;

int main(int argc, char ** argv)
{
        if (argc != 2)
        {
                printf("no files\n");
                exit(1);
        }
        int fd = open(argv[1], O_RDONLY);
        fcntl(fd, F_NOCACHE, 1);
        int offset=0;
        int size=0x100000;
        int pagesize = getpagesize();
        struct stat stats;
        fstat(fd, &stats);
        int filesize = stats.st_size;
        printf("%d byte pages\n", pagesize);
        printf("file %s @ %d bytes\n", argv[1], filesize);
        while(offset < filesize)
        {
                if(offset + size > filesize)
                {
                        int pages = ceil((filesize-offset)/(double)pagesize);
                        size = pages*pagesize;
                }
                printf("mapping offset %x with size %x\n", offset, size);
                void * mem = mmap(0, size, PROT_READ, 0, fd, offset);
                if(mem == -1)
                        return 0;
                offset+=size;
                int i=0;
                for(; i<size; i+=pagesize)
                {
                        c = *((char *)mem+i);
                }

                munmap(mem, size);
        }
        return 0;
}

我的想法是,我将映射文件或其中的一部分,然后通过解除引用来导致页面错误。我正在慢慢失去理智,因为这根本不起作用,我之前在Linux上做过类似的事情。

1 个答案:

答案 0 :(得分:8)

更改此行

void * mem = mmap(0, size, PROT_READ, 0, fd, offset);

void * mem = mmap(0, size, PROT_READ, MAP_PRIVATE, fd, offset);

并且,请勿将mem-1进行比较。请改用:

if(mem == MAP_FAILED) { ... }

它更具可读性和便携性。

一般建议:如果您使用的是与以前不同的UNIX平台,则打开手册页是个不错的主意。对于mmap上的OS X,可以找到here。它说

  

合规应用程序必须指定MAP_PRIVATE或MAP_SHARED。

所以,在第四个上指定0 OS X中的参数 OK。我相信 对于BSD来说,这是正确的。