免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 6233 | 回复: 26
打印 上一主题 下一主题

关于mmap效率的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-09-04 16:11 |只看该作者 |倒序浏览
写了一个程序,按照APUE上的mmap的例子写的
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>

#ifndef MAP_FILE
#define MAP_FILE 0
#endif

int main(int argc, char* argv[]) {
    int fdin, fdout;
    char *src, *dst;
    struct stat statbuf;

    if( argc != 3 ) {
        printf("usage: test <fromfile> <tofile>\n");
        exit(-1);
    }

    if( (fdin = open(argv[1], O_RDONLY)) < 0 ) {
        printf("cannot open %s for read\n", argv[1]);
        exit(-1);
    }

    if( (fdout = open(argv[2], O_RDWR|O_CREAT|O_TRUNC, S_IRUSR|
                S_IWUSR|S_IRGRP|S_IROTH)) < 0 ) {
        printf("cannot open %s for write\n", argv[2]);
        exit(-1);
    }

    if( fstat(fdin, &statbuf) < 0 ) {
        printf("fstat error\n");
        exit(-1);
    }

    if( lseek(fdout, statbuf.st_size-1, SEEK_SET) == -1 ) {
        printf("lseek error\n");
        exit(-1);
    }

    if(write(fdout, "", 1) != 1) {
        printf("write error\n");
        exit(-1);
    }

    if( (src = mmap(0, statbuf.st_size, PROT_READ, MAP_FILE|MAP_SHARED, fdin,0)) == (caddr_t)-1) {
        printf("map error for input\n");
        exit(-1);
    }
    close(fdin);

    if( (dst = mmap(0, statbuf.st_size, PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED, fdout, 0)) == (caddr_t)-1) {
        printf("map error for output\n");
        exit(-1);
    }
    close(fdout);

    memcpy(dst, src, statbuf.st_size);
    exit(0);
}


测试了一下:
time a.out src.dat dst1.dat
real    0m3.76s
user    0m0.01s
sys     0m0.11s

time cp src.dat dst2.dat
real    0m0.43s
user    0m0.00s
sys     0m0.05s

为什么效率会相差这么大,cp中用了什么别的方法了吗?

论坛徽章:
0
2 [报告]
发表于 2006-09-04 16:28 |只看该作者
我建议你用strace来看cp 做的什么!!

论坛徽章:
0
3 [报告]
发表于 2006-09-04 16:35 |只看该作者
鉴于*nix的文件缓存,
建议你多次运行程序看运行时间。

论坛徽章:
0
4 [报告]
发表于 2006-09-04 16:49 |只看该作者
你程序是什么意思,能否简单说一下?

论坛徽章:
0
5 [报告]
发表于 2006-09-04 16:49 |只看该作者
建议你多次运行程序看运行时间。

time a.out src.dat dst.dat
real    0m3.97s
user    0m0.01s
sys     0m0.12s


time cp src.dat dst.dat
real    0m0.28s
user    0m0.00s
sys     0m0.05s

time cp src.dat dst.dat
real    0m0.05s
user    0m0.01s
sys     0m0.04s


time a.out src.dat dst.dat
real    0m2.66s
user    0m0.01s
sys     0m0.10s


time a.out src.dat dst.dat
real    0m2.60s
user    0m0.02s
sys     0m0.10s

这个是我多次运行的结果,时间确实是少了一些,但是两者的差距还是很大

论坛徽章:
0
6 [报告]
发表于 2006-09-04 16:53 |只看该作者
你程序是什么意思,能否简单说一下?

程序就是从一个源文件中把数据拷贝到一个目的文件中,
其中不用read/write实现,用mmap实现。

主要就是想看看mmap的效率,书上说用mmap可以少一次
buffer的拷贝,效率会高一些,所以就抄了上述的程序试了试。

可是效率比cp差了不是一点,所以想问问cp到底是怎么实现的,
用了什么算法了吗?

论坛徽章:
0
7 [报告]
发表于 2006-09-04 16:55 |只看该作者
看明白了。你用大文件实验看

论坛徽章:
0
8 [报告]
发表于 2006-09-04 17:03 |只看该作者
time ./a.out libx.a a.a

real    0m27.18s
user    0m0.12s
sys     0m0.79s

time cp libx.a a.a

real    0m2.86s
user    0m0.00s
sys     0m0.43s

这个libx.a大小是22M

论坛徽章:
0
9 [报告]
发表于 2006-09-04 17:06 |只看该作者
哦,忘记了,我的系统启动了softdep,这个结果没用。

[ 本帖最后由 assiss 于 2006-9-4 17:07 编辑 ]

论坛徽章:
0
10 [报告]
发表于 2006-09-04 17:09 |只看该作者
补充一句:这个结果是在hp-ux 11i上测的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP