Whamcloud - gitweb
LU-15210 tests: fix sanity-lnet to handle duplicate IP
[fs/lustre-release.git] / lustre / tests / ll_sparseness_write.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  */
26 /*
27  * This file is part of Lustre, http://www.lustre.org/
28  */
29
30 #ifndef _GNU_SOURCE
31 #define _GNU_SOURCE
32 #endif
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <unistd.h>
36 #include <string.h>
37 #include <errno.h>
38 #include <sys/types.h>
39 #include <sys/wait.h>
40 #include <sys/stat.h>
41 #include <fcntl.h>
42
43 #define BUFSIZE (1024 * 1024)
44
45 /*
46  * Function: pwrite character '+' to <filename> at <offset> (man pwrite)
47  * Return:   0 success
48  *           1 failure
49  */
50 int main(int argc, char**argv)
51 {
52         int p_size;
53         unsigned int offset;
54         char *filename;
55         int fd;
56         char buf[] = "+++";
57         char *end;
58
59         if (argc != 3) {
60                 fprintf(stderr, "Usage: %s <filename> <offset>(KB)\n", argv[0]);
61                 exit(1);
62         }
63
64         filename = argv[1];
65         offset = strtoul(argv[2], &end, 10);
66         if (*end) {
67                 fprintf(stderr, "<offset> parameter should be integer\n");
68                 exit(1);
69         }
70
71         fd = open(filename, O_CREAT|O_RDWR, 0644);
72         if (fd == -1) {
73                 fprintf(stderr, "Opening %s fails (%s)\n",
74                         filename, strerror(errno));
75                 return 1;
76         }
77
78         /* write the character '+' at offset */
79         p_size = pwrite(fd, buf, 1, offset);
80         if (p_size != 1) {
81                 fprintf(stderr, "pwrite %s fails (%s)\n",
82                         filename, strerror(errno));
83                 close(fd);
84                 return 1;
85         }
86         close(fd);
87         return 0;
88 }