blob: fe890df026e733c64025e432910a93194a79d6b8 [file] [log] [blame]
Jens Axboe214e1ec2007-03-15 10:48:13 +01001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <ctype.h>
5#include <string.h>
6#include <getopt.h>
7#include <assert.h>
Jens Axboe921c7662008-03-26 09:17:55 +01008#include <libgen.h>
Jens Axboe5921e802008-05-30 15:02:38 +02009#include <fcntl.h>
10#include <sys/types.h>
11#include <sys/stat.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +010012
13#include "fio.h"
14#include "parse.h"
Jens Axboeeef32352008-06-02 13:31:26 +020015#include "lib/fls.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010016
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010017#define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var)
Jens Axboe214e1ec2007-03-15 10:48:13 +010018
19/*
20 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
21 */
22static char *get_opt_postfix(const char *str)
23{
24 char *p = strstr(str, ":");
25
26 if (!p)
27 return NULL;
28
29 p++;
30 strip_blank_front(&p);
31 strip_blank_end(p);
32 return strdup(p);
33}
34
Jens Axboe564ca972007-12-14 12:21:19 +010035static int bs_cmp(const void *p1, const void *p2)
36{
37 const struct bssplit *bsp1 = p1;
38 const struct bssplit *bsp2 = p2;
39
40 return bsp1->perc < bsp2->perc;
41}
42
43static int str_bssplit_cb(void *data, const char *input)
44{
45 struct thread_data *td = data;
46 char *fname, *str, *p;
47 unsigned int i, perc, perc_missing;
48 unsigned int max_bs, min_bs;
49 long long val;
50
51 p = str = strdup(input);
52
53 strip_blank_front(&str);
54 strip_blank_end(str);
55
56 td->o.bssplit_nr = 4;
57 td->o.bssplit = malloc(4 * sizeof(struct bssplit));
58
59 i = 0;
60 max_bs = 0;
61 min_bs = -1;
62 while ((fname = strsep(&str, ":")) != NULL) {
63 char *perc_str;
64
65 if (!strlen(fname))
66 break;
67
68 /*
69 * grow struct buffer, if needed
70 */
71 if (i == td->o.bssplit_nr) {
72 td->o.bssplit_nr <<= 1;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010073 td->o.bssplit = realloc(td->o.bssplit,
74 td->o.bssplit_nr
75 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010076 }
77
78 perc_str = strstr(fname, "/");
79 if (perc_str) {
80 *perc_str = '\0';
81 perc_str++;
82 perc = atoi(perc_str);
83 if (perc > 100)
84 perc = 100;
85 else if (!perc)
86 perc = -1;
87 } else
88 perc = -1;
89
90 if (str_to_decimal(fname, &val, 1)) {
91 log_err("fio: bssplit conversion failed\n");
92 free(td->o.bssplit);
93 return 1;
94 }
95
96 if (val > max_bs)
97 max_bs = val;
98 if (val < min_bs)
99 min_bs = val;
100
101 td->o.bssplit[i].bs = val;
102 td->o.bssplit[i].perc = perc;
103 i++;
104 }
105
106 td->o.bssplit_nr = i;
107
108 /*
109 * Now check if the percentages add up, and how much is missing
110 */
111 perc = perc_missing = 0;
112 for (i = 0; i < td->o.bssplit_nr; i++) {
113 struct bssplit *bsp = &td->o.bssplit[i];
114
115 if (bsp->perc == (unsigned char) -1)
116 perc_missing++;
117 else
118 perc += bsp->perc;
119 }
120
121 if (perc > 100) {
122 log_err("fio: bssplit percentages add to more than 100%%\n");
123 free(td->o.bssplit);
124 return 1;
125 }
126 /*
127 * If values didn't have a percentage set, divide the remains between
128 * them.
129 */
130 if (perc_missing) {
131 for (i = 0; i < td->o.bssplit_nr; i++) {
132 struct bssplit *bsp = &td->o.bssplit[i];
133
134 if (bsp->perc == (unsigned char) -1)
135 bsp->perc = (100 - perc) / perc_missing;
136 }
137 }
138
139 td->o.min_bs[DDIR_READ] = td->o.min_bs[DDIR_WRITE] = min_bs;
140 td->o.max_bs[DDIR_READ] = td->o.max_bs[DDIR_WRITE] = max_bs;
141
142 /*
143 * now sort based on percentages, for ease of lookup
144 */
145 qsort(td->o.bssplit, td->o.bssplit_nr, sizeof(struct bssplit), bs_cmp);
146
147 free(p);
148 return 0;
149}
150
Jens Axboe211097b2007-03-22 18:56:45 +0100151static int str_rw_cb(void *data, const char *str)
152{
153 struct thread_data *td = data;
154 char *nr = get_opt_postfix(str);
155
Jens Axboefafdba32007-03-26 10:09:12 +0200156 td->o.ddir_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100157 if (nr) {
Jens Axboe211097b2007-03-22 18:56:45 +0100158 td->o.ddir_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100159 free(nr);
160 }
Jens Axboe211097b2007-03-22 18:56:45 +0100161
Jens Axboe211097b2007-03-22 18:56:45 +0100162 return 0;
163}
164
Jens Axboe214e1ec2007-03-15 10:48:13 +0100165static int str_mem_cb(void *data, const char *mem)
166{
167 struct thread_data *td = data;
168
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100169 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100170 td->mmapfile = get_opt_postfix(mem);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100171 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100172 log_err("fio: mmaphuge:/path/to/file\n");
173 return 1;
174 }
175 }
176
177 return 0;
178}
179
180static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
181{
182 mlock_size = *val;
183 return 0;
184}
185
Jens Axboecb499fc2008-05-28 10:33:32 +0200186static int str_rwmix_read_cb(void *data, unsigned int *val)
187{
188 struct thread_data *td = data;
189
190 td->o.rwmix[DDIR_READ] = *val;
191 td->o.rwmix[DDIR_WRITE] = 100 - *val;
192 return 0;
193}
194
195static int str_rwmix_write_cb(void *data, unsigned int *val)
196{
197 struct thread_data *td = data;
198
199 td->o.rwmix[DDIR_WRITE] = *val;
200 td->o.rwmix[DDIR_READ] = 100 - *val;
201 return 0;
202}
203
Jens Axboe214e1ec2007-03-15 10:48:13 +0100204#ifdef FIO_HAVE_IOPRIO
205static int str_prioclass_cb(void *data, unsigned int *val)
206{
207 struct thread_data *td = data;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200208 unsigned short mask;
209
210 /*
211 * mask off old class bits, str_prio_cb() may have set a default class
212 */
213 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
214 td->ioprio &= mask;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100215
216 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
Jens Axboeac684782007-11-08 08:29:07 +0100217 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100218 return 0;
219}
220
221static int str_prio_cb(void *data, unsigned int *val)
222{
223 struct thread_data *td = data;
224
225 td->ioprio |= *val;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200226
227 /*
228 * If no class is set, assume BE
229 */
230 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
231 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
232
Jens Axboeac684782007-11-08 08:29:07 +0100233 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100234 return 0;
235}
236#endif
237
238static int str_exitall_cb(void)
239{
240 exitall_on_terminate = 1;
241 return 0;
242}
243
Jens Axboe214e1ec2007-03-15 10:48:13 +0100244#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboe214e1ec2007-03-15 10:48:13 +0100245static int str_cpumask_cb(void *data, unsigned int *val)
246{
247 struct thread_data *td = data;
Jens Axboed2e268b2007-06-15 10:33:49 +0200248 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100249 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100250 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100251
Jens Axboed2ce18b2008-12-12 20:51:40 +0100252 ret = fio_cpuset_init(&td->o.cpumask);
253 if (ret < 0) {
254 log_err("fio: cpuset_init failed\n");
255 td_verror(td, ret, "fio_cpuset_init");
256 return 1;
257 }
258
Jens Axboeb03daaf2008-12-08 20:31:43 +0100259 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
Jens Axboed2e268b2007-06-15 10:33:49 +0200260
Jens Axboe62a72732008-12-08 11:37:01 +0100261 for (i = 0; i < sizeof(int) * 8; i++) {
262 if ((1 << i) & *val) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100263 if (i > max_cpu) {
264 log_err("fio: CPU %d too large (max=%ld)\n", i,
265 max_cpu);
266 return 1;
267 }
Jens Axboe62a72732008-12-08 11:37:01 +0100268 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100269 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100270 }
271 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200272
Jens Axboe375b2692007-05-22 09:13:02 +0200273 td->o.cpumask_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100274 return 0;
275}
276
Jens Axboed2e268b2007-06-15 10:33:49 +0200277static int str_cpus_allowed_cb(void *data, const char *input)
278{
279 struct thread_data *td = data;
280 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100281 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100282 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200283
Jens Axboed2ce18b2008-12-12 20:51:40 +0100284 ret = fio_cpuset_init(&td->o.cpumask);
285 if (ret < 0) {
286 log_err("fio: cpuset_init failed\n");
287 td_verror(td, ret, "fio_cpuset_init");
288 return 1;
289 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200290
291 p = str = strdup(input);
292
293 strip_blank_front(&str);
294 strip_blank_end(str);
295
Jens Axboeb03daaf2008-12-08 20:31:43 +0100296 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
297
Jens Axboed2e268b2007-06-15 10:33:49 +0200298 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100299 char *str2, *cpu2;
300 int icpu, icpu2;
301
Jens Axboed2e268b2007-06-15 10:33:49 +0200302 if (!strlen(cpu))
303 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100304
305 str2 = cpu;
306 icpu2 = -1;
307 while ((cpu2 = strsep(&str2, "-")) != NULL) {
308 if (!strlen(cpu2))
309 break;
310
311 icpu2 = atoi(cpu2);
312 }
313
314 icpu = atoi(cpu);
315 if (icpu2 == -1)
316 icpu2 = icpu;
317 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100318 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100319 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100320 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100321 ret = 1;
322 break;
323 }
Jens Axboeb03daaf2008-12-08 20:31:43 +0100324 if (icpu > max_cpu) {
325 log_err("fio: CPU %d too large (max=%ld)\n",
326 icpu, max_cpu);
327 ret = 1;
328 break;
329 }
330
Jens Axboe62a72732008-12-08 11:37:01 +0100331 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100332 fio_cpu_set(&td->o.cpumask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100333 icpu++;
334 }
Jens Axboe19608d62008-12-08 15:03:12 +0100335 if (ret)
336 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200337 }
338
339 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100340 if (!ret)
341 td->o.cpumask_set = 1;
342 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200343}
344#endif
345
Jens Axboe214e1ec2007-03-15 10:48:13 +0100346static int str_fst_cb(void *data, const char *str)
347{
348 struct thread_data *td = data;
349 char *nr = get_opt_postfix(str);
350
351 td->file_service_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100352 if (nr) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100353 td->file_service_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100354 free(nr);
355 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100356
357 return 0;
358}
359
Jens Axboe921c7662008-03-26 09:17:55 +0100360static int check_dir(struct thread_data *td, char *fname)
361{
362 char file[PATH_MAX], *dir;
Jens Axboebc838912008-04-07 09:00:54 +0200363 int elen = 0;
Jens Axboe921c7662008-03-26 09:17:55 +0100364
Jens Axboebc838912008-04-07 09:00:54 +0200365 if (td->o.directory) {
366 strcpy(file, td->o.directory);
Jens Axboefcef0b32008-05-26 14:53:24 +0200367 strcat(file, "/");
Jens Axboebc838912008-04-07 09:00:54 +0200368 elen = strlen(file);
369 }
370
Jens Axboefcef0b32008-05-26 14:53:24 +0200371 sprintf(file + elen, "%s", fname);
Jens Axboe921c7662008-03-26 09:17:55 +0100372 dir = dirname(file);
373
Jens Axboefcef0b32008-05-26 14:53:24 +0200374#if 0
375 {
376 struct stat sb;
377 /*
378 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
379 * yet, so we can't do this check right here...
380 */
Jens Axboe921c7662008-03-26 09:17:55 +0100381 if (lstat(dir, &sb) < 0) {
382 int ret = errno;
383
384 log_err("fio: %s is not a directory\n", dir);
385 td_verror(td, ret, "lstat");
386 return 1;
387 }
388
389 if (!S_ISDIR(sb.st_mode)) {
390 log_err("fio: %s is not a directory\n", dir);
391 return 1;
392 }
Jens Axboefcef0b32008-05-26 14:53:24 +0200393 }
394#endif
Jens Axboe921c7662008-03-26 09:17:55 +0100395
396 return 0;
397}
398
Jens Axboe214e1ec2007-03-15 10:48:13 +0100399static int str_filename_cb(void *data, const char *input)
400{
401 struct thread_data *td = data;
402 char *fname, *str, *p;
403
404 p = str = strdup(input);
405
406 strip_blank_front(&str);
407 strip_blank_end(str);
408
409 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100410 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100411
412 while ((fname = strsep(&str, ":")) != NULL) {
413 if (!strlen(fname))
414 break;
Jens Axboe921c7662008-03-26 09:17:55 +0100415 if (check_dir(td, fname)) {
416 free(p);
417 return 1;
418 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100419 add_file(td, fname);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100420 td->o.nr_files++;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100421 }
422
423 free(p);
424 return 0;
425}
426
427static int str_directory_cb(void *data, const char fio_unused *str)
428{
429 struct thread_data *td = data;
430 struct stat sb;
431
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100432 if (lstat(td->o.directory, &sb) < 0) {
Jens Axboe921c7662008-03-26 09:17:55 +0100433 int ret = errno;
434
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100435 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe921c7662008-03-26 09:17:55 +0100436 td_verror(td, ret, "lstat");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100437 return 1;
438 }
439 if (!S_ISDIR(sb.st_mode)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100440 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100441 return 1;
442 }
443
444 return 0;
445}
446
447static int str_opendir_cb(void *data, const char fio_unused *str)
448{
449 struct thread_data *td = data;
450
451 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100452 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100453
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100454 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100455}
456
Jens Axboea59e1702007-07-30 08:53:27 +0200457static int str_verify_offset_cb(void *data, unsigned int *off)
Shawn Lewis546a9142007-07-28 21:11:37 +0200458{
459 struct thread_data *td = data;
Jens Axboea59e1702007-07-30 08:53:27 +0200460
Shawn Lewis546a9142007-07-28 21:11:37 +0200461 if (*off && *off < sizeof(struct verify_header)) {
Jens Axboea59e1702007-07-30 08:53:27 +0200462 log_err("fio: verify_offset too small\n");
Shawn Lewis546a9142007-07-28 21:11:37 +0200463 return 1;
464 }
Jens Axboea59e1702007-07-30 08:53:27 +0200465
466 td->o.verify_offset = *off;
Shawn Lewis546a9142007-07-28 21:11:37 +0200467 return 0;
468}
469
Shawn Lewise28218f2008-01-16 11:01:33 +0100470static int str_verify_pattern_cb(void *data, unsigned int *off)
Jens Axboe90059d62007-07-30 09:33:12 +0200471{
472 struct thread_data *td = data;
Shawn Lewise28218f2008-01-16 11:01:33 +0100473 unsigned int msb;
Jens Axboe90059d62007-07-30 09:33:12 +0200474
Jens Axboe3c48c2c2008-06-02 12:22:30 +0200475 msb = __fls(*off);
Jens Axboe90059d62007-07-30 09:33:12 +0200476 if (msb <= 8)
477 td->o.verify_pattern_bytes = 1;
478 else if (msb <= 16)
479 td->o.verify_pattern_bytes = 2;
480 else if (msb <= 24)
481 td->o.verify_pattern_bytes = 3;
482 else
483 td->o.verify_pattern_bytes = 4;
484
Shawn Lewise28218f2008-01-16 11:01:33 +0100485 td->o.verify_pattern = *off;
Jens Axboe90059d62007-07-30 09:33:12 +0200486 return 0;
487}
Jens Axboe214e1ec2007-03-15 10:48:13 +0100488
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100489static int str_lockfile_cb(void *data, const char *str)
490{
491 struct thread_data *td = data;
492 char *nr = get_opt_postfix(str);
493
494 td->o.lockfile_batch = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100495 if (nr) {
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100496 td->o.lockfile_batch = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100497 free(nr);
498 }
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100499
500 return 0;
501}
502
Jens Axboee3cedca2008-11-19 19:57:52 +0100503static int str_write_bw_log_cb(void *data, const char *str)
504{
505 struct thread_data *td = data;
506
507 if (str)
508 td->o.bw_log_file = strdup(str);
509
510 td->o.write_bw_log = 1;
511 return 0;
512}
513
514static int str_write_lat_log_cb(void *data, const char *str)
515{
516 struct thread_data *td = data;
517
518 if (str)
519 td->o.lat_log_file = strdup(str);
520
521 td->o.write_lat_log = 1;
522 return 0;
523}
524
Jens Axboe993bf482008-11-14 13:04:53 +0100525static int str_gtod_reduce_cb(void *data, int *il)
526{
527 struct thread_data *td = data;
528 int val = *il;
529
530 td->o.disable_clat = !!val;
531 td->o.disable_slat = !!val;
532 td->o.disable_bw = !!val;
533 if (val)
534 td->tv_cache_mask = 63;
535
536 return 0;
537}
538
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100539static int str_gtod_cpu_cb(void *data, int *il)
540{
541 struct thread_data *td = data;
542 int val = *il;
543
544 td->o.gtod_cpu = val;
545 td->o.gtod_offload = 1;
546 return 0;
547}
548
Jens Axboe214e1ec2007-03-15 10:48:13 +0100549#define __stringify_1(x) #x
550#define __stringify(x) __stringify_1(x)
551
552/*
553 * Map of job/command line options
554 */
555static struct fio_option options[] = {
556 {
557 .name = "description",
558 .type = FIO_OPT_STR_STORE,
559 .off1 = td_var_offset(description),
560 .help = "Text job description",
561 },
562 {
563 .name = "name",
564 .type = FIO_OPT_STR_STORE,
565 .off1 = td_var_offset(name),
566 .help = "Name of this job",
567 },
568 {
569 .name = "directory",
570 .type = FIO_OPT_STR_STORE,
571 .off1 = td_var_offset(directory),
572 .cb = str_directory_cb,
573 .help = "Directory to store files in",
574 },
575 {
576 .name = "filename",
577 .type = FIO_OPT_STR_STORE,
578 .off1 = td_var_offset(filename),
579 .cb = str_filename_cb,
Jens Axboe3b8b7132008-06-10 19:46:23 +0200580 .prio = 1, /* must come before "directory" */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100581 .help = "File(s) to use for the workload",
582 },
583 {
Jens Axboe29c13492008-03-01 19:25:20 +0100584 .name = "lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100585 .type = FIO_OPT_STR,
586 .cb = str_lockfile_cb,
587 .off1 = td_var_offset(file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +0100588 .help = "Lock file when doing IO to it",
589 .parent = "filename",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100590 .def = "none",
591 .posval = {
592 { .ival = "none",
593 .oval = FILE_LOCK_NONE,
594 .help = "No file locking",
595 },
596 { .ival = "exclusive",
597 .oval = FILE_LOCK_EXCLUSIVE,
598 .help = "Exclusive file lock",
599 },
600 {
601 .ival = "readwrite",
602 .oval = FILE_LOCK_READWRITE,
603 .help = "Read vs write lock",
604 },
605 },
Jens Axboe29c13492008-03-01 19:25:20 +0100606 },
607 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100608 .name = "opendir",
609 .type = FIO_OPT_STR_STORE,
610 .off1 = td_var_offset(opendir),
611 .cb = str_opendir_cb,
612 .help = "Recursively add files from this directory and down",
613 },
614 {
615 .name = "rw",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100616 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100617 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +0100618 .cb = str_rw_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100619 .off1 = td_var_offset(td_ddir),
620 .help = "IO direction",
621 .def = "read",
622 .posval = {
623 { .ival = "read",
624 .oval = TD_DDIR_READ,
625 .help = "Sequential read",
626 },
627 { .ival = "write",
628 .oval = TD_DDIR_WRITE,
629 .help = "Sequential write",
630 },
631 { .ival = "randread",
632 .oval = TD_DDIR_RANDREAD,
633 .help = "Random read",
634 },
635 { .ival = "randwrite",
636 .oval = TD_DDIR_RANDWRITE,
637 .help = "Random write",
638 },
639 { .ival = "rw",
640 .oval = TD_DDIR_RW,
641 .help = "Sequential read and write mix",
642 },
643 { .ival = "randrw",
644 .oval = TD_DDIR_RANDRW,
645 .help = "Random read and write mix"
646 },
647 },
648 },
649 {
650 .name = "ioengine",
651 .type = FIO_OPT_STR_STORE,
652 .off1 = td_var_offset(ioengine),
653 .help = "IO engine to use",
654 .def = "sync",
655 .posval = {
656 { .ival = "sync",
657 .help = "Use read/write",
658 },
gurudas paia31041e2007-10-23 15:12:30 +0200659 { .ival = "psync",
660 .help = "Use pread/pwrite",
661 },
Jens Axboe1d2af022008-02-04 10:59:07 +0100662 { .ival = "vsync",
663 .help = "Use readv/writev",
664 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100665#ifdef FIO_HAVE_LIBAIO
666 { .ival = "libaio",
667 .help = "Linux native asynchronous IO",
668 },
669#endif
670#ifdef FIO_HAVE_POSIXAIO
671 { .ival = "posixaio",
672 .help = "POSIX asynchronous IO",
673 },
674#endif
Jens Axboe417f0062008-06-02 11:59:30 +0200675#ifdef FIO_HAVE_SOLARISAIO
676 { .ival = "solarisaio",
677 .help = "Solaris native asynchronous IO",
678 },
679#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100680 { .ival = "mmap",
681 .help = "Memory mapped IO",
682 },
683#ifdef FIO_HAVE_SPLICE
684 { .ival = "splice",
685 .help = "splice/vmsplice based IO",
686 },
Jens Axboe9cce02e2007-06-22 15:42:21 +0200687 { .ival = "netsplice",
688 .help = "splice/vmsplice to/from the network",
689 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100690#endif
691#ifdef FIO_HAVE_SGIO
692 { .ival = "sg",
693 .help = "SCSI generic v3 IO",
694 },
695#endif
696 { .ival = "null",
697 .help = "Testing engine (no data transfer)",
698 },
699 { .ival = "net",
700 .help = "Network IO",
701 },
702#ifdef FIO_HAVE_SYSLET
703 { .ival = "syslet-rw",
704 .help = "syslet enabled async pread/pwrite IO",
705 },
706#endif
707 { .ival = "cpuio",
708 .help = "CPU cycler burner engine",
709 },
Jens Axboeb8c82a42007-03-21 08:48:26 +0100710#ifdef FIO_HAVE_GUASI
711 { .ival = "guasi",
712 .help = "GUASI IO engine",
713 },
714#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100715 { .ival = "external",
716 .help = "Load external engine (append name)",
717 },
718 },
719 },
720 {
721 .name = "iodepth",
722 .type = FIO_OPT_INT,
723 .off1 = td_var_offset(iodepth),
724 .help = "Amount of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +0100725 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100726 .def = "1",
727 },
728 {
729 .name = "iodepth_batch",
Jens Axboe49504212008-06-05 09:03:30 +0200730 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100731 .type = FIO_OPT_INT,
732 .off1 = td_var_offset(iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +0100733 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +0200734 .parent = "iodepth",
Jens Axboea2e6f8a2008-01-18 10:28:11 +0100735 .minval = 1,
736 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100737 },
738 {
Jens Axboe49504212008-06-05 09:03:30 +0200739 .name = "iodepth_batch_complete",
740 .type = FIO_OPT_INT,
741 .off1 = td_var_offset(iodepth_batch_complete),
Jens Axboed65db442009-01-16 19:15:33 +0100742 .help = "Number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +0200743 .parent = "iodepth",
744 .minval = 0,
745 .def = "1",
746 },
747 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100748 .name = "iodepth_low",
749 .type = FIO_OPT_INT,
750 .off1 = td_var_offset(iodepth_low),
751 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +0200752 .parent = "iodepth",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100753 },
754 {
755 .name = "size",
756 .type = FIO_OPT_STR_VAL,
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100757 .off1 = td_var_offset(size),
Jens Axboec3edbdb2007-07-20 14:25:31 +0200758 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100759 .help = "Total size of device or files",
760 },
761 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100762 .name = "fill_device",
763 .type = FIO_OPT_BOOL,
764 .off1 = td_var_offset(fill_device),
765 .help = "Write until an ENOSPC error occurs",
766 .def = "0",
767 },
768 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100769 .name = "filesize",
770 .type = FIO_OPT_STR_VAL,
771 .off1 = td_var_offset(file_size_low),
772 .off2 = td_var_offset(file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +0200773 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100774 .help = "Size of individual files",
775 },
776 {
Jens Axboe67a10002007-07-31 23:12:16 +0200777 .name = "offset",
778 .alias = "fileoffset",
779 .type = FIO_OPT_STR_VAL,
780 .off1 = td_var_offset(start_offset),
781 .help = "Start IO from this offset",
782 .def = "0",
783 },
784 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100785 .name = "bs",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100786 .alias = "blocksize",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100787 .type = FIO_OPT_STR_VAL_INT,
788 .off1 = td_var_offset(bs[DDIR_READ]),
789 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +0200790 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100791 .help = "Block size unit",
792 .def = "4k",
Jens Axboe67a10002007-07-31 23:12:16 +0200793 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100794 },
795 {
796 .name = "bsrange",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100797 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100798 .type = FIO_OPT_RANGE,
799 .off1 = td_var_offset(min_bs[DDIR_READ]),
800 .off2 = td_var_offset(max_bs[DDIR_READ]),
801 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
802 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +0200803 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100804 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +0200805 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100806 },
807 {
Jens Axboe564ca972007-12-14 12:21:19 +0100808 .name = "bssplit",
809 .type = FIO_OPT_STR,
810 .cb = str_bssplit_cb,
811 .help = "Set a specific mix of block sizes",
812 .parent = "rw",
813 },
814 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100815 .name = "bs_unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100816 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100817 .type = FIO_OPT_STR_SET,
818 .off1 = td_var_offset(bs_unaligned),
819 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +0200820 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100821 },
822 {
823 .name = "randrepeat",
824 .type = FIO_OPT_BOOL,
825 .off1 = td_var_offset(rand_repeatable),
826 .help = "Use repeatable random IO pattern",
827 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +0200828 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100829 },
830 {
831 .name = "norandommap",
832 .type = FIO_OPT_STR_SET,
833 .off1 = td_var_offset(norandommap),
834 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +0200835 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100836 },
837 {
Jens Axboe2b386d22008-03-26 10:32:57 +0100838 .name = "softrandommap",
839 .type = FIO_OPT_BOOL,
840 .off1 = td_var_offset(softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +0200841 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +0100842 .parent = "norandommap",
843 .def = "0",
844 },
845 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100846 .name = "nrfiles",
847 .type = FIO_OPT_INT,
848 .off1 = td_var_offset(nr_files),
849 .help = "Split job workload between this number of files",
850 .def = "1",
851 },
852 {
853 .name = "openfiles",
854 .type = FIO_OPT_INT,
855 .off1 = td_var_offset(open_files),
856 .help = "Number of files to keep open at the same time",
857 },
858 {
859 .name = "file_service_type",
860 .type = FIO_OPT_STR,
861 .cb = str_fst_cb,
862 .off1 = td_var_offset(file_service_type),
863 .help = "How to select which file to service next",
864 .def = "roundrobin",
865 .posval = {
866 { .ival = "random",
867 .oval = FIO_FSERVICE_RANDOM,
868 .help = "Choose a file at random",
869 },
870 { .ival = "roundrobin",
871 .oval = FIO_FSERVICE_RR,
872 .help = "Round robin select files",
873 },
874 },
Jens Axboe67a10002007-07-31 23:12:16 +0200875 .parent = "nrfiles",
876 },
877 {
878 .name = "fadvise_hint",
879 .type = FIO_OPT_BOOL,
880 .off1 = td_var_offset(fadvise_hint),
881 .help = "Use fadvise() to advise the kernel on IO pattern",
882 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100883 },
884 {
885 .name = "fsync",
886 .type = FIO_OPT_INT,
887 .off1 = td_var_offset(fsync_blocks),
888 .help = "Issue fsync for writes every given number of blocks",
889 .def = "0",
890 },
891 {
892 .name = "direct",
893 .type = FIO_OPT_BOOL,
894 .off1 = td_var_offset(odirect),
895 .help = "Use O_DIRECT IO (negates buffered)",
896 .def = "0",
897 },
898 {
899 .name = "buffered",
900 .type = FIO_OPT_BOOL,
901 .off1 = td_var_offset(odirect),
902 .neg = 1,
903 .help = "Use buffered IO (negates direct)",
904 .def = "1",
905 },
906 {
907 .name = "overwrite",
908 .type = FIO_OPT_BOOL,
909 .off1 = td_var_offset(overwrite),
910 .help = "When writing, set whether to overwrite current data",
911 .def = "0",
912 },
913 {
914 .name = "loops",
915 .type = FIO_OPT_INT,
916 .off1 = td_var_offset(loops),
917 .help = "Number of times to run the job",
918 .def = "1",
919 },
920 {
921 .name = "numjobs",
922 .type = FIO_OPT_INT,
923 .off1 = td_var_offset(numjobs),
924 .help = "Duplicate this job this many times",
925 .def = "1",
926 },
927 {
928 .name = "startdelay",
929 .type = FIO_OPT_INT,
930 .off1 = td_var_offset(start_delay),
931 .help = "Only start job when this period has passed",
932 .def = "0",
933 },
934 {
935 .name = "runtime",
936 .alias = "timeout",
937 .type = FIO_OPT_STR_VAL_TIME,
938 .off1 = td_var_offset(timeout),
939 .help = "Stop workload when this amount of time has passed",
940 .def = "0",
941 },
942 {
Jens Axboecf4464c2007-04-17 20:14:42 +0200943 .name = "time_based",
944 .type = FIO_OPT_STR_SET,
945 .off1 = td_var_offset(time_based),
946 .help = "Keep running until runtime/timeout is met",
947 },
948 {
Jens Axboe721938a2008-09-10 09:46:16 +0200949 .name = "ramp_time",
950 .type = FIO_OPT_STR_VAL_TIME,
951 .off1 = td_var_offset(ramp_time),
952 .help = "Ramp up time before measuring performance",
953 },
954 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100955 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100956 .alias = "iomem",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100957 .type = FIO_OPT_STR,
958 .cb = str_mem_cb,
959 .off1 = td_var_offset(mem_type),
960 .help = "Backing type for IO buffers",
961 .def = "malloc",
962 .posval = {
963 { .ival = "malloc",
964 .oval = MEM_MALLOC,
965 .help = "Use malloc(3) for IO buffers",
966 },
Jens Axboeb370e462007-03-19 10:51:49 +0100967 { .ival = "shm",
968 .oval = MEM_SHM,
969 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100970 },
971#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +0100972 { .ival = "shmhuge",
973 .oval = MEM_SHMHUGE,
974 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100975 },
976#endif
Jens Axboeb370e462007-03-19 10:51:49 +0100977 { .ival = "mmap",
978 .oval = MEM_MMAP,
979 .help = "Use mmap(2) (file or anon) for IO buffers",
980 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +0100981#ifdef FIO_HAVE_HUGETLB
982 { .ival = "mmaphuge",
983 .oval = MEM_MMAPHUGE,
984 .help = "Like mmap, but use huge pages",
985 },
986#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100987 },
988 },
989 {
990 .name = "verify",
991 .type = FIO_OPT_STR,
992 .off1 = td_var_offset(verify),
993 .help = "Verify data written",
994 .def = "0",
995 .posval = {
996 { .ival = "0",
997 .oval = VERIFY_NONE,
998 .help = "Don't do IO verification",
999 },
Jens Axboefcca4b52007-07-27 15:42:00 +02001000 { .ival = "md5",
1001 .oval = VERIFY_MD5,
1002 .help = "Use md5 checksums for verification",
1003 },
Jens Axboed77a7af2007-07-27 15:35:06 +02001004 { .ival = "crc64",
1005 .oval = VERIFY_CRC64,
1006 .help = "Use crc64 checksums for verification",
1007 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001008 { .ival = "crc32",
1009 .oval = VERIFY_CRC32,
1010 .help = "Use crc32 checksums for verification",
1011 },
Jens Axboeaf497e62008-08-04 15:40:35 +02001012 { .ival = "crc32c-intel",
1013 .oval = VERIFY_CRC32C_INTEL,
1014 .help = "Use hw crc32c checksums for verification",
1015 },
Jens Axboebac39e02008-06-11 20:46:19 +02001016 { .ival = "crc32c",
1017 .oval = VERIFY_CRC32C,
1018 .help = "Use crc32c checksums for verification",
1019 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02001020 { .ival = "crc16",
1021 .oval = VERIFY_CRC16,
1022 .help = "Use crc16 checksums for verification",
1023 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02001024 { .ival = "crc7",
1025 .oval = VERIFY_CRC7,
1026 .help = "Use crc7 checksums for verification",
1027 },
Jens Axboecd14cc12007-07-30 10:59:33 +02001028 { .ival = "sha256",
1029 .oval = VERIFY_SHA256,
1030 .help = "Use sha256 checksums for verification",
1031 },
1032 { .ival = "sha512",
1033 .oval = VERIFY_SHA512,
1034 .help = "Use sha512 checksums for verification",
1035 },
Shawn Lewis7437ee82007-08-02 21:05:58 +02001036 { .ival = "meta",
1037 .oval = VERIFY_META,
1038 .help = "Use io information",
1039 },
Jens Axboe36690c92007-03-26 10:23:34 +02001040 {
1041 .ival = "null",
1042 .oval = VERIFY_NULL,
1043 .help = "Pretend to verify",
1044 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001045 },
1046 },
1047 {
Jens Axboe005c5652007-08-02 22:21:36 +02001048 .name = "do_verify",
Jens Axboe68e1f292007-08-10 10:32:14 +02001049 .type = FIO_OPT_BOOL,
Jens Axboe005c5652007-08-02 22:21:36 +02001050 .off1 = td_var_offset(do_verify),
1051 .help = "Run verification stage after write",
1052 .def = "1",
1053 .parent = "verify",
1054 },
1055 {
Jens Axboe160b9662007-03-27 10:59:49 +02001056 .name = "verifysort",
1057 .type = FIO_OPT_BOOL,
1058 .off1 = td_var_offset(verifysort),
1059 .help = "Sort written verify blocks for read back",
1060 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02001061 .parent = "verify",
Jens Axboe160b9662007-03-27 10:59:49 +02001062 },
1063 {
Jens Axboea59e1702007-07-30 08:53:27 +02001064 .name = "verify_interval",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001065 .type = FIO_OPT_STR_VAL_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001066 .off1 = td_var_offset(verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02001067 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02001068 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02001069 .parent = "verify",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001070 },
1071 {
Jens Axboea59e1702007-07-30 08:53:27 +02001072 .name = "verify_offset",
Shawn Lewis546a9142007-07-28 21:11:37 +02001073 .type = FIO_OPT_STR_VAL_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001074 .help = "Offset verify header location by N bytes",
Shawn Lewis546a9142007-07-28 21:11:37 +02001075 .def = "0",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001076 .cb = str_verify_offset_cb,
Jens Axboeafdf9352007-07-31 16:14:34 +02001077 .parent = "verify",
Shawn Lewis546a9142007-07-28 21:11:37 +02001078 },
1079 {
Shawn Lewise28218f2008-01-16 11:01:33 +01001080 .name = "verify_pattern",
1081 .type = FIO_OPT_INT,
1082 .cb = str_verify_pattern_cb,
1083 .help = "Fill pattern for IO buffers",
1084 .parent = "verify",
1085 },
1086 {
Jens Axboea12a3b42007-08-09 10:20:54 +02001087 .name = "verify_fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02001088 .type = FIO_OPT_BOOL,
Jens Axboea12a3b42007-08-09 10:20:54 +02001089 .off1 = td_var_offset(verify_fatal),
1090 .def = "0",
1091 .help = "Exit on a single verify failure, don't continue",
1092 .parent = "verify",
1093 },
1094 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001095 .name = "write_iolog",
1096 .type = FIO_OPT_STR_STORE,
1097 .off1 = td_var_offset(write_iolog_file),
1098 .help = "Store IO pattern to file",
1099 },
1100 {
1101 .name = "read_iolog",
1102 .type = FIO_OPT_STR_STORE,
1103 .off1 = td_var_offset(read_iolog_file),
1104 .help = "Playback IO pattern from file",
1105 },
1106 {
1107 .name = "exec_prerun",
1108 .type = FIO_OPT_STR_STORE,
1109 .off1 = td_var_offset(exec_prerun),
1110 .help = "Execute this file prior to running job",
1111 },
1112 {
1113 .name = "exec_postrun",
1114 .type = FIO_OPT_STR_STORE,
1115 .off1 = td_var_offset(exec_postrun),
1116 .help = "Execute this file after running job",
1117 },
1118#ifdef FIO_HAVE_IOSCHED_SWITCH
1119 {
1120 .name = "ioscheduler",
1121 .type = FIO_OPT_STR_STORE,
1122 .off1 = td_var_offset(ioscheduler),
1123 .help = "Use this IO scheduler on the backing device",
1124 },
1125#endif
1126 {
1127 .name = "zonesize",
1128 .type = FIO_OPT_STR_VAL,
1129 .off1 = td_var_offset(zone_size),
1130 .help = "Give size of an IO zone",
1131 .def = "0",
1132 },
1133 {
1134 .name = "zoneskip",
1135 .type = FIO_OPT_STR_VAL,
1136 .off1 = td_var_offset(zone_skip),
1137 .help = "Space between IO zones",
1138 .def = "0",
1139 },
1140 {
1141 .name = "lockmem",
1142 .type = FIO_OPT_STR_VAL,
1143 .cb = str_lockmem_cb,
1144 .help = "Lock down this amount of memory",
1145 .def = "0",
1146 },
1147 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001148 .name = "rwmixread",
1149 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001150 .cb = str_rwmix_read_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001151 .maxval = 100,
1152 .help = "Percentage of mixed workload that is reads",
1153 .def = "50",
1154 },
1155 {
1156 .name = "rwmixwrite",
1157 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001158 .cb = str_rwmix_write_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001159 .maxval = 100,
1160 .help = "Percentage of mixed workload that is writes",
1161 .def = "50",
1162 },
1163 {
Jens Axboeafdf9352007-07-31 16:14:34 +02001164 .name = "rwmixcycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02001165 .type = FIO_OPT_DEPRECATED,
Jens Axboeafdf9352007-07-31 16:14:34 +02001166 },
1167 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001168 .name = "nice",
1169 .type = FIO_OPT_INT,
1170 .off1 = td_var_offset(nice),
1171 .help = "Set job CPU nice value",
1172 .minval = -19,
1173 .maxval = 20,
1174 .def = "0",
1175 },
1176#ifdef FIO_HAVE_IOPRIO
1177 {
1178 .name = "prio",
1179 .type = FIO_OPT_INT,
1180 .cb = str_prio_cb,
1181 .help = "Set job IO priority value",
1182 .minval = 0,
1183 .maxval = 7,
1184 },
1185 {
1186 .name = "prioclass",
1187 .type = FIO_OPT_INT,
1188 .cb = str_prioclass_cb,
1189 .help = "Set job IO priority class",
1190 .minval = 0,
1191 .maxval = 3,
1192 },
1193#endif
1194 {
1195 .name = "thinktime",
1196 .type = FIO_OPT_INT,
1197 .off1 = td_var_offset(thinktime),
1198 .help = "Idle time between IO buffers (usec)",
1199 .def = "0",
1200 },
1201 {
1202 .name = "thinktime_spin",
1203 .type = FIO_OPT_INT,
1204 .off1 = td_var_offset(thinktime_spin),
1205 .help = "Start think time by spinning this amount (usec)",
1206 .def = "0",
Jens Axboeafdf9352007-07-31 16:14:34 +02001207 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001208 },
1209 {
1210 .name = "thinktime_blocks",
1211 .type = FIO_OPT_INT,
1212 .off1 = td_var_offset(thinktime_blocks),
1213 .help = "IO buffer period between 'thinktime'",
1214 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02001215 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001216 },
1217 {
1218 .name = "rate",
1219 .type = FIO_OPT_INT,
1220 .off1 = td_var_offset(rate),
1221 .help = "Set bandwidth rate",
1222 },
1223 {
1224 .name = "ratemin",
1225 .type = FIO_OPT_INT,
1226 .off1 = td_var_offset(ratemin),
Jens Axboe4e991c22007-03-15 11:41:11 +01001227 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001228 .parent = "rate",
Jens Axboe4e991c22007-03-15 11:41:11 +01001229 },
1230 {
1231 .name = "rate_iops",
1232 .type = FIO_OPT_INT,
1233 .off1 = td_var_offset(rate_iops),
1234 .help = "Limit IO used to this number of IO operations/sec",
1235 },
1236 {
1237 .name = "rate_iops_min",
1238 .type = FIO_OPT_INT,
1239 .off1 = td_var_offset(rate_iops_min),
1240 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001241 .parent = "rate_iops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001242 },
1243 {
1244 .name = "ratecycle",
1245 .type = FIO_OPT_INT,
1246 .off1 = td_var_offset(ratecycle),
1247 .help = "Window average for rate limits (msec)",
1248 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02001249 .parent = "rate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001250 },
1251 {
1252 .name = "invalidate",
1253 .type = FIO_OPT_BOOL,
1254 .off1 = td_var_offset(invalidate_cache),
1255 .help = "Invalidate buffer/page cache prior to running job",
1256 .def = "1",
1257 },
1258 {
1259 .name = "sync",
1260 .type = FIO_OPT_BOOL,
1261 .off1 = td_var_offset(sync_io),
1262 .help = "Use O_SYNC for buffered writes",
1263 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02001264 .parent = "buffered",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001265 },
1266 {
1267 .name = "bwavgtime",
1268 .type = FIO_OPT_INT,
1269 .off1 = td_var_offset(bw_avg_time),
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001270 .help = "Time window over which to calculate bandwidth"
1271 " (msec)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001272 .def = "500",
1273 },
1274 {
1275 .name = "create_serialize",
1276 .type = FIO_OPT_BOOL,
1277 .off1 = td_var_offset(create_serialize),
1278 .help = "Serialize creating of job files",
1279 .def = "1",
1280 },
1281 {
1282 .name = "create_fsync",
1283 .type = FIO_OPT_BOOL,
1284 .off1 = td_var_offset(create_fsync),
1285 .help = "Fsync file after creation",
1286 .def = "1",
1287 },
1288 {
1289 .name = "cpuload",
1290 .type = FIO_OPT_INT,
1291 .off1 = td_var_offset(cpuload),
1292 .help = "Use this percentage of CPU",
1293 },
1294 {
1295 .name = "cpuchunks",
1296 .type = FIO_OPT_INT,
1297 .off1 = td_var_offset(cpucycle),
1298 .help = "Length of the CPU burn cycles (usecs)",
1299 .def = "50000",
Jens Axboe67a10002007-07-31 23:12:16 +02001300 .parent = "cpuload",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001301 },
1302#ifdef FIO_HAVE_CPU_AFFINITY
1303 {
1304 .name = "cpumask",
1305 .type = FIO_OPT_INT,
1306 .cb = str_cpumask_cb,
1307 .help = "CPU affinity mask",
1308 },
Jens Axboed2e268b2007-06-15 10:33:49 +02001309 {
1310 .name = "cpus_allowed",
1311 .type = FIO_OPT_STR,
1312 .cb = str_cpus_allowed_cb,
1313 .help = "Set CPUs allowed",
1314 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001315#endif
1316 {
1317 .name = "end_fsync",
1318 .type = FIO_OPT_BOOL,
1319 .off1 = td_var_offset(end_fsync),
1320 .help = "Include fsync at the end of job",
1321 .def = "0",
1322 },
1323 {
1324 .name = "fsync_on_close",
1325 .type = FIO_OPT_BOOL,
1326 .off1 = td_var_offset(fsync_on_close),
1327 .help = "fsync files on close",
1328 .def = "0",
1329 },
1330 {
1331 .name = "unlink",
1332 .type = FIO_OPT_BOOL,
1333 .off1 = td_var_offset(unlink),
1334 .help = "Unlink created files after job has completed",
1335 .def = "0",
1336 },
1337 {
1338 .name = "exitall",
1339 .type = FIO_OPT_STR_SET,
1340 .cb = str_exitall_cb,
1341 .help = "Terminate all jobs when one exits",
1342 },
1343 {
1344 .name = "stonewall",
1345 .type = FIO_OPT_STR_SET,
1346 .off1 = td_var_offset(stonewall),
1347 .help = "Insert a hard barrier between this job and previous",
1348 },
1349 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01001350 .name = "new_group",
1351 .type = FIO_OPT_STR_SET,
1352 .off1 = td_var_offset(new_group),
1353 .help = "Mark the start of a new group (for reporting)",
1354 },
1355 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001356 .name = "thread",
1357 .type = FIO_OPT_STR_SET,
1358 .off1 = td_var_offset(use_thread),
1359 .help = "Use threads instead of forks",
1360 },
1361 {
1362 .name = "write_bw_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001363 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001364 .off1 = td_var_offset(write_bw_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001365 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001366 .help = "Write log of bandwidth during run",
1367 },
1368 {
1369 .name = "write_lat_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001370 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001371 .off1 = td_var_offset(write_lat_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001372 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001373 .help = "Write log of latency during run",
1374 },
1375 {
1376 .name = "hugepage-size",
Aaron Carroll357f6182008-02-20 09:14:13 +01001377 .type = FIO_OPT_STR_VAL_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001378 .off1 = td_var_offset(hugepage_size),
1379 .help = "When using hugepages, specify size of each page",
1380 .def = __stringify(FIO_HUGE_PAGE),
1381 },
1382 {
1383 .name = "group_reporting",
1384 .type = FIO_OPT_STR_SET,
1385 .off1 = td_var_offset(group_reporting),
1386 .help = "Do reporting on a per-group basis",
1387 },
1388 {
Jens Axboee9459e52007-04-17 15:46:32 +02001389 .name = "zero_buffers",
1390 .type = FIO_OPT_STR_SET,
1391 .off1 = td_var_offset(zero_buffers),
1392 .help = "Init IO buffers to all zeroes",
1393 },
Jens Axboe5973caf2008-05-21 19:52:35 +02001394 {
1395 .name = "refill_buffers",
1396 .type = FIO_OPT_STR_SET,
1397 .off1 = td_var_offset(refill_buffers),
1398 .help = "Refill IO buffers on every IO submit",
1399 },
Jens Axboe0a839f32007-04-26 09:02:34 +02001400#ifdef FIO_HAVE_DISK_UTIL
1401 {
1402 .name = "disk_util",
1403 .type = FIO_OPT_BOOL,
1404 .off1 = td_var_offset(do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001405 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02001406 .def = "1",
1407 },
1408#endif
Jens Axboee9459e52007-04-17 15:46:32 +02001409 {
Jens Axboe993bf482008-11-14 13:04:53 +01001410 .name = "gtod_reduce",
1411 .type = FIO_OPT_BOOL,
1412 .help = "Greatly reduce number of gettimeofday() calls",
1413 .cb = str_gtod_reduce_cb,
1414 .def = "0",
1415 },
1416 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02001417 .name = "disable_clat",
1418 .type = FIO_OPT_BOOL,
1419 .off1 = td_var_offset(disable_clat),
1420 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001421 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001422 .def = "0",
1423 },
1424 {
1425 .name = "disable_slat",
1426 .type = FIO_OPT_BOOL,
1427 .off1 = td_var_offset(disable_slat),
1428 .help = "Disable submissionn latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001429 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001430 .def = "0",
1431 },
1432 {
1433 .name = "disable_bw_measurement",
1434 .type = FIO_OPT_BOOL,
1435 .off1 = td_var_offset(disable_bw),
1436 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01001437 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001438 .def = "0",
1439 },
1440 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001441 .name = "gtod_cpu",
1442 .type = FIO_OPT_INT,
1443 .cb = str_gtod_cpu_cb,
1444 .help = "Setup dedicated gettimeofday() thread on this CPU",
1445 },
1446 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001447 .name = NULL,
1448 },
1449};
1450
1451void fio_options_dup_and_init(struct option *long_options)
1452{
1453 struct fio_option *o;
1454 unsigned int i;
1455
1456 options_init(options);
1457
1458 i = 0;
1459 while (long_options[i].name)
1460 i++;
1461
1462 o = &options[0];
1463 while (o->name) {
Jens Axboe5921e802008-05-30 15:02:38 +02001464 long_options[i].name = (char *) o->name;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001465 long_options[i].val = FIO_GETOPT_JOB;
1466 if (o->type == FIO_OPT_STR_SET)
1467 long_options[i].has_arg = no_argument;
1468 else
1469 long_options[i].has_arg = required_argument;
1470
1471 i++;
1472 o++;
1473 assert(i < FIO_NR_OPTIONS);
1474 }
1475}
1476
Jens Axboe3b8b7132008-06-10 19:46:23 +02001477int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001478{
Jens Axboe3b8b7132008-06-10 19:46:23 +02001479 int i, ret;
1480
1481 sort_options(opts, options, num_opts);
1482
1483 for (ret = 0, i = 0; i < num_opts; i++)
1484 ret |= parse_option(opts[i], options, td);
1485
1486 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001487}
1488
1489int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
1490{
1491 return parse_cmd_option(opt, val, options, td);
1492}
1493
1494void fio_fill_default_options(struct thread_data *td)
1495{
1496 fill_default_options(td, options);
1497}
1498
1499int fio_show_option_help(const char *opt)
1500{
1501 return show_cmd_help(options, opt);
1502}
Jens Axboed23bb322007-03-23 15:57:56 +01001503
1504static void __options_mem(struct thread_data *td, int alloc)
1505{
1506 struct thread_options *o = &td->o;
1507 struct fio_option *opt;
1508 char **ptr;
1509 int i;
1510
1511 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
1512 if (opt->type != FIO_OPT_STR_STORE)
1513 continue;
1514
1515 ptr = (void *) o + opt->off1;
1516 if (*ptr) {
1517 if (alloc)
1518 *ptr = strdup(*ptr);
1519 else {
1520 free(*ptr);
1521 *ptr = NULL;
1522 }
1523 }
1524 }
1525}
1526
1527/*
1528 * dupe FIO_OPT_STR_STORE options
1529 */
1530void options_mem_dupe(struct thread_data *td)
1531{
1532 __options_mem(td, 1);
1533}
1534
Jens Axboe22d66212007-03-27 20:06:25 +02001535void options_mem_free(struct thread_data fio_unused *td)
Jens Axboed23bb322007-03-23 15:57:56 +01001536{
Jens Axboe22d66212007-03-27 20:06:25 +02001537#if 0
Jens Axboed23bb322007-03-23 15:57:56 +01001538 __options_mem(td, 0);
Jens Axboe22d66212007-03-27 20:06:25 +02001539#endif
Jens Axboed23bb322007-03-23 15:57:56 +01001540}