Whamcloud - gitweb
LU-8726 osd-ldiskfs: bypass read for benchmarking
[fs/lustre-release.git] / lustre / tests / unlinkmany.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  * Lustre is a trademark of Sun Microsystems, Inc.
29  */
30
31 #include <stdio.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <time.h>
35 #include <errno.h>
36 #include <string.h>
37 #include <fcntl.h>
38 #include <unistd.h>
39 #include <stdlib.h>
40
41 void usage(char *prog)
42 {
43         printf("usage: %s filenamefmt count\n", prog);
44         printf("       %s filenamefmt start count\n", prog);
45 }
46
47 int main(int argc, char ** argv)
48 {
49         int i, rc = 0, do_rmdir = 0;
50         char format[4096], *fmt;
51         char filename[4096];
52         long start, last;
53         long begin = 0, count;
54
55         if (argc < 3 || argc > 5) {
56                 usage(argv[0]);
57                 return 1;
58         }
59
60         if (strcmp(argv[1], "-d") == 0) {
61                 do_rmdir = 1;
62                 argv++;
63                 argc--;
64         }
65
66         if (strlen(argv[1]) > 4080) {
67                 printf("name too long\n");
68                 return 1;
69         }
70
71         start = last = time(0);
72
73         if (argc == 3) {
74                 count = strtol(argv[2], NULL, 0);
75                 if (count < 1) {
76                         printf("count must be at least one\n");
77                         return 1;
78                 }
79         } else {
80                 begin = strtol(argv[2], NULL, 0);
81                 count = strtol(argv[3], NULL, 0);
82         }
83
84         if (strchr(argv[1], '%')) {
85                 fmt = argv[1];
86         } else {
87                 sprintf(format, "%s%%d", argv[1]);
88                 fmt = format;
89         }
90         for (i = 0; i < count; i++, begin++) {
91                 sprintf(filename, fmt, begin);
92                 if (do_rmdir)
93                         rc = rmdir(filename);
94                 else
95                         rc = unlink(filename);
96                 if (rc) {
97                         printf("%s(%s) error: %s\n",
98                                do_rmdir ? "rmdir" : "unlink",
99                                filename, strerror(errno));
100                         rc = errno;
101                         break;
102                 }
103                 if ((i % 10000) == 0) {
104                         printf(" - unlinked %d (time %ld ; total %ld ; last "
105                                "%ld)\n", i, time(0), time(0) - start,
106                                time(0) - last);
107                         last = time(0);
108                 }
109         }
110         printf("total: %d unlinks in %ld seconds: %f unlinks/second\n", i,
111                time(0) - start, ((float)i / (time(0) - start)));
112
113         return rc;
114 }