summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/direct_io/test_short_dio_read.c
blob: 50248555740040360fd380f697111827413ed3a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>

int main()
{
        char buf[409600];
        ssize_t r;
	int err;
	int fd = open("shortfile", O_WRONLY|O_CREAT, 0644);

	if (fd < 0) {
		err = errno;
		printf("error: open() failed with: %d (%s)\n", err, strerror(err));
		exit(err);
	}

	printf("writing first 3 bytes of 10k file\n");
        r = write(fd, "foo", 3);
	if (r == -1) {
		err = errno;
		printf("error: write() failed with: %d (%s)\n", err, strerror(err));
		close(fd);
		exit(err);
	}
        r = ftruncate(fd, 10000);
	if (r == -1) {
		err = errno;
		printf("error: ftruncate() failed with: %d (%s)\n", err, strerror(err));
		close(fd);
		exit(err);
	}
	
        fsync(fd);
        close(fd);

	printf("reading O_DIRECT\n");
        fd = open("shortfile", O_RDONLY|O_DIRECT);
	if (fd < 0) {
		err = errno;
		printf("error: open() failed with: %d (%s)\n", err, strerror(err));
		exit(err);
	}

        r = read(fd, buf, sizeof(buf));
        close(fd);

        printf("got %d\n", (int)r);
	if (r != 10000)
		return 1;
        return 0;
}