common/rc: factor out _scratch_xfs_[get|set]_sb_field
[xfstests-dev.git] / src / iopat.c
1 /*
2  * Copyright (c) 2000-2003 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #include <stdlib.h>
20 #include <string.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <sys/ioctl.h>
24 #include <xfs/xfs.h>
25 struct xfs_flock64 f;
26
27 int main(int argc, char **argv)
28 {
29    int fd, i;
30
31    int64_t x[131072];
32
33    for (i = 0; i < 131072; i++) {
34       x[i] = -1;
35    }
36    fd = open(argv[1], O_RDWR | O_CREAT, 0644);
37
38 #ifdef WRITE
39    f.l_whence = 0;
40    f.l_start = 0;
41    f.l_len = 1048576;
42    xfsctl (argv[1], fd, XFS_IOC_RESVSP, &f);
43    for (i = 0; i < 131072; i++) {
44       x[i] = i;
45    }
46    write(fd, &x, 1048576);
47 #endif
48
49 #ifdef READ
50    read(fd, &x, 1048576);
51    for (i = 0; i < 131072; i++) {
52       if (x[i] != i) {
53          printf("error: %d %d %lld\n", i ,8 * i, (long long)x[i]);
54          exit(1);
55       }
56    }
57 #endif
58
59    close(fd);
60    exit(0);
61 }
62