4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2014, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
35 #include <sys/types.h>
45 #include <lustre/lustreapi.h>
47 struct option longopts[] = {
48 { .name = "lookup", .has_arg = no_argument, .val = 'l' },
49 { .name = "random", .has_arg = no_argument, .val = 'r' },
50 { .name = "stat", .has_arg = no_argument, .val = 's' },
53 char *shortopts = "hlr:s0123456789";
55 static int usage(char *prog, FILE *out)
58 "Usage: %s [-r rand_seed] {-s|-l} filenamebase total_files iterations\n"
60 "-s : regular stat() calls\n"
61 "-l : lookup ioctl only\n", prog);
66 #define LONG_MAX (1 << ((8 * sizeof(long)) - 1))
69 int main(int argc, char ** argv)
71 long i, count, iter = LONG_MAX, mode = 0, offset;
72 long int start, length = LONG_MAX, last;
73 char parent[4096], *t;
74 char *prog = argv[0], *base;
78 while ((rc = getopt_long(argc, argv, shortopts, longopts, NULL)) != -1) {
82 seed = strtoul(optarg, &e, 0);
84 fprintf(stderr, "bad -r option %s\n", optarg);
102 if (length == LONG_MAX)
105 length = length * 10 + (rc - '0');
114 if (optind + 2 + (length == LONG_MAX) != argc) {
115 fprintf(stderr, "missing filenamebase, total_files, or iterations\n");
120 if (strlen(base) > 4080) {
121 fprintf(stderr, "filenamebase too long\n");
126 int f = open("/dev/urandom", O_RDONLY);
128 if (f < 0 || read(f, &seed, sizeof(seed)) < sizeof(seed))
134 printf("using seed %u\n", seed);
137 count = strtoul(argv[optind + 1], NULL, 0);
138 if (length == LONG_MAX) {
139 iter = strtoul(argv[optind + 2], NULL, 0);
140 printf("running for %lu iterations\n", iter);
142 printf("running for %lu seconds\n", length);
144 start = last = time(0);
146 t = strrchr(base, '/');
151 strncpy(parent, base, t - base);
152 offset = t - base + 1;
156 fd = open(parent, O_RDONLY);
158 printf("open(%s) error: %s\n", parent,
164 for (i = 0; i < iter && time(0) - start < length; i++) {
168 tmp = random() % count;
169 sprintf(filename, "%s%d", base, tmp);
174 rc = stat(filename, &buf);
176 printf("stat(%s) error: %s\n", filename,
180 } else if (mode == 'l') {
181 char *name = filename;
186 rc = llapi_file_lookup(fd, name);
188 printf("llapi_file_lookup for (%s) error: %s\n",
189 filename, strerror(errno));
193 if ((i % 10000) == 0) {
194 printf(" - stat %lu (time %ld ; total %ld ; last %ld)\n",
195 i, time(0), time(0) - start, time(0) - last);
203 printf("total: %lu stats in %ld seconds: %f stats/second\n", i,
204 time(0) - start, ((float)i / (time(0) - start)));