linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* A question about page caching
@ 2008-03-04 16:57 Matvejchikov Ilya
  0 siblings, 0 replies; only message in thread
From: Matvejchikov Ilya @ 2008-03-04 16:57 UTC (permalink / raw)
  To: linux-kernel

Hi folks,

I have a little question about such thing as a page caching while file
reading. As I know there is mechanism that optimise system performance
when file read occurs repeatedly. But I can't simulate it. The test
program that I wrote doesn't show acceptable results.
Here is it.

--- [main.c] ---
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <asm/msr.h>

#define RSIZE	(4096*1024*128)

int main()
{
    int fd;
    char * data;
    unsigned long long counter0;
    unsigned long long counter1;

    fd = open("junkfile", O_RDONLY);
    if (fd == -1) {
	printf("ERROR: open() = %d\n", fd);
	exit(1);
    }

    data = (char *)malloc(RSIZE);
    if (data == NULL) {
	printf("ERROR: malloc() fails\n");
	exit(1);
    }

    rdtscll(counter0);
    read(fd, (void *)data, RSIZE);
    rdtscll(counter1);

    printf("D = %lu\n", counter1 - counter0);

    fgetc(stdin);

    close(fd);

    return 0;
}
--- [main.c] ---

When I run first copy of program I have such result:
(1) D = 191860948
When I run second copy of program (i.e. when first copy waits on
fgetc()) I have the similar result:
(2) D = 192320613

Where I be wrong?

Thanks!

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-04 16:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-04 16:57 A question about page caching Matvejchikov Ilya

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).