使用 O_DIRECT 跳过缓冲区高速缓存

//使用 O_DIRECT 跳过缓冲区高速缓存
//#define _GNU_SOURCE /*Obtion O_DIRECT definition from <fcntl.h>*/
#include <fcntl.h>
#include <malloc.h>
#include "tlpi_hdr.h"

int
main(int argc,char *argv[])
{
    int fd;
    ssize_t numRead;
    size_t  length,alignment;
    off_t offset;
    void *buf;

    if (argc < 3 || strcmp(argv[1],"--help") == 0)
        usageErr("%s file length [offset [alignment]]\n",argv[0]);
    length = getLong(argv[2],GN_ANY_BASE,"length");
    offset = (argc > 3) ? getLong(argv[3],GN_ANY_BASE,"offset") : 0;
    alignment = (argc > 4) ? getLong(argv[4],GN_ANY_BASE,"alignment") : 4096;

    fd = open(argv[0],O_RDONLY | O_DIRECT);
    if (fd == -1)
        errExit("open");

    /*memalign() allocates a block of memory aligned on an address that
     is a multiple of ites first argument.The following expression
     ensures the 'buf' is aligned on a non-power-of-two multiole of
     'alignment' .We do this to ensure that if, for example, we ask
     fo a 256-byte aligned buffer, the we don't accidentally get
     a buffer that is also aligned on a 512-byte boundary.

     the '(char *)' cast is needed to allow pointer arithmetic (which
     is not possible on the 'void *' returned by memalign()).*/

    buf = (char *) memalign(alignment * 2,length + alignment) + alignment;
    if (buf == NULL)
        errExit("memalign");

    if (lseek(fd,offset,SEEK_SET) == -1)
        errExit("lseek");

    numRead = read(fd,buf,length);
    if (numRead == -1)
        errExit("read");
    printf("Read %ld bytes\n",(long) numRead);

    exit(EXIT_SUCCESS);
}
/*
 程序使用示例:
[root@localhost linux-test]# gl++ test.c
[root@localhost linux-test]#
[root@localhost linux-test]# ./a.out /test/x 512    //Read 512 bytes at offset 0
Read 512 bytes
[root@localhost linux-test]# ./a.out /test/x 256    //Length is not a multiple of 512
ERROR [EINVAL Invalid argument] read
[root@localhost linux-test]# ./a.out /test/x 512 1  //offset is not a multiple of 512
ERROR [EINVAL Invalid argument] read
[root@localhost linux-test]# ./a.out /test/x 4096 8192 512
Read 4096 bytes
[root@localhost linux-test]# ./a.out /test/x 4096 512 256   //alignment is not a multiple of 512
ERROR [EINVAL Invalid argument] read
[root@localhost linux-test]#
 */

Guess you like

Origin blog.csdn.net/liao__ran/article/details/109256196