configure: avoid pkg-config usage for http engine
[fio.git] / options.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <unistd.h>
4 #include <ctype.h>
5 #include <string.h>
6 #include <assert.h>
7 #include <sys/stat.h>
8 #include <netinet/in.h>
9
10 #include "fio.h"
11 #include "verify.h"
12 #include "parse.h"
13 #include "lib/pattern.h"
14 #include "options.h"
15 #include "optgroup.h"
16
17 char client_sockaddr_str[INET6_ADDRSTRLEN] = { 0 };
18
19 #define cb_data_to_td(data)     container_of(data, struct thread_data, o)
20
21 static struct pattern_fmt_desc fmt_desc[] = {
22         {
23                 .fmt   = "%o",
24                 .len   = FIELD_SIZE(struct io_u *, offset),
25                 .paste = paste_blockoff
26         }
27 };
28
29 /*
30  * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
31  */
32 static char *get_opt_postfix(const char *str)
33 {
34         char *p = strstr(str, ":");
35
36         if (!p)
37                 return NULL;
38
39         p++;
40         strip_blank_front(&p);
41         strip_blank_end(p);
42         return strdup(p);
43 }
44
45 static int bs_cmp(const void *p1, const void *p2)
46 {
47         const struct bssplit *bsp1 = p1;
48         const struct bssplit *bsp2 = p2;
49
50         return (int) bsp1->perc - (int) bsp2->perc;
51 }
52
53 struct split {
54         unsigned int nr;
55         unsigned long long val1[ZONESPLIT_MAX];
56         unsigned long long val2[ZONESPLIT_MAX];
57 };
58
59 static int split_parse_ddir(struct thread_options *o, struct split *split,
60                             char *str, bool absolute, unsigned int max_splits)
61 {
62         unsigned long long perc;
63         unsigned int i;
64         long long val;
65         char *fname;
66
67         split->nr = 0;
68
69         i = 0;
70         while ((fname = strsep(&str, ":")) != NULL) {
71                 char *perc_str;
72
73                 if (!strlen(fname))
74                         break;
75
76                 perc_str = strstr(fname, "/");
77                 if (perc_str) {
78                         *perc_str = '\0';
79                         perc_str++;
80                         if (absolute) {
81                                 if (str_to_decimal(perc_str, &val, 1, o, 0, 0)) {
82                                         log_err("fio: split conversion failed\n");
83                                         return 1;
84                                 }
85                                 perc = val;
86                         } else {
87                                 perc = atoi(perc_str);
88                                 if (perc > 100)
89                                         perc = 100;
90                                 else if (!perc)
91                                         perc = -1U;
92                         }
93                 } else {
94                         if (absolute)
95                                 perc = 0;
96                         else
97                                 perc = -1U;
98                 }
99
100                 if (str_to_decimal(fname, &val, 1, o, 0, 0)) {
101                         log_err("fio: split conversion failed\n");
102                         return 1;
103                 }
104
105                 split->val1[i] = val;
106                 split->val2[i] = perc;
107                 i++;
108                 if (i == max_splits) {
109                         log_err("fio: hit max of %d split entries\n", i);
110                         break;
111                 }
112         }
113
114         split->nr = i;
115         return 0;
116 }
117
118 static int bssplit_ddir(struct thread_options *o, enum fio_ddir ddir, char *str,
119                         bool data)
120 {
121         unsigned int i, perc, perc_missing;
122         unsigned long long max_bs, min_bs;
123         struct split split;
124
125         memset(&split, 0, sizeof(split));
126
127         if (split_parse_ddir(o, &split, str, data, BSSPLIT_MAX))
128                 return 1;
129         if (!split.nr)
130                 return 0;
131
132         max_bs = 0;
133         min_bs = -1;
134         o->bssplit[ddir] = malloc(split.nr * sizeof(struct bssplit));
135         o->bssplit_nr[ddir] = split.nr;
136         for (i = 0; i < split.nr; i++) {
137                 if (split.val1[i] > max_bs)
138                         max_bs = split.val1[i];
139                 if (split.val1[i] < min_bs)
140                         min_bs = split.val1[i];
141
142                 o->bssplit[ddir][i].bs = split.val1[i];
143                 o->bssplit[ddir][i].perc =split.val2[i];
144         }
145
146         /*
147          * Now check if the percentages add up, and how much is missing
148          */
149         perc = perc_missing = 0;
150         for (i = 0; i < o->bssplit_nr[ddir]; i++) {
151                 struct bssplit *bsp = &o->bssplit[ddir][i];
152
153                 if (bsp->perc == -1U)
154                         perc_missing++;
155                 else
156                         perc += bsp->perc;
157         }
158
159         if (perc > 100 && perc_missing > 1) {
160                 log_err("fio: bssplit percentages add to more than 100%%\n");
161                 free(o->bssplit[ddir]);
162                 o->bssplit[ddir] = NULL;
163                 return 1;
164         }
165
166         /*
167          * If values didn't have a percentage set, divide the remains between
168          * them.
169          */
170         if (perc_missing) {
171                 if (perc_missing == 1 && o->bssplit_nr[ddir] == 1)
172                         perc = 100;
173                 for (i = 0; i < o->bssplit_nr[ddir]; i++) {
174                         struct bssplit *bsp = &o->bssplit[ddir][i];
175
176                         if (bsp->perc == -1U)
177                                 bsp->perc = (100 - perc) / perc_missing;
178                 }
179         }
180
181         o->min_bs[ddir] = min_bs;
182         o->max_bs[ddir] = max_bs;
183
184         /*
185          * now sort based on percentages, for ease of lookup
186          */
187         qsort(o->bssplit[ddir], o->bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
188         return 0;
189 }
190
191 typedef int (split_parse_fn)(struct thread_options *, enum fio_ddir, char *, bool);
192
193 static int str_split_parse(struct thread_data *td, char *str,
194                            split_parse_fn *fn, bool data)
195 {
196         char *odir, *ddir;
197         int ret = 0;
198
199         odir = strchr(str, ',');
200         if (odir) {
201                 ddir = strchr(odir + 1, ',');
202                 if (ddir) {
203                         ret = fn(&td->o, DDIR_TRIM, ddir + 1, data);
204                         if (!ret)
205                                 *ddir = '\0';
206                 } else {
207                         char *op;
208
209                         op = strdup(odir + 1);
210                         ret = fn(&td->o, DDIR_TRIM, op, data);
211
212                         free(op);
213                 }
214                 if (!ret)
215                         ret = fn(&td->o, DDIR_WRITE, odir + 1, data);
216                 if (!ret) {
217                         *odir = '\0';
218                         ret = fn(&td->o, DDIR_READ, str, data);
219                 }
220         } else {
221                 char *op;
222
223                 op = strdup(str);
224                 ret = fn(&td->o, DDIR_WRITE, op, data);
225                 free(op);
226
227                 if (!ret) {
228                         op = strdup(str);
229                         ret = fn(&td->o, DDIR_TRIM, op, data);
230                         free(op);
231                 }
232                 if (!ret)
233                         ret = fn(&td->o, DDIR_READ, str, data);
234         }
235
236         return ret;
237 }
238
239 static int str_bssplit_cb(void *data, const char *input)
240 {
241         struct thread_data *td = cb_data_to_td(data);
242         char *str, *p;
243         int ret = 0;
244
245         p = str = strdup(input);
246
247         strip_blank_front(&str);
248         strip_blank_end(str);
249
250         ret = str_split_parse(td, str, bssplit_ddir, false);
251
252         if (parse_dryrun()) {
253                 int i;
254
255                 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
256                         free(td->o.bssplit[i]);
257                         td->o.bssplit[i] = NULL;
258                         td->o.bssplit_nr[i] = 0;
259                 }
260         }
261
262         free(p);
263         return ret;
264 }
265
266 static int str2error(char *str)
267 {
268         const char *err[] = { "EPERM", "ENOENT", "ESRCH", "EINTR", "EIO",
269                             "ENXIO", "E2BIG", "ENOEXEC", "EBADF",
270                             "ECHILD", "EAGAIN", "ENOMEM", "EACCES",
271                             "EFAULT", "ENOTBLK", "EBUSY", "EEXIST",
272                             "EXDEV", "ENODEV", "ENOTDIR", "EISDIR",
273                             "EINVAL", "ENFILE", "EMFILE", "ENOTTY",
274                             "ETXTBSY","EFBIG", "ENOSPC", "ESPIPE",
275                             "EROFS","EMLINK", "EPIPE", "EDOM", "ERANGE" };
276         int i = 0, num = sizeof(err) / sizeof(char *);
277
278         while (i < num) {
279                 if (!strcmp(err[i], str))
280                         return i + 1;
281                 i++;
282         }
283         return 0;
284 }
285
286 static int ignore_error_type(struct thread_data *td, enum error_type_bit etype,
287                                 char *str)
288 {
289         unsigned int i;
290         int *error;
291         char *fname;
292
293         if (etype >= ERROR_TYPE_CNT) {
294                 log_err("Illegal error type\n");
295                 return 1;
296         }
297
298         td->o.ignore_error_nr[etype] = 4;
299         error = calloc(4, sizeof(int));
300
301         i = 0;
302         while ((fname = strsep(&str, ":")) != NULL) {
303
304                 if (!strlen(fname))
305                         break;
306
307                 /*
308                  * grow struct buffer, if needed
309                  */
310                 if (i == td->o.ignore_error_nr[etype]) {
311                         td->o.ignore_error_nr[etype] <<= 1;
312                         error = realloc(error, td->o.ignore_error_nr[etype]
313                                                   * sizeof(int));
314                 }
315                 if (fname[0] == 'E') {
316                         error[i] = str2error(fname);
317                 } else {
318                         error[i] = atoi(fname);
319                         if (error[i] < 0)
320                                 error[i] = -error[i];
321                 }
322                 if (!error[i]) {
323                         log_err("Unknown error %s, please use number value\n",
324                                   fname);
325                         td->o.ignore_error_nr[etype] = 0;
326                         free(error);
327                         return 1;
328                 }
329                 i++;
330         }
331         if (i) {
332                 td->o.continue_on_error |= 1 << etype;
333                 td->o.ignore_error_nr[etype] = i;
334                 td->o.ignore_error[etype] = error;
335         } else {
336                 td->o.ignore_error_nr[etype] = 0;
337                 free(error);
338         }
339
340         return 0;
341
342 }
343
344 static int str_replay_skip_cb(void *data, const char *input)
345 {
346         struct thread_data *td = cb_data_to_td(data);
347         char *str, *p, *n;
348         int ret = 0;
349
350         if (parse_dryrun())
351                 return 0;
352
353         p = str = strdup(input);
354
355         strip_blank_front(&str);
356         strip_blank_end(str);
357
358         while (p) {
359                 n = strchr(p, ',');
360                 if (n)
361                         *n++ = '\0';
362                 if (!strcmp(p, "read"))
363                         td->o.replay_skip |= 1u << DDIR_READ;
364                 else if (!strcmp(p, "write"))
365                         td->o.replay_skip |= 1u << DDIR_WRITE;
366                 else if (!strcmp(p, "trim"))
367                         td->o.replay_skip |= 1u << DDIR_TRIM;
368                 else if (!strcmp(p, "sync"))
369                         td->o.replay_skip |= 1u << DDIR_SYNC;
370                 else {
371                         log_err("Unknown skip type: %s\n", p);
372                         ret = 1;
373                         break;
374                 }
375                 p = n;
376         }
377         free(str);
378         return ret;
379 }
380
381 static int str_ignore_error_cb(void *data, const char *input)
382 {
383         struct thread_data *td = cb_data_to_td(data);
384         char *str, *p, *n;
385         int ret = 1;
386         enum error_type_bit type = 0;
387
388         if (parse_dryrun())
389                 return 0;
390
391         p = str = strdup(input);
392
393         strip_blank_front(&str);
394         strip_blank_end(str);
395
396         while (p) {
397                 n = strchr(p, ',');
398                 if (n)
399                         *n++ = '\0';
400                 ret = ignore_error_type(td, type, p);
401                 if (ret)
402                         break;
403                 p = n;
404                 type++;
405         }
406         free(str);
407         return ret;
408 }
409
410 static int str_rw_cb(void *data, const char *str)
411 {
412         struct thread_data *td = cb_data_to_td(data);
413         struct thread_options *o = &td->o;
414         char *nr;
415
416         if (parse_dryrun())
417                 return 0;
418
419         o->ddir_seq_nr = 1;
420         o->ddir_seq_add = 0;
421
422         nr = get_opt_postfix(str);
423         if (!nr)
424                 return 0;
425
426         if (td_random(td))
427                 o->ddir_seq_nr = atoi(nr);
428         else {
429                 long long val;
430
431                 if (str_to_decimal(nr, &val, 1, o, 0, 0)) {
432                         log_err("fio: rw postfix parsing failed\n");
433                         free(nr);
434                         return 1;
435                 }
436
437                 o->ddir_seq_add = val;
438         }
439
440         free(nr);
441         return 0;
442 }
443
444 static int str_mem_cb(void *data, const char *mem)
445 {
446         struct thread_data *td = cb_data_to_td(data);
447
448         if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP ||
449             td->o.mem_type == MEM_MMAPSHARED)
450                 td->o.mmapfile = get_opt_postfix(mem);
451
452         return 0;
453 }
454
455 static int fio_clock_source_cb(void *data, const char *str)
456 {
457         struct thread_data *td = cb_data_to_td(data);
458
459         fio_clock_source = td->o.clocksource;
460         fio_clock_source_set = 1;
461         fio_clock_init();
462         return 0;
463 }
464
465 static int str_rwmix_read_cb(void *data, unsigned long long *val)
466 {
467         struct thread_data *td = cb_data_to_td(data);
468
469         td->o.rwmix[DDIR_READ] = *val;
470         td->o.rwmix[DDIR_WRITE] = 100 - *val;
471         return 0;
472 }
473
474 static int str_rwmix_write_cb(void *data, unsigned long long *val)
475 {
476         struct thread_data *td = cb_data_to_td(data);
477
478         td->o.rwmix[DDIR_WRITE] = *val;
479         td->o.rwmix[DDIR_READ] = 100 - *val;
480         return 0;
481 }
482
483 static int str_exitall_cb(void)
484 {
485         exitall_on_terminate = 1;
486         return 0;
487 }
488
489 #ifdef FIO_HAVE_CPU_AFFINITY
490 int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu_index)
491 {
492         unsigned int i, index, cpus_in_mask;
493         const long max_cpu = cpus_online();
494
495         cpus_in_mask = fio_cpu_count(mask);
496         cpu_index = cpu_index % cpus_in_mask;
497
498         index = 0;
499         for (i = 0; i < max_cpu; i++) {
500                 if (!fio_cpu_isset(mask, i))
501                         continue;
502
503                 if (cpu_index != index)
504                         fio_cpu_clear(mask, i);
505
506                 index++;
507         }
508
509         return fio_cpu_count(mask);
510 }
511
512 static int str_cpumask_cb(void *data, unsigned long long *val)
513 {
514         struct thread_data *td = cb_data_to_td(data);
515         unsigned int i;
516         long max_cpu;
517         int ret;
518
519         if (parse_dryrun())
520                 return 0;
521
522         ret = fio_cpuset_init(&td->o.cpumask);
523         if (ret < 0) {
524                 log_err("fio: cpuset_init failed\n");
525                 td_verror(td, ret, "fio_cpuset_init");
526                 return 1;
527         }
528
529         max_cpu = cpus_online();
530
531         for (i = 0; i < sizeof(int) * 8; i++) {
532                 if ((1 << i) & *val) {
533                         if (i >= max_cpu) {
534                                 log_err("fio: CPU %d too large (max=%ld)\n", i,
535                                                                 max_cpu - 1);
536                                 return 1;
537                         }
538                         dprint(FD_PARSE, "set cpu allowed %d\n", i);
539                         fio_cpu_set(&td->o.cpumask, i);
540                 }
541         }
542
543         return 0;
544 }
545
546 static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
547                             const char *input)
548 {
549         char *cpu, *str, *p;
550         long max_cpu;
551         int ret = 0;
552
553         ret = fio_cpuset_init(mask);
554         if (ret < 0) {
555                 log_err("fio: cpuset_init failed\n");
556                 td_verror(td, ret, "fio_cpuset_init");
557                 return 1;
558         }
559
560         p = str = strdup(input);
561
562         strip_blank_front(&str);
563         strip_blank_end(str);
564
565         max_cpu = cpus_online();
566
567         while ((cpu = strsep(&str, ",")) != NULL) {
568                 char *str2, *cpu2;
569                 int icpu, icpu2;
570
571                 if (!strlen(cpu))
572                         break;
573
574                 str2 = cpu;
575                 icpu2 = -1;
576                 while ((cpu2 = strsep(&str2, "-")) != NULL) {
577                         if (!strlen(cpu2))
578                                 break;
579
580                         icpu2 = atoi(cpu2);
581                 }
582
583                 icpu = atoi(cpu);
584                 if (icpu2 == -1)
585                         icpu2 = icpu;
586                 while (icpu <= icpu2) {
587                         if (icpu >= FIO_MAX_CPUS) {
588                                 log_err("fio: your OS only supports up to"
589                                         " %d CPUs\n", (int) FIO_MAX_CPUS);
590                                 ret = 1;
591                                 break;
592                         }
593                         if (icpu >= max_cpu) {
594                                 log_err("fio: CPU %d too large (max=%ld)\n",
595                                                         icpu, max_cpu - 1);
596                                 ret = 1;
597                                 break;
598                         }
599
600                         dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
601                         fio_cpu_set(mask, icpu);
602                         icpu++;
603                 }
604                 if (ret)
605                         break;
606         }
607
608         free(p);
609         return ret;
610 }
611
612 static int str_cpus_allowed_cb(void *data, const char *input)
613 {
614         struct thread_data *td = cb_data_to_td(data);
615
616         if (parse_dryrun())
617                 return 0;
618
619         return set_cpus_allowed(td, &td->o.cpumask, input);
620 }
621
622 static int str_verify_cpus_allowed_cb(void *data, const char *input)
623 {
624         struct thread_data *td = cb_data_to_td(data);
625
626         if (parse_dryrun())
627                 return 0;
628
629         return set_cpus_allowed(td, &td->o.verify_cpumask, input);
630 }
631
632 #ifdef CONFIG_ZLIB
633 static int str_log_cpus_allowed_cb(void *data, const char *input)
634 {
635         struct thread_data *td = cb_data_to_td(data);
636
637         if (parse_dryrun())
638                 return 0;
639
640         return set_cpus_allowed(td, &td->o.log_gz_cpumask, input);
641 }
642 #endif /* CONFIG_ZLIB */
643
644 #endif /* FIO_HAVE_CPU_AFFINITY */
645
646 #ifdef CONFIG_LIBNUMA
647 static int str_numa_cpunodes_cb(void *data, char *input)
648 {
649         struct thread_data *td = cb_data_to_td(data);
650         struct bitmask *verify_bitmask;
651
652         if (parse_dryrun())
653                 return 0;
654
655         /* numa_parse_nodestring() parses a character string list
656          * of nodes into a bit mask. The bit mask is allocated by
657          * numa_allocate_nodemask(), so it should be freed by
658          * numa_free_nodemask().
659          */
660         verify_bitmask = numa_parse_nodestring(input);
661         if (verify_bitmask == NULL) {
662                 log_err("fio: numa_parse_nodestring failed\n");
663                 td_verror(td, 1, "str_numa_cpunodes_cb");
664                 return 1;
665         }
666         numa_free_nodemask(verify_bitmask);
667
668         td->o.numa_cpunodes = strdup(input);
669         return 0;
670 }
671
672 static int str_numa_mpol_cb(void *data, char *input)
673 {
674         struct thread_data *td = cb_data_to_td(data);
675         const char * const policy_types[] =
676                 { "default", "prefer", "bind", "interleave", "local", NULL };
677         int i;
678         char *nodelist;
679         struct bitmask *verify_bitmask;
680
681         if (parse_dryrun())
682                 return 0;
683
684         nodelist = strchr(input, ':');
685         if (nodelist) {
686                 /* NUL-terminate mode */
687                 *nodelist++ = '\0';
688         }
689
690         for (i = 0; i <= MPOL_LOCAL; i++) {
691                 if (!strcmp(input, policy_types[i])) {
692                         td->o.numa_mem_mode = i;
693                         break;
694                 }
695         }
696         if (i > MPOL_LOCAL) {
697                 log_err("fio: memory policy should be: default, prefer, bind, interleave, local\n");
698                 goto out;
699         }
700
701         switch (td->o.numa_mem_mode) {
702         case MPOL_PREFERRED:
703                 /*
704                  * Insist on a nodelist of one node only
705                  */
706                 if (nodelist) {
707                         char *rest = nodelist;
708                         while (isdigit(*rest))
709                                 rest++;
710                         if (*rest) {
711                                 log_err("fio: one node only for \'prefer\'\n");
712                                 goto out;
713                         }
714                 } else {
715                         log_err("fio: one node is needed for \'prefer\'\n");
716                         goto out;
717                 }
718                 break;
719         case MPOL_INTERLEAVE:
720                 /*
721                  * Default to online nodes with memory if no nodelist
722                  */
723                 if (!nodelist)
724                         nodelist = strdup("all");
725                 break;
726         case MPOL_LOCAL:
727         case MPOL_DEFAULT:
728                 /*
729                  * Don't allow a nodelist
730                  */
731                 if (nodelist) {
732                         log_err("fio: NO nodelist for \'local\'\n");
733                         goto out;
734                 }
735                 break;
736         case MPOL_BIND:
737                 /*
738                  * Insist on a nodelist
739                  */
740                 if (!nodelist) {
741                         log_err("fio: a nodelist is needed for \'bind\'\n");
742                         goto out;
743                 }
744                 break;
745         }
746
747
748         /* numa_parse_nodestring() parses a character string list
749          * of nodes into a bit mask. The bit mask is allocated by
750          * numa_allocate_nodemask(), so it should be freed by
751          * numa_free_nodemask().
752          */
753         switch (td->o.numa_mem_mode) {
754         case MPOL_PREFERRED:
755                 td->o.numa_mem_prefer_node = atoi(nodelist);
756                 break;
757         case MPOL_INTERLEAVE:
758         case MPOL_BIND:
759                 verify_bitmask = numa_parse_nodestring(nodelist);
760                 if (verify_bitmask == NULL) {
761                         log_err("fio: numa_parse_nodestring failed\n");
762                         td_verror(td, 1, "str_numa_memnodes_cb");
763                         return 1;
764                 }
765                 td->o.numa_memnodes = strdup(nodelist);
766                 numa_free_nodemask(verify_bitmask);
767
768                 break;
769         case MPOL_LOCAL:
770         case MPOL_DEFAULT:
771         default:
772                 break;
773         }
774
775         return 0;
776 out:
777         return 1;
778 }
779 #endif
780
781 static int str_fst_cb(void *data, const char *str)
782 {
783         struct thread_data *td = cb_data_to_td(data);
784         double val;
785         bool done = false;
786         char *nr;
787
788         td->file_service_nr = 1;
789
790         switch (td->o.file_service_type) {
791         case FIO_FSERVICE_RANDOM:
792         case FIO_FSERVICE_RR:
793         case FIO_FSERVICE_SEQ:
794                 nr = get_opt_postfix(str);
795                 if (nr) {
796                         td->file_service_nr = atoi(nr);
797                         free(nr);
798                 }
799                 done = true;
800                 break;
801         case FIO_FSERVICE_ZIPF:
802                 val = FIO_DEF_ZIPF;
803                 break;
804         case FIO_FSERVICE_PARETO:
805                 val = FIO_DEF_PARETO;
806                 break;
807         case FIO_FSERVICE_GAUSS:
808                 val = 0.0;
809                 break;
810         default:
811                 log_err("fio: bad file service type: %d\n", td->o.file_service_type);
812                 return 1;
813         }
814
815         if (done)
816                 return 0;
817
818         nr = get_opt_postfix(str);
819         if (nr && !str_to_float(nr, &val, 0)) {
820                 log_err("fio: file service type random postfix parsing failed\n");
821                 free(nr);
822                 return 1;
823         }
824
825         free(nr);
826
827         switch (td->o.file_service_type) {
828         case FIO_FSERVICE_ZIPF:
829                 if (val == 1.00) {
830                         log_err("fio: zipf theta must be different than 1.0\n");
831                         return 1;
832                 }
833                 if (parse_dryrun())
834                         return 0;
835                 td->zipf_theta = val;
836                 break;
837         case FIO_FSERVICE_PARETO:
838                 if (val <= 0.00 || val >= 1.00) {
839                           log_err("fio: pareto input out of range (0 < input < 1.0)\n");
840                           return 1;
841                 }
842                 if (parse_dryrun())
843                         return 0;
844                 td->pareto_h = val;
845                 break;
846         case FIO_FSERVICE_GAUSS:
847                 if (val < 0.00 || val >= 100.00) {
848                           log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
849                           return 1;
850                 }
851                 if (parse_dryrun())
852                         return 0;
853                 td->gauss_dev = val;
854                 break;
855         }
856
857         return 0;
858 }
859
860 #ifdef CONFIG_SYNC_FILE_RANGE
861 static int str_sfr_cb(void *data, const char *str)
862 {
863         struct thread_data *td = cb_data_to_td(data);
864         char *nr = get_opt_postfix(str);
865
866         td->sync_file_range_nr = 1;
867         if (nr) {
868                 td->sync_file_range_nr = atoi(nr);
869                 free(nr);
870         }
871
872         return 0;
873 }
874 #endif
875
876 static int zone_split_ddir(struct thread_options *o, enum fio_ddir ddir,
877                            char *str, bool absolute)
878 {
879         unsigned int i, perc, perc_missing, sperc, sperc_missing;
880         struct split split;
881
882         memset(&split, 0, sizeof(split));
883
884         if (split_parse_ddir(o, &split, str, absolute, ZONESPLIT_MAX))
885                 return 1;
886         if (!split.nr)
887                 return 0;
888
889         o->zone_split[ddir] = malloc(split.nr * sizeof(struct zone_split));
890         o->zone_split_nr[ddir] = split.nr;
891         for (i = 0; i < split.nr; i++) {
892                 o->zone_split[ddir][i].access_perc = split.val1[i];
893                 if (absolute)
894                         o->zone_split[ddir][i].size = split.val2[i];
895                 else
896                         o->zone_split[ddir][i].size_perc = split.val2[i];
897         }
898
899         /*
900          * Now check if the percentages add up, and how much is missing
901          */
902         perc = perc_missing = 0;
903         sperc = sperc_missing = 0;
904         for (i = 0; i < o->zone_split_nr[ddir]; i++) {
905                 struct zone_split *zsp = &o->zone_split[ddir][i];
906
907                 if (zsp->access_perc == (uint8_t) -1U)
908                         perc_missing++;
909                 else
910                         perc += zsp->access_perc;
911
912                 if (!absolute) {
913                         if (zsp->size_perc == (uint8_t) -1U)
914                                 sperc_missing++;
915                         else
916                                 sperc += zsp->size_perc;
917                 }
918         }
919
920         if (perc > 100 || sperc > 100) {
921                 log_err("fio: zone_split percentages add to more than 100%%\n");
922                 free(o->zone_split[ddir]);
923                 o->zone_split[ddir] = NULL;
924                 return 1;
925         }
926         if (perc < 100) {
927                 log_err("fio: access percentage don't add up to 100 for zoned "
928                         "random distribution (got=%u)\n", perc);
929                 free(o->zone_split[ddir]);
930                 o->zone_split[ddir] = NULL;
931                 return 1;
932         }
933
934         /*
935          * If values didn't have a percentage set, divide the remains between
936          * them.
937          */
938         if (perc_missing) {
939                 if (perc_missing == 1 && o->zone_split_nr[ddir] == 1)
940                         perc = 100;
941                 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
942                         struct zone_split *zsp = &o->zone_split[ddir][i];
943
944                         if (zsp->access_perc == (uint8_t) -1U)
945                                 zsp->access_perc = (100 - perc) / perc_missing;
946                 }
947         }
948         if (sperc_missing) {
949                 if (sperc_missing == 1 && o->zone_split_nr[ddir] == 1)
950                         sperc = 100;
951                 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
952                         struct zone_split *zsp = &o->zone_split[ddir][i];
953
954                         if (zsp->size_perc == (uint8_t) -1U)
955                                 zsp->size_perc = (100 - sperc) / sperc_missing;
956                 }
957         }
958
959         return 0;
960 }
961
962 static int parse_zoned_distribution(struct thread_data *td, const char *input,
963                                     bool absolute)
964 {
965         const char *pre = absolute ? "zoned_abs:" : "zoned:";
966         char *str, *p;
967         int i, ret = 0;
968
969         p = str = strdup(input);
970
971         strip_blank_front(&str);
972         strip_blank_end(str);
973
974         /* We expect it to start like that, bail if not */
975         if (strncmp(str, pre, strlen(pre))) {
976                 log_err("fio: mismatch in zoned input <%s>\n", str);
977                 free(p);
978                 return 1;
979         }
980         str += strlen(pre);
981
982         ret = str_split_parse(td, str, zone_split_ddir, absolute);
983
984         free(p);
985
986         for (i = 0; i < DDIR_RWDIR_CNT; i++) {
987                 int j;
988
989                 dprint(FD_PARSE, "zone ddir %d (nr=%u): \n", i, td->o.zone_split_nr[i]);
990
991                 for (j = 0; j < td->o.zone_split_nr[i]; j++) {
992                         struct zone_split *zsp = &td->o.zone_split[i][j];
993
994                         if (absolute) {
995                                 dprint(FD_PARSE, "\t%d: %u/%llu\n", j,
996                                                 zsp->access_perc,
997                                                 (unsigned long long) zsp->size);
998                         } else {
999                                 dprint(FD_PARSE, "\t%d: %u/%u\n", j,
1000                                                 zsp->access_perc,
1001                                                 zsp->size_perc);
1002                         }
1003                 }
1004         }
1005
1006         if (parse_dryrun()) {
1007                 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1008                         free(td->o.zone_split[i]);
1009                         td->o.zone_split[i] = NULL;
1010                         td->o.zone_split_nr[i] = 0;
1011                 }
1012
1013                 return ret;
1014         }
1015
1016         if (ret) {
1017                 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1018                         td->o.zone_split_nr[i] = 0;
1019         }
1020
1021         return ret;
1022 }
1023
1024 static int str_random_distribution_cb(void *data, const char *str)
1025 {
1026         struct thread_data *td = cb_data_to_td(data);
1027         double val;
1028         char *nr;
1029
1030         if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
1031                 val = FIO_DEF_ZIPF;
1032         else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
1033                 val = FIO_DEF_PARETO;
1034         else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
1035                 val = 0.0;
1036         else if (td->o.random_distribution == FIO_RAND_DIST_ZONED)
1037                 return parse_zoned_distribution(td, str, false);
1038         else if (td->o.random_distribution == FIO_RAND_DIST_ZONED_ABS)
1039                 return parse_zoned_distribution(td, str, true);
1040         else
1041                 return 0;
1042
1043         nr = get_opt_postfix(str);
1044         if (nr && !str_to_float(nr, &val, 0)) {
1045                 log_err("fio: random postfix parsing failed\n");
1046                 free(nr);
1047                 return 1;
1048         }
1049
1050         free(nr);
1051
1052         if (td->o.random_distribution == FIO_RAND_DIST_ZIPF) {
1053                 if (val == 1.00) {
1054                         log_err("fio: zipf theta must different than 1.0\n");
1055                         return 1;
1056                 }
1057                 if (parse_dryrun())
1058                         return 0;
1059                 td->o.zipf_theta.u.f = val;
1060         } else if (td->o.random_distribution == FIO_RAND_DIST_PARETO) {
1061                 if (val <= 0.00 || val >= 1.00) {
1062                         log_err("fio: pareto input out of range (0 < input < 1.0)\n");
1063                         return 1;
1064                 }
1065                 if (parse_dryrun())
1066                         return 0;
1067                 td->o.pareto_h.u.f = val;
1068         } else {
1069                 if (val < 0.00 || val >= 100.0) {
1070                         log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
1071                         return 1;
1072                 }
1073                 if (parse_dryrun())
1074                         return 0;
1075                 td->o.gauss_dev.u.f = val;
1076         }
1077
1078         return 0;
1079 }
1080
1081 static int str_steadystate_cb(void *data, const char *str)
1082 {
1083         struct thread_data *td = cb_data_to_td(data);
1084         double val;
1085         char *nr;
1086         char *pct;
1087         long long ll;
1088
1089         if (td->o.ss_state != FIO_SS_IOPS && td->o.ss_state != FIO_SS_IOPS_SLOPE &&
1090             td->o.ss_state != FIO_SS_BW && td->o.ss_state != FIO_SS_BW_SLOPE) {
1091                 /* should be impossible to get here */
1092                 log_err("fio: unknown steady state criterion\n");
1093                 return 1;
1094         }
1095
1096         nr = get_opt_postfix(str);
1097         if (!nr) {
1098                 log_err("fio: steadystate threshold must be specified in addition to criterion\n");
1099                 free(nr);
1100                 return 1;
1101         }
1102
1103         /* ENHANCEMENT Allow fio to understand size=10.2% and use here */
1104         pct = strstr(nr, "%");
1105         if (pct) {
1106                 *pct = '\0';
1107                 strip_blank_end(nr);
1108                 if (!str_to_float(nr, &val, 0)) {
1109                         log_err("fio: could not parse steadystate threshold percentage\n");
1110                         free(nr);
1111                         return 1;
1112                 }
1113
1114                 dprint(FD_PARSE, "set steady state threshold to %f%%\n", val);
1115                 free(nr);
1116                 if (parse_dryrun())
1117                         return 0;
1118
1119                 td->o.ss_state |= FIO_SS_PCT;
1120                 td->o.ss_limit.u.f = val;
1121         } else if (td->o.ss_state & FIO_SS_IOPS) {
1122                 if (!str_to_float(nr, &val, 0)) {
1123                         log_err("fio: steadystate IOPS threshold postfix parsing failed\n");
1124                         free(nr);
1125                         return 1;
1126                 }
1127
1128                 dprint(FD_PARSE, "set steady state IOPS threshold to %f\n", val);
1129                 free(nr);
1130                 if (parse_dryrun())
1131                         return 0;
1132
1133                 td->o.ss_limit.u.f = val;
1134         } else {        /* bandwidth criterion */
1135                 if (str_to_decimal(nr, &ll, 1, td, 0, 0)) {
1136                         log_err("fio: steadystate BW threshold postfix parsing failed\n");
1137                         free(nr);
1138                         return 1;
1139                 }
1140
1141                 dprint(FD_PARSE, "set steady state BW threshold to %lld\n", ll);
1142                 free(nr);
1143                 if (parse_dryrun())
1144                         return 0;
1145
1146                 td->o.ss_limit.u.f = (double) ll;
1147         }
1148
1149         td->ss.state = td->o.ss_state;
1150         return 0;
1151 }
1152
1153 /*
1154  * Return next name in the string. Files are separated with ':'. If the ':'
1155  * is escaped with a '\', then that ':' is part of the filename and does not
1156  * indicate a new file.
1157  */
1158 static char *get_next_name(char **ptr)
1159 {
1160         char *str = *ptr;
1161         char *p, *start;
1162
1163         if (!str || !strlen(str))
1164                 return NULL;
1165
1166         start = str;
1167         do {
1168                 /*
1169                  * No colon, we are done
1170                  */
1171                 p = strchr(str, ':');
1172                 if (!p) {
1173                         *ptr = NULL;
1174                         break;
1175                 }
1176
1177                 /*
1178                  * We got a colon, but it's the first character. Skip and
1179                  * continue
1180                  */
1181                 if (p == start) {
1182                         str = ++start;
1183                         continue;
1184                 }
1185
1186                 if (*(p - 1) != '\\') {
1187                         *p = '\0';
1188                         *ptr = p + 1;
1189                         break;
1190                 }
1191
1192                 memmove(p - 1, p, strlen(p) + 1);
1193                 str = p;
1194         } while (1);
1195
1196         return start;
1197 }
1198
1199
1200 static int get_max_name_idx(char *input)
1201 {
1202         unsigned int cur_idx;
1203         char *str, *p;
1204
1205         p = str = strdup(input);
1206         for (cur_idx = 0; ; cur_idx++)
1207                 if (get_next_name(&str) == NULL)
1208                         break;
1209
1210         free(p);
1211         return cur_idx;
1212 }
1213
1214 /*
1215  * Returns the directory at the index, indexes > entires will be
1216  * assigned via modulo division of the index
1217  */
1218 int set_name_idx(char *target, size_t tlen, char *input, int index,
1219                  bool unique_filename)
1220 {
1221         unsigned int cur_idx;
1222         int len;
1223         char *fname, *str, *p;
1224
1225         p = str = strdup(input);
1226
1227         index %= get_max_name_idx(input);
1228         for (cur_idx = 0; cur_idx <= index; cur_idx++)
1229                 fname = get_next_name(&str);
1230
1231         if (client_sockaddr_str[0] && unique_filename) {
1232                 len = snprintf(target, tlen, "%s/%s.", fname,
1233                                 client_sockaddr_str);
1234         } else
1235                 len = snprintf(target, tlen, "%s/", fname);
1236
1237         target[tlen - 1] = '\0';
1238         free(p);
1239
1240         return len;
1241 }
1242
1243 static int str_filename_cb(void *data, const char *input)
1244 {
1245         struct thread_data *td = cb_data_to_td(data);
1246         char *fname, *str, *p;
1247
1248         p = str = strdup(input);
1249
1250         strip_blank_front(&str);
1251         strip_blank_end(str);
1252
1253         /*
1254          * Ignore what we may already have from nrfiles option.
1255          */
1256         if (!td->files_index)
1257                 td->o.nr_files = 0;
1258
1259         while ((fname = get_next_name(&str)) != NULL) {
1260                 if (!strlen(fname))
1261                         break;
1262                 add_file(td, fname, 0, 1);
1263         }
1264
1265         free(p);
1266         return 0;
1267 }
1268
1269 static int str_directory_cb(void *data, const char fio_unused *unused)
1270 {
1271         struct thread_data *td = cb_data_to_td(data);
1272         struct stat sb;
1273         char *dirname, *str, *p;
1274         int ret = 0;
1275
1276         if (parse_dryrun())
1277                 return 0;
1278
1279         p = str = strdup(td->o.directory);
1280         while ((dirname = get_next_name(&str)) != NULL) {
1281                 if (lstat(dirname, &sb) < 0) {
1282                         ret = errno;
1283
1284                         log_err("fio: %s is not a directory\n", dirname);
1285                         td_verror(td, ret, "lstat");
1286                         goto out;
1287                 }
1288                 if (!S_ISDIR(sb.st_mode)) {
1289                         log_err("fio: %s is not a directory\n", dirname);
1290                         ret = 1;
1291                         goto out;
1292                 }
1293         }
1294
1295 out:
1296         free(p);
1297         return ret;
1298 }
1299
1300 static int str_opendir_cb(void *data, const char fio_unused *str)
1301 {
1302         struct thread_data *td = cb_data_to_td(data);
1303
1304         if (parse_dryrun())
1305                 return 0;
1306
1307         if (!td->files_index)
1308                 td->o.nr_files = 0;
1309
1310         return add_dir_files(td, td->o.opendir);
1311 }
1312
1313 static int str_buffer_pattern_cb(void *data, const char *input)
1314 {
1315         struct thread_data *td = cb_data_to_td(data);
1316         int ret;
1317
1318         /* FIXME: for now buffer pattern does not support formats */
1319         ret = parse_and_fill_pattern(input, strlen(input), td->o.buffer_pattern,
1320                                      MAX_PATTERN_SIZE, NULL, 0, NULL, NULL);
1321         if (ret < 0)
1322                 return 1;
1323
1324         assert(ret != 0);
1325         td->o.buffer_pattern_bytes = ret;
1326
1327         /*
1328          * If this job is doing any reading or has compression set,
1329          * ensure that we refill buffers for writes or we could be
1330          * invalidating the pattern through reads.
1331          */
1332         if (!td->o.compress_percentage && !td_read(td))
1333                 td->o.refill_buffers = 0;
1334         else
1335                 td->o.refill_buffers = 1;
1336
1337         td->o.scramble_buffers = 0;
1338         td->o.zero_buffers = 0;
1339
1340         return 0;
1341 }
1342
1343 static int str_buffer_compress_cb(void *data, unsigned long long *il)
1344 {
1345         struct thread_data *td = cb_data_to_td(data);
1346
1347         td->flags |= TD_F_COMPRESS;
1348         td->o.compress_percentage = *il;
1349         return 0;
1350 }
1351
1352 static int str_dedupe_cb(void *data, unsigned long long *il)
1353 {
1354         struct thread_data *td = cb_data_to_td(data);
1355
1356         td->flags |= TD_F_COMPRESS;
1357         td->o.dedupe_percentage = *il;
1358         td->o.refill_buffers = 1;
1359         return 0;
1360 }
1361
1362 static int str_verify_pattern_cb(void *data, const char *input)
1363 {
1364         struct thread_data *td = cb_data_to_td(data);
1365         int ret;
1366
1367         td->o.verify_fmt_sz = ARRAY_SIZE(td->o.verify_fmt);
1368         ret = parse_and_fill_pattern(input, strlen(input), td->o.verify_pattern,
1369                                      MAX_PATTERN_SIZE, fmt_desc, sizeof(fmt_desc),
1370                                      td->o.verify_fmt, &td->o.verify_fmt_sz);
1371         if (ret < 0)
1372                 return 1;
1373
1374         assert(ret != 0);
1375         td->o.verify_pattern_bytes = ret;
1376         /*
1377          * VERIFY_* could already be set
1378          */
1379         if (!fio_option_is_set(&td->o, verify))
1380                 td->o.verify = VERIFY_PATTERN;
1381
1382         return 0;
1383 }
1384
1385 static int str_gtod_reduce_cb(void *data, int *il)
1386 {
1387         struct thread_data *td = cb_data_to_td(data);
1388         int val = *il;
1389
1390         td->o.disable_lat = !!val;
1391         td->o.disable_clat = !!val;
1392         td->o.disable_slat = !!val;
1393         td->o.disable_bw = !!val;
1394         td->o.clat_percentiles = !val;
1395         if (val)
1396                 td->ts_cache_mask = 63;
1397
1398         return 0;
1399 }
1400
1401 static int str_offset_cb(void *data, unsigned long long *__val)
1402 {
1403         struct thread_data *td = cb_data_to_td(data);
1404         unsigned long long v = *__val;
1405
1406         if (parse_is_percent(v)) {
1407                 td->o.start_offset = 0;
1408                 td->o.start_offset_percent = -1ULL - v;
1409                 dprint(FD_PARSE, "SET start_offset_percent %d\n",
1410                                         td->o.start_offset_percent);
1411         } else
1412                 td->o.start_offset = v;
1413
1414         return 0;
1415 }
1416
1417 static int str_size_cb(void *data, unsigned long long *__val)
1418 {
1419         struct thread_data *td = cb_data_to_td(data);
1420         unsigned long long v = *__val;
1421
1422         if (parse_is_percent(v)) {
1423                 td->o.size = 0;
1424                 td->o.size_percent = -1ULL - v;
1425                 dprint(FD_PARSE, "SET size_percent %d\n",
1426                                         td->o.size_percent);
1427         } else
1428                 td->o.size = v;
1429
1430         return 0;
1431 }
1432
1433 static int str_write_bw_log_cb(void *data, const char *str)
1434 {
1435         struct thread_data *td = cb_data_to_td(data);
1436
1437         if (str)
1438                 td->o.bw_log_file = strdup(str);
1439
1440         td->o.write_bw_log = 1;
1441         return 0;
1442 }
1443
1444 static int str_write_lat_log_cb(void *data, const char *str)
1445 {
1446         struct thread_data *td = cb_data_to_td(data);
1447
1448         if (str)
1449                 td->o.lat_log_file = strdup(str);
1450
1451         td->o.write_lat_log = 1;
1452         return 0;
1453 }
1454
1455 static int str_write_iops_log_cb(void *data, const char *str)
1456 {
1457         struct thread_data *td = cb_data_to_td(data);
1458
1459         if (str)
1460                 td->o.iops_log_file = strdup(str);
1461
1462         td->o.write_iops_log = 1;
1463         return 0;
1464 }
1465
1466 static int str_write_hist_log_cb(void *data, const char *str)
1467 {
1468         struct thread_data *td = cb_data_to_td(data);
1469
1470         if (str)
1471                 td->o.hist_log_file = strdup(str);
1472
1473         td->o.write_hist_log = 1;
1474         return 0;
1475 }
1476
1477 /*
1478  * str is supposed to be a substring of the strdup'd original string,
1479  * and is valid only if it's a regular file path.
1480  * This function keeps the pointer to the path as needed later.
1481  *
1482  * "external:/path/to/so\0" <- original pointer updated with strdup'd
1483  * "external\0"             <- above pointer after parsed, i.e. ->ioengine
1484  *          "/path/to/so\0" <- str argument, i.e. ->ioengine_so_path
1485  */
1486 static int str_ioengine_external_cb(void *data, const char *str)
1487 {
1488         struct thread_data *td = cb_data_to_td(data);
1489         struct stat sb;
1490         char *p;
1491
1492         if (!str) {
1493                 log_err("fio: null external ioengine path\n");
1494                 return 1;
1495         }
1496
1497         p = (char *)str; /* str is mutable */
1498         strip_blank_front(&p);
1499         strip_blank_end(p);
1500
1501         if (stat(p, &sb) || !S_ISREG(sb.st_mode)) {
1502                 log_err("fio: invalid external ioengine path \"%s\"\n", p);
1503                 return 1;
1504         }
1505
1506         td->o.ioengine_so_path = p;
1507         return 0;
1508 }
1509
1510 static int rw_verify(const struct fio_option *o, void *data)
1511 {
1512         struct thread_data *td = cb_data_to_td(data);
1513
1514         if (read_only && (td_write(td) || td_trim(td))) {
1515                 log_err("fio: job <%s> has write or trim bit set, but"
1516                         " fio is in read-only mode\n", td->o.name);
1517                 return 1;
1518         }
1519
1520         return 0;
1521 }
1522
1523 static int gtod_cpu_verify(const struct fio_option *o, void *data)
1524 {
1525 #ifndef FIO_HAVE_CPU_AFFINITY
1526         struct thread_data *td = cb_data_to_td(data);
1527
1528         if (td->o.gtod_cpu) {
1529                 log_err("fio: platform must support CPU affinity for"
1530                         "gettimeofday() offloading\n");
1531                 return 1;
1532         }
1533 #endif
1534
1535         return 0;
1536 }
1537
1538 /*
1539  * Map of job/command line options
1540  */
1541 struct fio_option fio_options[FIO_MAX_OPTS] = {
1542         {
1543                 .name   = "description",
1544                 .lname  = "Description of job",
1545                 .type   = FIO_OPT_STR_STORE,
1546                 .off1   = offsetof(struct thread_options, description),
1547                 .help   = "Text job description",
1548                 .category = FIO_OPT_C_GENERAL,
1549                 .group  = FIO_OPT_G_DESC,
1550         },
1551         {
1552                 .name   = "name",
1553                 .lname  = "Job name",
1554                 .type   = FIO_OPT_STR_STORE,
1555                 .off1   = offsetof(struct thread_options, name),
1556                 .help   = "Name of this job",
1557                 .category = FIO_OPT_C_GENERAL,
1558                 .group  = FIO_OPT_G_DESC,
1559         },
1560         {
1561                 .name   = "wait_for",
1562                 .lname  = "Waitee name",
1563                 .type   = FIO_OPT_STR_STORE,
1564                 .off1   = offsetof(struct thread_options, wait_for),
1565                 .help   = "Name of the job this one wants to wait for before starting",
1566                 .category = FIO_OPT_C_GENERAL,
1567                 .group  = FIO_OPT_G_DESC,
1568         },
1569         {
1570                 .name   = "filename",
1571                 .lname  = "Filename(s)",
1572                 .type   = FIO_OPT_STR_STORE,
1573                 .off1   = offsetof(struct thread_options, filename),
1574                 .cb     = str_filename_cb,
1575                 .prio   = -1, /* must come after "directory" */
1576                 .help   = "File(s) to use for the workload",
1577                 .category = FIO_OPT_C_FILE,
1578                 .group  = FIO_OPT_G_FILENAME,
1579         },
1580         {
1581                 .name   = "directory",
1582                 .lname  = "Directory",
1583                 .type   = FIO_OPT_STR_STORE,
1584                 .off1   = offsetof(struct thread_options, directory),
1585                 .cb     = str_directory_cb,
1586                 .help   = "Directory to store files in",
1587                 .category = FIO_OPT_C_FILE,
1588                 .group  = FIO_OPT_G_FILENAME,
1589         },
1590         {
1591                 .name   = "filename_format",
1592                 .lname  = "Filename Format",
1593                 .type   = FIO_OPT_STR_STORE,
1594                 .off1   = offsetof(struct thread_options, filename_format),
1595                 .prio   = -1, /* must come after "directory" */
1596                 .help   = "Override default $jobname.$jobnum.$filenum naming",
1597                 .def    = "$jobname.$jobnum.$filenum",
1598                 .category = FIO_OPT_C_FILE,
1599                 .group  = FIO_OPT_G_FILENAME,
1600         },
1601         {
1602                 .name   = "unique_filename",
1603                 .lname  = "Unique Filename",
1604                 .type   = FIO_OPT_BOOL,
1605                 .off1   = offsetof(struct thread_options, unique_filename),
1606                 .help   = "For network clients, prefix file with source IP",
1607                 .def    = "1",
1608                 .category = FIO_OPT_C_FILE,
1609                 .group  = FIO_OPT_G_FILENAME,
1610         },
1611         {
1612                 .name   = "lockfile",
1613                 .lname  = "Lockfile",
1614                 .type   = FIO_OPT_STR,
1615                 .off1   = offsetof(struct thread_options, file_lock_mode),
1616                 .help   = "Lock file when doing IO to it",
1617                 .prio   = 1,
1618                 .parent = "filename",
1619                 .hide   = 0,
1620                 .def    = "none",
1621                 .category = FIO_OPT_C_FILE,
1622                 .group  = FIO_OPT_G_FILENAME,
1623                 .posval = {
1624                           { .ival = "none",
1625                             .oval = FILE_LOCK_NONE,
1626                             .help = "No file locking",
1627                           },
1628                           { .ival = "exclusive",
1629                             .oval = FILE_LOCK_EXCLUSIVE,
1630                             .help = "Exclusive file lock",
1631                           },
1632                           {
1633                             .ival = "readwrite",
1634                             .oval = FILE_LOCK_READWRITE,
1635                             .help = "Read vs write lock",
1636                           },
1637                 },
1638         },
1639         {
1640                 .name   = "opendir",
1641                 .lname  = "Open directory",
1642                 .type   = FIO_OPT_STR_STORE,
1643                 .off1   = offsetof(struct thread_options, opendir),
1644                 .cb     = str_opendir_cb,
1645                 .help   = "Recursively add files from this directory and down",
1646                 .category = FIO_OPT_C_FILE,
1647                 .group  = FIO_OPT_G_FILENAME,
1648         },
1649         {
1650                 .name   = "rw",
1651                 .lname  = "Read/write",
1652                 .alias  = "readwrite",
1653                 .type   = FIO_OPT_STR,
1654                 .cb     = str_rw_cb,
1655                 .off1   = offsetof(struct thread_options, td_ddir),
1656                 .help   = "IO direction",
1657                 .def    = "read",
1658                 .verify = rw_verify,
1659                 .category = FIO_OPT_C_IO,
1660                 .group  = FIO_OPT_G_IO_BASIC,
1661                 .posval = {
1662                           { .ival = "read",
1663                             .oval = TD_DDIR_READ,
1664                             .help = "Sequential read",
1665                           },
1666                           { .ival = "write",
1667                             .oval = TD_DDIR_WRITE,
1668                             .help = "Sequential write",
1669                           },
1670                           { .ival = "trim",
1671                             .oval = TD_DDIR_TRIM,
1672                             .help = "Sequential trim",
1673                           },
1674                           { .ival = "randread",
1675                             .oval = TD_DDIR_RANDREAD,
1676                             .help = "Random read",
1677                           },
1678                           { .ival = "randwrite",
1679                             .oval = TD_DDIR_RANDWRITE,
1680                             .help = "Random write",
1681                           },
1682                           { .ival = "randtrim",
1683                             .oval = TD_DDIR_RANDTRIM,
1684                             .help = "Random trim",
1685                           },
1686                           { .ival = "rw",
1687                             .oval = TD_DDIR_RW,
1688                             .help = "Sequential read and write mix",
1689                           },
1690                           { .ival = "readwrite",
1691                             .oval = TD_DDIR_RW,
1692                             .help = "Sequential read and write mix",
1693                           },
1694                           { .ival = "randrw",
1695                             .oval = TD_DDIR_RANDRW,
1696                             .help = "Random read and write mix"
1697                           },
1698                           { .ival = "trimwrite",
1699                             .oval = TD_DDIR_TRIMWRITE,
1700                             .help = "Trim and write mix, trims preceding writes"
1701                           },
1702                 },
1703         },
1704         {
1705                 .name   = "rw_sequencer",
1706                 .lname  = "RW Sequencer",
1707                 .type   = FIO_OPT_STR,
1708                 .off1   = offsetof(struct thread_options, rw_seq),
1709                 .help   = "IO offset generator modifier",
1710                 .def    = "sequential",
1711                 .category = FIO_OPT_C_IO,
1712                 .group  = FIO_OPT_G_IO_BASIC,
1713                 .posval = {
1714                           { .ival = "sequential",
1715                             .oval = RW_SEQ_SEQ,
1716                             .help = "Generate sequential offsets",
1717                           },
1718                           { .ival = "identical",
1719                             .oval = RW_SEQ_IDENT,
1720                             .help = "Generate identical offsets",
1721                           },
1722                 },
1723         },
1724
1725         {
1726                 .name   = "ioengine",
1727                 .lname  = "IO Engine",
1728                 .type   = FIO_OPT_STR_STORE,
1729                 .off1   = offsetof(struct thread_options, ioengine),
1730                 .help   = "IO engine to use",
1731                 .def    = FIO_PREFERRED_ENGINE,
1732                 .category = FIO_OPT_C_IO,
1733                 .group  = FIO_OPT_G_IO_BASIC,
1734                 .posval = {
1735                           { .ival = "sync",
1736                             .help = "Use read/write",
1737                           },
1738                           { .ival = "psync",
1739                             .help = "Use pread/pwrite",
1740                           },
1741                           { .ival = "vsync",
1742                             .help = "Use readv/writev",
1743                           },
1744 #ifdef CONFIG_PWRITEV
1745                           { .ival = "pvsync",
1746                             .help = "Use preadv/pwritev",
1747                           },
1748 #endif
1749 #ifdef FIO_HAVE_PWRITEV2
1750                           { .ival = "pvsync2",
1751                             .help = "Use preadv2/pwritev2",
1752                           },
1753 #endif
1754 #ifdef CONFIG_LIBAIO
1755                           { .ival = "libaio",
1756                             .help = "Linux native asynchronous IO",
1757                           },
1758 #endif
1759 #ifdef CONFIG_POSIXAIO
1760                           { .ival = "posixaio",
1761                             .help = "POSIX asynchronous IO",
1762                           },
1763 #endif
1764 #ifdef CONFIG_SOLARISAIO
1765                           { .ival = "solarisaio",
1766                             .help = "Solaris native asynchronous IO",
1767                           },
1768 #endif
1769 #ifdef CONFIG_WINDOWSAIO
1770                           { .ival = "windowsaio",
1771                             .help = "Windows native asynchronous IO"
1772                           },
1773 #endif
1774 #ifdef CONFIG_RBD
1775                           { .ival = "rbd",
1776                             .help = "Rados Block Device asynchronous IO"
1777                           },
1778 #endif
1779                           { .ival = "mmap",
1780                             .help = "Memory mapped IO"
1781                           },
1782 #ifdef CONFIG_LINUX_SPLICE
1783                           { .ival = "splice",
1784                             .help = "splice/vmsplice based IO",
1785                           },
1786                           { .ival = "netsplice",
1787                             .help = "splice/vmsplice to/from the network",
1788                           },
1789 #endif
1790 #ifdef FIO_HAVE_SGIO
1791                           { .ival = "sg",
1792                             .help = "SCSI generic v3 IO",
1793                           },
1794 #endif
1795                           { .ival = "null",
1796                             .help = "Testing engine (no data transfer)",
1797                           },
1798                           { .ival = "net",
1799                             .help = "Network IO",
1800                           },
1801                           { .ival = "cpuio",
1802                             .help = "CPU cycle burner engine",
1803                           },
1804 #ifdef CONFIG_GUASI
1805                           { .ival = "guasi",
1806                             .help = "GUASI IO engine",
1807                           },
1808 #endif
1809 #ifdef CONFIG_RDMA
1810                           { .ival = "rdma",
1811                             .help = "RDMA IO engine",
1812                           },
1813 #endif
1814 #ifdef CONFIG_FUSION_AW
1815                           { .ival = "fusion-aw-sync",
1816                             .help = "Fusion-io atomic write engine",
1817                           },
1818 #endif
1819 #ifdef CONFIG_LINUX_EXT4_MOVE_EXTENT
1820                           { .ival = "e4defrag",
1821                             .help = "ext4 defrag engine",
1822                           },
1823 #endif
1824 #ifdef CONFIG_LINUX_FALLOCATE
1825                           { .ival = "falloc",
1826                             .help = "fallocate() file based engine",
1827                           },
1828 #endif
1829 #ifdef CONFIG_GFAPI
1830                           { .ival = "gfapi",
1831                             .help = "Glusterfs libgfapi(sync) based engine"
1832                           },
1833                           { .ival = "gfapi_async",
1834                             .help = "Glusterfs libgfapi(async) based engine"
1835                           },
1836 #endif
1837 #ifdef CONFIG_LIBHDFS
1838                           { .ival = "libhdfs",
1839                             .help = "Hadoop Distributed Filesystem (HDFS) engine"
1840                           },
1841 #endif
1842 #ifdef CONFIG_PMEMBLK
1843                           { .ival = "pmemblk",
1844                             .help = "PMDK libpmemblk based IO engine",
1845                           },
1846
1847 #endif
1848 #ifdef CONFIG_LINUX_DEVDAX
1849                           { .ival = "dev-dax",
1850                             .help = "DAX Device based IO engine",
1851                           },
1852 #endif
1853                           {
1854                             .ival = "filecreate",
1855                             .help = "File creation engine",
1856                           },
1857                           { .ival = "external",
1858                             .help = "Load external engine (append name)",
1859                             .cb = str_ioengine_external_cb,
1860                           },
1861 #ifdef CONFIG_LIBPMEM
1862                           { .ival = "libpmem",
1863                             .help = "PMDK libpmem based IO engine",
1864                           },
1865 #endif
1866 #ifdef CONFIG_HTTP
1867                           { .ival = "http",
1868                             .help = "HTTP (WebDAV/S3) IO engine",
1869                           },
1870 #endif
1871                 },
1872         },
1873         {
1874                 .name   = "iodepth",
1875                 .lname  = "IO Depth",
1876                 .type   = FIO_OPT_INT,
1877                 .off1   = offsetof(struct thread_options, iodepth),
1878                 .help   = "Number of IO buffers to keep in flight",
1879                 .minval = 1,
1880                 .interval = 1,
1881                 .def    = "1",
1882                 .category = FIO_OPT_C_IO,
1883                 .group  = FIO_OPT_G_IO_BASIC,
1884         },
1885         {
1886                 .name   = "iodepth_batch",
1887                 .lname  = "IO Depth batch",
1888                 .alias  = "iodepth_batch_submit",
1889                 .type   = FIO_OPT_INT,
1890                 .off1   = offsetof(struct thread_options, iodepth_batch),
1891                 .help   = "Number of IO buffers to submit in one go",
1892                 .parent = "iodepth",
1893                 .hide   = 1,
1894                 .interval = 1,
1895                 .def    = "1",
1896                 .category = FIO_OPT_C_IO,
1897                 .group  = FIO_OPT_G_IO_BASIC,
1898         },
1899         {
1900                 .name   = "iodepth_batch_complete_min",
1901                 .lname  = "Min IO depth batch complete",
1902                 .alias  = "iodepth_batch_complete",
1903                 .type   = FIO_OPT_INT,
1904                 .off1   = offsetof(struct thread_options, iodepth_batch_complete_min),
1905                 .help   = "Min number of IO buffers to retrieve in one go",
1906                 .parent = "iodepth",
1907                 .hide   = 1,
1908                 .minval = 0,
1909                 .interval = 1,
1910                 .def    = "1",
1911                 .category = FIO_OPT_C_IO,
1912                 .group  = FIO_OPT_G_IO_BASIC,
1913         },
1914         {
1915                 .name   = "iodepth_batch_complete_max",
1916                 .lname  = "Max IO depth batch complete",
1917                 .type   = FIO_OPT_INT,
1918                 .off1   = offsetof(struct thread_options, iodepth_batch_complete_max),
1919                 .help   = "Max number of IO buffers to retrieve in one go",
1920                 .parent = "iodepth",
1921                 .hide   = 1,
1922                 .minval = 0,
1923                 .interval = 1,
1924                 .category = FIO_OPT_C_IO,
1925                 .group  = FIO_OPT_G_IO_BASIC,
1926         },
1927         {
1928                 .name   = "iodepth_low",
1929                 .lname  = "IO Depth batch low",
1930                 .type   = FIO_OPT_INT,
1931                 .off1   = offsetof(struct thread_options, iodepth_low),
1932                 .help   = "Low water mark for queuing depth",
1933                 .parent = "iodepth",
1934                 .hide   = 1,
1935                 .interval = 1,
1936                 .category = FIO_OPT_C_IO,
1937                 .group  = FIO_OPT_G_IO_BASIC,
1938         },
1939         {
1940                 .name   = "serialize_overlap",
1941                 .lname  = "Serialize overlap",
1942                 .off1   = offsetof(struct thread_options, serialize_overlap),
1943                 .type   = FIO_OPT_BOOL,
1944                 .help   = "Wait for in-flight IOs that collide to complete",
1945                 .parent = "iodepth",
1946                 .def    = "0",
1947                 .category = FIO_OPT_C_IO,
1948                 .group  = FIO_OPT_G_IO_BASIC,
1949         },
1950         {
1951                 .name   = "io_submit_mode",
1952                 .lname  = "IO submit mode",
1953                 .type   = FIO_OPT_STR,
1954                 .off1   = offsetof(struct thread_options, io_submit_mode),
1955                 .help   = "How IO submissions and completions are done",
1956                 .def    = "inline",
1957                 .category = FIO_OPT_C_IO,
1958                 .group  = FIO_OPT_G_IO_BASIC,
1959                 .posval = {
1960                           { .ival = "inline",
1961                             .oval = IO_MODE_INLINE,
1962                             .help = "Submit and complete IO inline",
1963                           },
1964                           { .ival = "offload",
1965                             .oval = IO_MODE_OFFLOAD,
1966                             .help = "Offload submit and complete to threads",
1967                           },
1968                 },
1969         },
1970         {
1971                 .name   = "size",
1972                 .lname  = "Size",
1973                 .type   = FIO_OPT_STR_VAL,
1974                 .cb     = str_size_cb,
1975                 .off1   = offsetof(struct thread_options, size),
1976                 .help   = "Total size of device or files",
1977                 .interval = 1024 * 1024,
1978                 .category = FIO_OPT_C_IO,
1979                 .group  = FIO_OPT_G_INVALID,
1980         },
1981         {
1982                 .name   = "io_size",
1983                 .alias  = "io_limit",
1984                 .lname  = "IO Size",
1985                 .type   = FIO_OPT_STR_VAL,
1986                 .off1   = offsetof(struct thread_options, io_size),
1987                 .help   = "Total size of I/O to be performed",
1988                 .interval = 1024 * 1024,
1989                 .category = FIO_OPT_C_IO,
1990                 .group  = FIO_OPT_G_INVALID,
1991         },
1992         {
1993                 .name   = "fill_device",
1994                 .lname  = "Fill device",
1995                 .alias  = "fill_fs",
1996                 .type   = FIO_OPT_BOOL,
1997                 .off1   = offsetof(struct thread_options, fill_device),
1998                 .help   = "Write until an ENOSPC error occurs",
1999                 .def    = "0",
2000                 .category = FIO_OPT_C_FILE,
2001                 .group  = FIO_OPT_G_INVALID,
2002         },
2003         {
2004                 .name   = "filesize",
2005                 .lname  = "File size",
2006                 .type   = FIO_OPT_STR_VAL,
2007                 .off1   = offsetof(struct thread_options, file_size_low),
2008                 .off2   = offsetof(struct thread_options, file_size_high),
2009                 .minval = 1,
2010                 .help   = "Size of individual files",
2011                 .interval = 1024 * 1024,
2012                 .category = FIO_OPT_C_FILE,
2013                 .group  = FIO_OPT_G_INVALID,
2014         },
2015         {
2016                 .name   = "file_append",
2017                 .lname  = "File append",
2018                 .type   = FIO_OPT_BOOL,
2019                 .off1   = offsetof(struct thread_options, file_append),
2020                 .help   = "IO will start at the end of the file(s)",
2021                 .def    = "0",
2022                 .category = FIO_OPT_C_FILE,
2023                 .group  = FIO_OPT_G_INVALID,
2024         },
2025         {
2026                 .name   = "offset",
2027                 .lname  = "IO offset",
2028                 .alias  = "fileoffset",
2029                 .type   = FIO_OPT_STR_VAL,
2030                 .cb     = str_offset_cb,
2031                 .off1   = offsetof(struct thread_options, start_offset),
2032                 .help   = "Start IO from this offset",
2033                 .def    = "0",
2034                 .interval = 1024 * 1024,
2035                 .category = FIO_OPT_C_IO,
2036                 .group  = FIO_OPT_G_INVALID,
2037         },
2038         {
2039                 .name   = "offset_align",
2040                 .lname  = "IO offset alignment",
2041                 .type   = FIO_OPT_INT,
2042                 .off1   = offsetof(struct thread_options, start_offset_align),
2043                 .help   = "Start IO from this offset alignment",
2044                 .def    = "0",
2045                 .interval = 512,
2046                 .category = FIO_OPT_C_IO,
2047                 .group  = FIO_OPT_G_INVALID,
2048         },
2049         {
2050                 .name   = "offset_increment",
2051                 .lname  = "IO offset increment",
2052                 .type   = FIO_OPT_STR_VAL,
2053                 .off1   = offsetof(struct thread_options, offset_increment),
2054                 .help   = "What is the increment from one offset to the next",
2055                 .parent = "offset",
2056                 .hide   = 1,
2057                 .def    = "0",
2058                 .interval = 1024 * 1024,
2059                 .category = FIO_OPT_C_IO,
2060                 .group  = FIO_OPT_G_INVALID,
2061         },
2062         {
2063                 .name   = "number_ios",
2064                 .lname  = "Number of IOs to perform",
2065                 .type   = FIO_OPT_STR_VAL,
2066                 .off1   = offsetof(struct thread_options, number_ios),
2067                 .help   = "Force job completion after this number of IOs",
2068                 .def    = "0",
2069                 .category = FIO_OPT_C_IO,
2070                 .group  = FIO_OPT_G_INVALID,
2071         },
2072         {
2073                 .name   = "bs",
2074                 .lname  = "Block size",
2075                 .alias  = "blocksize",
2076                 .type   = FIO_OPT_ULL,
2077                 .off1   = offsetof(struct thread_options, bs[DDIR_READ]),
2078                 .off2   = offsetof(struct thread_options, bs[DDIR_WRITE]),
2079                 .off3   = offsetof(struct thread_options, bs[DDIR_TRIM]),
2080                 .minval = 1,
2081                 .help   = "Block size unit",
2082                 .def    = "4096",
2083                 .parent = "rw",
2084                 .hide   = 1,
2085                 .interval = 512,
2086                 .category = FIO_OPT_C_IO,
2087                 .group  = FIO_OPT_G_INVALID,
2088         },
2089         {
2090                 .name   = "ba",
2091                 .lname  = "Block size align",
2092                 .alias  = "blockalign",
2093                 .type   = FIO_OPT_ULL,
2094                 .off1   = offsetof(struct thread_options, ba[DDIR_READ]),
2095                 .off2   = offsetof(struct thread_options, ba[DDIR_WRITE]),
2096                 .off3   = offsetof(struct thread_options, ba[DDIR_TRIM]),
2097                 .minval = 1,
2098                 .help   = "IO block offset alignment",
2099                 .parent = "rw",
2100                 .hide   = 1,
2101                 .interval = 512,
2102                 .category = FIO_OPT_C_IO,
2103                 .group  = FIO_OPT_G_INVALID,
2104         },
2105         {
2106                 .name   = "bsrange",
2107                 .lname  = "Block size range",
2108                 .alias  = "blocksize_range",
2109                 .type   = FIO_OPT_RANGE,
2110                 .off1   = offsetof(struct thread_options, min_bs[DDIR_READ]),
2111                 .off2   = offsetof(struct thread_options, max_bs[DDIR_READ]),
2112                 .off3   = offsetof(struct thread_options, min_bs[DDIR_WRITE]),
2113                 .off4   = offsetof(struct thread_options, max_bs[DDIR_WRITE]),
2114                 .off5   = offsetof(struct thread_options, min_bs[DDIR_TRIM]),
2115                 .off6   = offsetof(struct thread_options, max_bs[DDIR_TRIM]),
2116                 .minval = 1,
2117                 .help   = "Set block size range (in more detail than bs)",
2118                 .parent = "rw",
2119                 .hide   = 1,
2120                 .interval = 4096,
2121                 .category = FIO_OPT_C_IO,
2122                 .group  = FIO_OPT_G_INVALID,
2123         },
2124         {
2125                 .name   = "bssplit",
2126                 .lname  = "Block size split",
2127                 .type   = FIO_OPT_STR_ULL,
2128                 .cb     = str_bssplit_cb,
2129                 .off1   = offsetof(struct thread_options, bssplit),
2130                 .help   = "Set a specific mix of block sizes",
2131                 .parent = "rw",
2132                 .hide   = 1,
2133                 .category = FIO_OPT_C_IO,
2134                 .group  = FIO_OPT_G_INVALID,
2135         },
2136         {
2137                 .name   = "bs_unaligned",
2138                 .lname  = "Block size unaligned",
2139                 .alias  = "blocksize_unaligned",
2140                 .type   = FIO_OPT_STR_SET,
2141                 .off1   = offsetof(struct thread_options, bs_unaligned),
2142                 .help   = "Don't sector align IO buffer sizes",
2143                 .parent = "rw",
2144                 .hide   = 1,
2145                 .category = FIO_OPT_C_IO,
2146                 .group  = FIO_OPT_G_INVALID,
2147         },
2148         {
2149                 .name   = "bs_is_seq_rand",
2150                 .lname  = "Block size division is seq/random (not read/write)",
2151                 .type   = FIO_OPT_BOOL,
2152                 .off1   = offsetof(struct thread_options, bs_is_seq_rand),
2153                 .help   = "Consider any blocksize setting to be sequential,random",
2154                 .def    = "0",
2155                 .parent = "blocksize",
2156                 .category = FIO_OPT_C_IO,
2157                 .group  = FIO_OPT_G_INVALID,
2158         },
2159         {
2160                 .name   = "randrepeat",
2161                 .lname  = "Random repeatable",
2162                 .type   = FIO_OPT_BOOL,
2163                 .off1   = offsetof(struct thread_options, rand_repeatable),
2164                 .help   = "Use repeatable random IO pattern",
2165                 .def    = "1",
2166                 .parent = "rw",
2167                 .hide   = 1,
2168                 .category = FIO_OPT_C_IO,
2169                 .group  = FIO_OPT_G_RANDOM,
2170         },
2171         {
2172                 .name   = "randseed",
2173                 .lname  = "The random generator seed",
2174                 .type   = FIO_OPT_STR_VAL,
2175                 .off1   = offsetof(struct thread_options, rand_seed),
2176                 .help   = "Set the random generator seed value",
2177                 .def    = "0x89",
2178                 .parent = "rw",
2179                 .category = FIO_OPT_C_IO,
2180                 .group  = FIO_OPT_G_RANDOM,
2181         },
2182         {
2183                 .name   = "use_os_rand",
2184                 .lname  = "Use OS random",
2185                 .type   = FIO_OPT_DEPRECATED,
2186                 .off1   = offsetof(struct thread_options, dep_use_os_rand),
2187                 .category = FIO_OPT_C_IO,
2188                 .group  = FIO_OPT_G_RANDOM,
2189         },
2190         {
2191                 .name   = "norandommap",
2192                 .lname  = "No randommap",
2193                 .type   = FIO_OPT_STR_SET,
2194                 .off1   = offsetof(struct thread_options, norandommap),
2195                 .help   = "Accept potential duplicate random blocks",
2196                 .parent = "rw",
2197                 .hide   = 1,
2198                 .hide_on_set = 1,
2199                 .category = FIO_OPT_C_IO,
2200                 .group  = FIO_OPT_G_RANDOM,
2201         },
2202         {
2203                 .name   = "softrandommap",
2204                 .lname  = "Soft randommap",
2205                 .type   = FIO_OPT_BOOL,
2206                 .off1   = offsetof(struct thread_options, softrandommap),
2207                 .help   = "Set norandommap if randommap allocation fails",
2208                 .parent = "norandommap",
2209                 .hide   = 1,
2210                 .def    = "0",
2211                 .category = FIO_OPT_C_IO,
2212                 .group  = FIO_OPT_G_RANDOM,
2213         },
2214         {
2215                 .name   = "random_generator",
2216                 .lname  = "Random Generator",
2217                 .type   = FIO_OPT_STR,
2218                 .off1   = offsetof(struct thread_options, random_generator),
2219                 .help   = "Type of random number generator to use",
2220                 .def    = "tausworthe",
2221                 .posval = {
2222                           { .ival = "tausworthe",
2223                             .oval = FIO_RAND_GEN_TAUSWORTHE,
2224                             .help = "Strong Tausworthe generator",
2225                           },
2226                           { .ival = "lfsr",
2227                             .oval = FIO_RAND_GEN_LFSR,
2228                             .help = "Variable length LFSR",
2229                           },
2230                           {
2231                             .ival = "tausworthe64",
2232                             .oval = FIO_RAND_GEN_TAUSWORTHE64,
2233                             .help = "64-bit Tausworthe variant",
2234                           },
2235                 },
2236                 .category = FIO_OPT_C_IO,
2237                 .group  = FIO_OPT_G_RANDOM,
2238         },
2239         {
2240                 .name   = "random_distribution",
2241                 .lname  = "Random Distribution",
2242                 .type   = FIO_OPT_STR,
2243                 .off1   = offsetof(struct thread_options, random_distribution),
2244                 .cb     = str_random_distribution_cb,
2245                 .help   = "Random offset distribution generator",
2246                 .def    = "random",
2247                 .posval = {
2248                           { .ival = "random",
2249                             .oval = FIO_RAND_DIST_RANDOM,
2250                             .help = "Completely random",
2251                           },
2252                           { .ival = "zipf",
2253                             .oval = FIO_RAND_DIST_ZIPF,
2254                             .help = "Zipf distribution",
2255                           },
2256                           { .ival = "pareto",
2257                             .oval = FIO_RAND_DIST_PARETO,
2258                             .help = "Pareto distribution",
2259                           },
2260                           { .ival = "normal",
2261                             .oval = FIO_RAND_DIST_GAUSS,
2262                             .help = "Normal (Gaussian) distribution",
2263                           },
2264                           { .ival = "zoned",
2265                             .oval = FIO_RAND_DIST_ZONED,
2266                             .help = "Zoned random distribution",
2267                           },
2268                           { .ival = "zoned_abs",
2269                             .oval = FIO_RAND_DIST_ZONED_ABS,
2270                             .help = "Zoned absolute random distribution",
2271                           },
2272                 },
2273                 .category = FIO_OPT_C_IO,
2274                 .group  = FIO_OPT_G_RANDOM,
2275         },
2276         {
2277                 .name   = "percentage_random",
2278                 .lname  = "Percentage Random",
2279                 .type   = FIO_OPT_INT,
2280                 .off1   = offsetof(struct thread_options, perc_rand[DDIR_READ]),
2281                 .off2   = offsetof(struct thread_options, perc_rand[DDIR_WRITE]),
2282                 .off3   = offsetof(struct thread_options, perc_rand[DDIR_TRIM]),
2283                 .maxval = 100,
2284                 .help   = "Percentage of seq/random mix that should be random",
2285                 .def    = "100,100,100",
2286                 .interval = 5,
2287                 .inverse = "percentage_sequential",
2288                 .category = FIO_OPT_C_IO,
2289                 .group  = FIO_OPT_G_RANDOM,
2290         },
2291         {
2292                 .name   = "percentage_sequential",
2293                 .lname  = "Percentage Sequential",
2294                 .type   = FIO_OPT_DEPRECATED,
2295                 .category = FIO_OPT_C_IO,
2296                 .group  = FIO_OPT_G_RANDOM,
2297         },
2298         {
2299                 .name   = "allrandrepeat",
2300                 .lname  = "All Random Repeat",
2301                 .type   = FIO_OPT_BOOL,
2302                 .off1   = offsetof(struct thread_options, allrand_repeatable),
2303                 .help   = "Use repeatable random numbers for everything",
2304                 .def    = "0",
2305                 .category = FIO_OPT_C_IO,
2306                 .group  = FIO_OPT_G_RANDOM,
2307         },
2308         {
2309                 .name   = "nrfiles",
2310                 .lname  = "Number of files",
2311                 .alias  = "nr_files",
2312                 .type   = FIO_OPT_INT,
2313                 .off1   = offsetof(struct thread_options, nr_files),
2314                 .help   = "Split job workload between this number of files",
2315                 .def    = "1",
2316                 .interval = 1,
2317                 .category = FIO_OPT_C_FILE,
2318                 .group  = FIO_OPT_G_INVALID,
2319         },
2320         {
2321                 .name   = "openfiles",
2322                 .lname  = "Number of open files",
2323                 .type   = FIO_OPT_INT,
2324                 .off1   = offsetof(struct thread_options, open_files),
2325                 .help   = "Number of files to keep open at the same time",
2326                 .category = FIO_OPT_C_FILE,
2327                 .group  = FIO_OPT_G_INVALID,
2328         },
2329         {
2330                 .name   = "file_service_type",
2331                 .lname  = "File service type",
2332                 .type   = FIO_OPT_STR,
2333                 .cb     = str_fst_cb,
2334                 .off1   = offsetof(struct thread_options, file_service_type),
2335                 .help   = "How to select which file to service next",
2336                 .def    = "roundrobin",
2337                 .category = FIO_OPT_C_FILE,
2338                 .group  = FIO_OPT_G_INVALID,
2339                 .posval = {
2340                           { .ival = "random",
2341                             .oval = FIO_FSERVICE_RANDOM,
2342                             .help = "Choose a file at random (uniform)",
2343                           },
2344                           { .ival = "zipf",
2345                             .oval = FIO_FSERVICE_ZIPF,
2346                             .help = "Zipf randomized",
2347                           },
2348                           { .ival = "pareto",
2349                             .oval = FIO_FSERVICE_PARETO,
2350                             .help = "Pareto randomized",
2351                           },
2352                           { .ival = "normal",
2353                             .oval = FIO_FSERVICE_GAUSS,
2354                             .help = "Normal (Gaussian) randomized",
2355                           },
2356                           { .ival = "gauss",
2357                             .oval = FIO_FSERVICE_GAUSS,
2358                             .help = "Alias for normal",
2359                           },
2360                           { .ival = "roundrobin",
2361                             .oval = FIO_FSERVICE_RR,
2362                             .help = "Round robin select files",
2363                           },
2364                           { .ival = "sequential",
2365                             .oval = FIO_FSERVICE_SEQ,
2366                             .help = "Finish one file before moving to the next",
2367                           },
2368                 },
2369                 .parent = "nrfiles",
2370                 .hide   = 1,
2371         },
2372 #ifdef FIO_HAVE_ANY_FALLOCATE
2373         {
2374                 .name   = "fallocate",
2375                 .lname  = "Fallocate",
2376                 .type   = FIO_OPT_STR,
2377                 .off1   = offsetof(struct thread_options, fallocate_mode),
2378                 .help   = "Whether pre-allocation is performed when laying out files",
2379                 .def    = "native",
2380                 .category = FIO_OPT_C_FILE,
2381                 .group  = FIO_OPT_G_INVALID,
2382                 .posval = {
2383                           { .ival = "none",
2384                             .oval = FIO_FALLOCATE_NONE,
2385                             .help = "Do not pre-allocate space",
2386                           },
2387                           { .ival = "native",
2388                             .oval = FIO_FALLOCATE_NATIVE,
2389                             .help = "Use native pre-allocation if possible",
2390                           },
2391 #ifdef CONFIG_POSIX_FALLOCATE
2392                           { .ival = "posix",
2393                             .oval = FIO_FALLOCATE_POSIX,
2394                             .help = "Use posix_fallocate()",
2395                           },
2396 #endif
2397 #ifdef CONFIG_LINUX_FALLOCATE
2398                           { .ival = "keep",
2399                             .oval = FIO_FALLOCATE_KEEP_SIZE,
2400                             .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
2401                           },
2402 #endif
2403                           /* Compatibility with former boolean values */
2404                           { .ival = "0",
2405                             .oval = FIO_FALLOCATE_NONE,
2406                             .help = "Alias for 'none'",
2407                           },
2408 #ifdef CONFIG_POSIX_FALLOCATE
2409                           { .ival = "1",
2410                             .oval = FIO_FALLOCATE_POSIX,
2411                             .help = "Alias for 'posix'",
2412                           },
2413 #endif
2414                 },
2415         },
2416 #else   /* FIO_HAVE_ANY_FALLOCATE */
2417         {
2418                 .name   = "fallocate",
2419                 .lname  = "Fallocate",
2420                 .type   = FIO_OPT_UNSUPPORTED,
2421                 .help   = "Your platform does not support fallocate",
2422         },
2423 #endif /* FIO_HAVE_ANY_FALLOCATE */
2424         {
2425                 .name   = "fadvise_hint",
2426                 .lname  = "Fadvise hint",
2427                 .type   = FIO_OPT_STR,
2428                 .off1   = offsetof(struct thread_options, fadvise_hint),
2429                 .posval = {
2430                           { .ival = "0",
2431                             .oval = F_ADV_NONE,
2432                             .help = "Don't issue fadvise/madvise",
2433                           },
2434                           { .ival = "1",
2435                             .oval = F_ADV_TYPE,
2436                             .help = "Advise using fio IO pattern",
2437                           },
2438                           { .ival = "random",
2439                             .oval = F_ADV_RANDOM,
2440                             .help = "Advise using FADV_RANDOM",
2441                           },
2442                           { .ival = "sequential",
2443                             .oval = F_ADV_SEQUENTIAL,
2444                             .help = "Advise using FADV_SEQUENTIAL",
2445                           },
2446                 },
2447                 .help   = "Use fadvise() to advise the kernel on IO pattern",
2448                 .def    = "1",
2449                 .category = FIO_OPT_C_FILE,
2450                 .group  = FIO_OPT_G_INVALID,
2451         },
2452         {
2453                 .name   = "fsync",
2454                 .lname  = "Fsync",
2455                 .type   = FIO_OPT_INT,
2456                 .off1   = offsetof(struct thread_options, fsync_blocks),
2457                 .help   = "Issue fsync for writes every given number of blocks",
2458                 .def    = "0",
2459                 .interval = 1,
2460                 .category = FIO_OPT_C_FILE,
2461                 .group  = FIO_OPT_G_INVALID,
2462         },
2463         {
2464                 .name   = "fdatasync",
2465                 .lname  = "Fdatasync",
2466                 .type   = FIO_OPT_INT,
2467                 .off1   = offsetof(struct thread_options, fdatasync_blocks),
2468                 .help   = "Issue fdatasync for writes every given number of blocks",
2469                 .def    = "0",
2470                 .interval = 1,
2471                 .category = FIO_OPT_C_FILE,
2472                 .group  = FIO_OPT_G_INVALID,
2473         },
2474         {
2475                 .name   = "write_barrier",
2476                 .lname  = "Write barrier",
2477                 .type   = FIO_OPT_INT,
2478                 .off1   = offsetof(struct thread_options, barrier_blocks),
2479                 .help   = "Make every Nth write a barrier write",
2480                 .def    = "0",
2481                 .interval = 1,
2482                 .category = FIO_OPT_C_IO,
2483                 .group  = FIO_OPT_G_INVALID,
2484         },
2485 #ifdef CONFIG_SYNC_FILE_RANGE
2486         {
2487                 .name   = "sync_file_range",
2488                 .lname  = "Sync file range",
2489                 .posval = {
2490                           { .ival = "wait_before",
2491                             .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
2492                             .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
2493                             .orval  = 1,
2494                           },
2495                           { .ival = "write",
2496                             .oval = SYNC_FILE_RANGE_WRITE,
2497                             .help = "SYNC_FILE_RANGE_WRITE",
2498                             .orval  = 1,
2499                           },
2500                           {
2501                             .ival = "wait_after",
2502                             .oval = SYNC_FILE_RANGE_WAIT_AFTER,
2503                             .help = "SYNC_FILE_RANGE_WAIT_AFTER",
2504                             .orval  = 1,
2505                           },
2506                 },
2507                 .type   = FIO_OPT_STR_MULTI,
2508                 .cb     = str_sfr_cb,
2509                 .off1   = offsetof(struct thread_options, sync_file_range),
2510                 .help   = "Use sync_file_range()",
2511                 .category = FIO_OPT_C_FILE,
2512                 .group  = FIO_OPT_G_INVALID,
2513         },
2514 #else
2515         {
2516                 .name   = "sync_file_range",
2517                 .lname  = "Sync file range",
2518                 .type   = FIO_OPT_UNSUPPORTED,
2519                 .help   = "Your platform does not support sync_file_range",
2520         },
2521 #endif
2522         {
2523                 .name   = "direct",
2524                 .lname  = "Direct I/O",
2525                 .type   = FIO_OPT_BOOL,
2526                 .off1   = offsetof(struct thread_options, odirect),
2527                 .help   = "Use O_DIRECT IO (negates buffered)",
2528                 .def    = "0",
2529                 .inverse = "buffered",
2530                 .category = FIO_OPT_C_IO,
2531                 .group  = FIO_OPT_G_IO_TYPE,
2532         },
2533         {
2534                 .name   = "atomic",
2535                 .lname  = "Atomic I/O",
2536                 .type   = FIO_OPT_BOOL,
2537                 .off1   = offsetof(struct thread_options, oatomic),
2538                 .help   = "Use Atomic IO with O_DIRECT (implies O_DIRECT)",
2539                 .def    = "0",
2540                 .category = FIO_OPT_C_IO,
2541                 .group  = FIO_OPT_G_IO_TYPE,
2542         },
2543         {
2544                 .name   = "buffered",
2545                 .lname  = "Buffered I/O",
2546                 .type   = FIO_OPT_BOOL,
2547                 .off1   = offsetof(struct thread_options, odirect),
2548                 .neg    = 1,
2549                 .help   = "Use buffered IO (negates direct)",
2550                 .def    = "1",
2551                 .inverse = "direct",
2552                 .category = FIO_OPT_C_IO,
2553                 .group  = FIO_OPT_G_IO_TYPE,
2554         },
2555         {
2556                 .name   = "overwrite",
2557                 .lname  = "Overwrite",
2558                 .type   = FIO_OPT_BOOL,
2559                 .off1   = offsetof(struct thread_options, overwrite),
2560                 .help   = "When writing, set whether to overwrite current data",
2561                 .def    = "0",
2562                 .category = FIO_OPT_C_FILE,
2563                 .group  = FIO_OPT_G_INVALID,
2564         },
2565         {
2566                 .name   = "loops",
2567                 .lname  = "Loops",
2568                 .type   = FIO_OPT_INT,
2569                 .off1   = offsetof(struct thread_options, loops),
2570                 .help   = "Number of times to run the job",
2571                 .def    = "1",
2572                 .interval = 1,
2573                 .category = FIO_OPT_C_GENERAL,
2574                 .group  = FIO_OPT_G_RUNTIME,
2575         },
2576         {
2577                 .name   = "numjobs",
2578                 .lname  = "Number of jobs",
2579                 .type   = FIO_OPT_INT,
2580                 .off1   = offsetof(struct thread_options, numjobs),
2581                 .help   = "Duplicate this job this many times",
2582                 .def    = "1",
2583                 .interval = 1,
2584                 .category = FIO_OPT_C_GENERAL,
2585                 .group  = FIO_OPT_G_RUNTIME,
2586         },
2587         {
2588                 .name   = "startdelay",
2589                 .lname  = "Start delay",
2590                 .type   = FIO_OPT_STR_VAL_TIME,
2591                 .off1   = offsetof(struct thread_options, start_delay),
2592                 .off2   = offsetof(struct thread_options, start_delay_high),
2593                 .help   = "Only start job when this period has passed",
2594                 .def    = "0",
2595                 .is_seconds = 1,
2596                 .is_time = 1,
2597                 .category = FIO_OPT_C_GENERAL,
2598                 .group  = FIO_OPT_G_RUNTIME,
2599         },
2600         {
2601                 .name   = "runtime",
2602                 .lname  = "Runtime",
2603                 .alias  = "timeout",
2604                 .type   = FIO_OPT_STR_VAL_TIME,
2605                 .off1   = offsetof(struct thread_options, timeout),
2606                 .help   = "Stop workload when this amount of time has passed",
2607                 .def    = "0",
2608                 .is_seconds = 1,
2609                 .is_time = 1,
2610                 .category = FIO_OPT_C_GENERAL,
2611                 .group  = FIO_OPT_G_RUNTIME,
2612         },
2613         {
2614                 .name   = "time_based",
2615                 .lname  = "Time based",
2616                 .type   = FIO_OPT_STR_SET,
2617                 .off1   = offsetof(struct thread_options, time_based),
2618                 .help   = "Keep running until runtime/timeout is met",
2619                 .category = FIO_OPT_C_GENERAL,
2620                 .group  = FIO_OPT_G_RUNTIME,
2621         },
2622         {
2623                 .name   = "verify_only",
2624                 .lname  = "Verify only",
2625                 .type   = FIO_OPT_STR_SET,
2626                 .off1   = offsetof(struct thread_options, verify_only),
2627                 .help   = "Verifies previously written data is still valid",
2628                 .category = FIO_OPT_C_GENERAL,
2629                 .group  = FIO_OPT_G_RUNTIME,
2630         },
2631         {
2632                 .name   = "ramp_time",
2633                 .lname  = "Ramp time",
2634                 .type   = FIO_OPT_STR_VAL_TIME,
2635                 .off1   = offsetof(struct thread_options, ramp_time),
2636                 .help   = "Ramp up time before measuring performance",
2637                 .is_seconds = 1,
2638                 .is_time = 1,
2639                 .category = FIO_OPT_C_GENERAL,
2640                 .group  = FIO_OPT_G_RUNTIME,
2641         },
2642         {
2643                 .name   = "clocksource",
2644                 .lname  = "Clock source",
2645                 .type   = FIO_OPT_STR,
2646                 .cb     = fio_clock_source_cb,
2647                 .off1   = offsetof(struct thread_options, clocksource),
2648                 .help   = "What type of timing source to use",
2649                 .category = FIO_OPT_C_GENERAL,
2650                 .group  = FIO_OPT_G_CLOCK,
2651                 .posval = {
2652 #ifdef CONFIG_GETTIMEOFDAY
2653                           { .ival = "gettimeofday",
2654                             .oval = CS_GTOD,
2655                             .help = "Use gettimeofday(2) for timing",
2656                           },
2657 #endif
2658 #ifdef CONFIG_CLOCK_GETTIME
2659                           { .ival = "clock_gettime",
2660                             .oval = CS_CGETTIME,
2661                             .help = "Use clock_gettime(2) for timing",
2662                           },
2663 #endif
2664 #ifdef ARCH_HAVE_CPU_CLOCK
2665                           { .ival = "cpu",
2666                             .oval = CS_CPUCLOCK,
2667                             .help = "Use CPU private clock",
2668                           },
2669 #endif
2670                 },
2671         },
2672         {
2673                 .name   = "mem",
2674                 .alias  = "iomem",
2675                 .lname  = "I/O Memory",
2676                 .type   = FIO_OPT_STR,
2677                 .cb     = str_mem_cb,
2678                 .off1   = offsetof(struct thread_options, mem_type),
2679                 .help   = "Backing type for IO buffers",
2680                 .def    = "malloc",
2681                 .category = FIO_OPT_C_IO,
2682                 .group  = FIO_OPT_G_INVALID,
2683                 .posval = {
2684                           { .ival = "malloc",
2685                             .oval = MEM_MALLOC,
2686                             .help = "Use malloc(3) for IO buffers",
2687                           },
2688 #ifndef CONFIG_NO_SHM
2689                           { .ival = "shm",
2690                             .oval = MEM_SHM,
2691                             .help = "Use shared memory segments for IO buffers",
2692                           },
2693 #ifdef FIO_HAVE_HUGETLB
2694                           { .ival = "shmhuge",
2695                             .oval = MEM_SHMHUGE,
2696                             .help = "Like shm, but use huge pages",
2697                           },
2698 #endif
2699 #endif
2700                           { .ival = "mmap",
2701                             .oval = MEM_MMAP,
2702                             .help = "Use mmap(2) (file or anon) for IO buffers",
2703                           },
2704                           { .ival = "mmapshared",
2705                             .oval = MEM_MMAPSHARED,
2706                             .help = "Like mmap, but use the shared flag",
2707                           },
2708 #ifdef FIO_HAVE_HUGETLB
2709                           { .ival = "mmaphuge",
2710                             .oval = MEM_MMAPHUGE,
2711                             .help = "Like mmap, but use huge pages",
2712                           },
2713 #endif
2714 #ifdef CONFIG_CUDA
2715                           { .ival = "cudamalloc",
2716                             .oval = MEM_CUDA_MALLOC,
2717                             .help = "Allocate GPU device memory for GPUDirect RDMA",
2718                           },
2719 #endif
2720                   },
2721         },
2722         {
2723                 .name   = "iomem_align",
2724                 .alias  = "mem_align",
2725                 .lname  = "I/O memory alignment",
2726                 .type   = FIO_OPT_INT,
2727                 .off1   = offsetof(struct thread_options, mem_align),
2728                 .minval = 0,
2729                 .help   = "IO memory buffer offset alignment",
2730                 .def    = "0",
2731                 .parent = "iomem",
2732                 .hide   = 1,
2733                 .category = FIO_OPT_C_IO,
2734                 .group  = FIO_OPT_G_INVALID,
2735         },
2736         {
2737                 .name   = "verify",
2738                 .lname  = "Verify",
2739                 .type   = FIO_OPT_STR,
2740                 .off1   = offsetof(struct thread_options, verify),
2741                 .help   = "Verify data written",
2742                 .def    = "0",
2743                 .category = FIO_OPT_C_IO,
2744                 .group  = FIO_OPT_G_VERIFY,
2745                 .posval = {
2746                           { .ival = "0",
2747                             .oval = VERIFY_NONE,
2748                             .help = "Don't do IO verification",
2749                           },
2750                           { .ival = "md5",
2751                             .oval = VERIFY_MD5,
2752                             .help = "Use md5 checksums for verification",
2753                           },
2754                           { .ival = "crc64",
2755                             .oval = VERIFY_CRC64,
2756                             .help = "Use crc64 checksums for verification",
2757                           },
2758                           { .ival = "crc32",
2759                             .oval = VERIFY_CRC32,
2760                             .help = "Use crc32 checksums for verification",
2761                           },
2762                           { .ival = "crc32c-intel",
2763                             .oval = VERIFY_CRC32C,
2764                             .help = "Use crc32c checksums for verification (hw assisted, if available)",
2765                           },
2766                           { .ival = "crc32c",
2767                             .oval = VERIFY_CRC32C,
2768                             .help = "Use crc32c checksums for verification (hw assisted, if available)",
2769                           },
2770                           { .ival = "crc16",
2771                             .oval = VERIFY_CRC16,
2772                             .help = "Use crc16 checksums for verification",
2773                           },
2774                           { .ival = "crc7",
2775                             .oval = VERIFY_CRC7,
2776                             .help = "Use crc7 checksums for verification",
2777                           },
2778                           { .ival = "sha1",
2779                             .oval = VERIFY_SHA1,
2780                             .help = "Use sha1 checksums for verification",
2781                           },
2782                           { .ival = "sha256",
2783                             .oval = VERIFY_SHA256,
2784                             .help = "Use sha256 checksums for verification",
2785                           },
2786                           { .ival = "sha512",
2787                             .oval = VERIFY_SHA512,
2788                             .help = "Use sha512 checksums for verification",
2789                           },
2790                           { .ival = "sha3-224",
2791                             .oval = VERIFY_SHA3_224,
2792                             .help = "Use sha3-224 checksums for verification",
2793                           },
2794                           { .ival = "sha3-256",
2795                             .oval = VERIFY_SHA3_256,
2796                             .help = "Use sha3-256 checksums for verification",
2797                           },
2798                           { .ival = "sha3-384",
2799                             .oval = VERIFY_SHA3_384,
2800                             .help = "Use sha3-384 checksums for verification",
2801                           },
2802                           { .ival = "sha3-512",
2803                             .oval = VERIFY_SHA3_512,
2804                             .help = "Use sha3-512 checksums for verification",
2805                           },
2806                           { .ival = "xxhash",
2807                             .oval = VERIFY_XXHASH,
2808                             .help = "Use xxhash checksums for verification",
2809                           },
2810                           /* Meta information was included into verify_header,
2811                            * 'meta' verification is implied by default. */
2812                           { .ival = "meta",
2813                             .oval = VERIFY_HDR_ONLY,
2814                             .help = "Use io information for verification. "
2815                                     "Now is implied by default, thus option is obsolete, "
2816                                     "don't use it",
2817                           },
2818                           { .ival = "pattern",
2819                             .oval = VERIFY_PATTERN_NO_HDR,
2820                             .help = "Verify strict pattern",
2821                           },
2822                           {
2823                             .ival = "null",
2824                             .oval = VERIFY_NULL,
2825                             .help = "Pretend to verify",
2826                           },
2827                 },
2828         },
2829         {
2830                 .name   = "do_verify",
2831                 .lname  = "Perform verify step",
2832                 .type   = FIO_OPT_BOOL,
2833                 .off1   = offsetof(struct thread_options, do_verify),
2834                 .help   = "Run verification stage after write",
2835                 .def    = "1",
2836                 .parent = "verify",
2837                 .hide   = 1,
2838                 .category = FIO_OPT_C_IO,
2839                 .group  = FIO_OPT_G_VERIFY,
2840         },
2841         {
2842                 .name   = "verifysort",
2843                 .lname  = "Verify sort",
2844                 .type   = FIO_OPT_SOFT_DEPRECATED,
2845                 .category = FIO_OPT_C_IO,
2846                 .group  = FIO_OPT_G_VERIFY,
2847         },
2848         {
2849                 .name   = "verifysort_nr",
2850                 .lname  = "Verify Sort Nr",
2851                 .type   = FIO_OPT_SOFT_DEPRECATED,
2852                 .category = FIO_OPT_C_IO,
2853                 .group  = FIO_OPT_G_VERIFY,
2854         },
2855         {
2856                 .name   = "verify_interval",
2857                 .lname  = "Verify interval",
2858                 .type   = FIO_OPT_INT,
2859                 .off1   = offsetof(struct thread_options, verify_interval),
2860                 .minval = 2 * sizeof(struct verify_header),
2861                 .help   = "Store verify buffer header every N bytes",
2862                 .parent = "verify",
2863                 .hide   = 1,
2864                 .interval = 2 * sizeof(struct verify_header),
2865                 .category = FIO_OPT_C_IO,
2866                 .group  = FIO_OPT_G_VERIFY,
2867         },
2868         {
2869                 .name   = "verify_offset",
2870                 .lname  = "Verify offset",
2871                 .type   = FIO_OPT_INT,
2872                 .help   = "Offset verify header location by N bytes",
2873                 .off1   = offsetof(struct thread_options, verify_offset),
2874                 .minval = sizeof(struct verify_header),
2875                 .parent = "verify",
2876                 .hide   = 1,
2877                 .category = FIO_OPT_C_IO,
2878                 .group  = FIO_OPT_G_VERIFY,
2879         },
2880         {
2881                 .name   = "verify_pattern",
2882                 .lname  = "Verify pattern",
2883                 .type   = FIO_OPT_STR,
2884                 .cb     = str_verify_pattern_cb,
2885                 .off1   = offsetof(struct thread_options, verify_pattern),
2886                 .help   = "Fill pattern for IO buffers",
2887                 .parent = "verify",
2888                 .hide   = 1,
2889                 .category = FIO_OPT_C_IO,
2890                 .group  = FIO_OPT_G_VERIFY,
2891         },
2892         {
2893                 .name   = "verify_fatal",
2894                 .lname  = "Verify fatal",
2895                 .type   = FIO_OPT_BOOL,
2896                 .off1   = offsetof(struct thread_options, verify_fatal),
2897                 .def    = "0",
2898                 .help   = "Exit on a single verify failure, don't continue",
2899                 .parent = "verify",
2900                 .hide   = 1,
2901                 .category = FIO_OPT_C_IO,
2902                 .group  = FIO_OPT_G_VERIFY,
2903         },
2904         {
2905                 .name   = "verify_dump",
2906                 .lname  = "Verify dump",
2907                 .type   = FIO_OPT_BOOL,
2908                 .off1   = offsetof(struct thread_options, verify_dump),
2909                 .def    = "0",
2910                 .help   = "Dump contents of good and bad blocks on failure",
2911                 .parent = "verify",
2912                 .hide   = 1,
2913                 .category = FIO_OPT_C_IO,
2914                 .group  = FIO_OPT_G_VERIFY,
2915         },
2916         {
2917                 .name   = "verify_async",
2918                 .lname  = "Verify asynchronously",
2919                 .type   = FIO_OPT_INT,
2920                 .off1   = offsetof(struct thread_options, verify_async),
2921                 .def    = "0",
2922                 .help   = "Number of async verifier threads to use",
2923                 .parent = "verify",
2924                 .hide   = 1,
2925                 .category = FIO_OPT_C_IO,
2926                 .group  = FIO_OPT_G_VERIFY,
2927         },
2928         {
2929                 .name   = "verify_backlog",
2930                 .lname  = "Verify backlog",
2931                 .type   = FIO_OPT_STR_VAL,
2932                 .off1   = offsetof(struct thread_options, verify_backlog),
2933                 .help   = "Verify after this number of blocks are written",
2934                 .parent = "verify",
2935                 .hide   = 1,
2936                 .category = FIO_OPT_C_IO,
2937                 .group  = FIO_OPT_G_VERIFY,
2938         },
2939         {
2940                 .name   = "verify_backlog_batch",
2941                 .lname  = "Verify backlog batch",
2942                 .type   = FIO_OPT_INT,
2943                 .off1   = offsetof(struct thread_options, verify_batch),
2944                 .help   = "Verify this number of IO blocks",
2945                 .parent = "verify",
2946                 .hide   = 1,
2947                 .category = FIO_OPT_C_IO,
2948                 .group  = FIO_OPT_G_VERIFY,
2949         },
2950 #ifdef FIO_HAVE_CPU_AFFINITY
2951         {
2952                 .name   = "verify_async_cpus",
2953                 .lname  = "Async verify CPUs",
2954                 .type   = FIO_OPT_STR,
2955                 .cb     = str_verify_cpus_allowed_cb,
2956                 .off1   = offsetof(struct thread_options, verify_cpumask),
2957                 .help   = "Set CPUs allowed for async verify threads",
2958                 .parent = "verify_async",
2959                 .hide   = 1,
2960                 .category = FIO_OPT_C_IO,
2961                 .group  = FIO_OPT_G_VERIFY,
2962         },
2963 #else
2964         {
2965                 .name   = "verify_async_cpus",
2966                 .lname  = "Async verify CPUs",
2967                 .type   = FIO_OPT_UNSUPPORTED,
2968                 .help   = "Your platform does not support CPU affinities",
2969         },
2970 #endif
2971         {
2972                 .name   = "experimental_verify",
2973                 .lname  = "Experimental Verify",
2974                 .off1   = offsetof(struct thread_options, experimental_verify),
2975                 .type   = FIO_OPT_BOOL,
2976                 .help   = "Enable experimental verification",
2977                 .parent = "verify",
2978                 .category = FIO_OPT_C_IO,
2979                 .group  = FIO_OPT_G_VERIFY,
2980         },
2981         {
2982                 .name   = "verify_state_load",
2983                 .lname  = "Load verify state",
2984                 .off1   = offsetof(struct thread_options, verify_state),
2985                 .type   = FIO_OPT_BOOL,
2986                 .help   = "Load verify termination state",
2987                 .parent = "verify",
2988                 .category = FIO_OPT_C_IO,
2989                 .group  = FIO_OPT_G_VERIFY,
2990         },
2991         {
2992                 .name   = "verify_state_save",
2993                 .lname  = "Save verify state",
2994                 .off1   = offsetof(struct thread_options, verify_state_save),
2995                 .type   = FIO_OPT_BOOL,
2996                 .def    = "1",
2997                 .help   = "Save verify state on termination",
2998                 .parent = "verify",
2999                 .category = FIO_OPT_C_IO,
3000                 .group  = FIO_OPT_G_VERIFY,
3001         },
3002 #ifdef FIO_HAVE_TRIM
3003         {
3004                 .name   = "trim_percentage",
3005                 .lname  = "Trim percentage",
3006                 .type   = FIO_OPT_INT,
3007                 .off1   = offsetof(struct thread_options, trim_percentage),
3008                 .minval = 0,
3009                 .maxval = 100,
3010                 .help   = "Number of verify blocks to trim (i.e., discard)",
3011                 .parent = "verify",
3012                 .def    = "0",
3013                 .interval = 1,
3014                 .hide   = 1,
3015                 .category = FIO_OPT_C_IO,
3016                 .group  = FIO_OPT_G_TRIM,
3017         },
3018         {
3019                 .name   = "trim_verify_zero",
3020                 .lname  = "Verify trim zero",
3021                 .type   = FIO_OPT_BOOL,
3022                 .help   = "Verify that trimmed (i.e., discarded) blocks are returned as zeroes",
3023                 .off1   = offsetof(struct thread_options, trim_zero),
3024                 .parent = "trim_percentage",
3025                 .hide   = 1,
3026                 .def    = "1",
3027                 .category = FIO_OPT_C_IO,
3028                 .group  = FIO_OPT_G_TRIM,
3029         },
3030         {
3031                 .name   = "trim_backlog",
3032                 .lname  = "Trim backlog",
3033                 .type   = FIO_OPT_STR_VAL,
3034                 .off1   = offsetof(struct thread_options, trim_backlog),
3035                 .help   = "Trim after this number of blocks are written",
3036                 .parent = "trim_percentage",
3037                 .hide   = 1,
3038                 .interval = 1,
3039                 .category = FIO_OPT_C_IO,
3040                 .group  = FIO_OPT_G_TRIM,
3041         },
3042         {
3043                 .name   = "trim_backlog_batch",
3044                 .lname  = "Trim backlog batch",
3045                 .type   = FIO_OPT_INT,
3046                 .off1   = offsetof(struct thread_options, trim_batch),
3047                 .help   = "Trim this number of IO blocks",
3048                 .parent = "trim_percentage",
3049                 .hide   = 1,
3050                 .interval = 1,
3051                 .category = FIO_OPT_C_IO,
3052                 .group  = FIO_OPT_G_TRIM,
3053         },
3054 #else
3055         {
3056                 .name   = "trim_percentage",
3057                 .lname  = "Trim percentage",
3058                 .type   = FIO_OPT_UNSUPPORTED,
3059                 .help   = "Fio does not support TRIM on your platform",
3060         },
3061         {
3062                 .name   = "trim_verify_zero",
3063                 .lname  = "Verify trim zero",
3064                 .type   = FIO_OPT_UNSUPPORTED,
3065                 .help   = "Fio does not support TRIM on your platform",
3066         },
3067         {
3068                 .name   = "trim_backlog",
3069                 .lname  = "Trim backlog",
3070                 .type   = FIO_OPT_UNSUPPORTED,
3071                 .help   = "Fio does not support TRIM on your platform",
3072         },
3073         {
3074                 .name   = "trim_backlog_batch",
3075                 .lname  = "Trim backlog batch",
3076                 .type   = FIO_OPT_UNSUPPORTED,
3077                 .help   = "Fio does not support TRIM on your platform",
3078         },
3079 #endif
3080         {
3081                 .name   = "write_iolog",
3082                 .lname  = "Write I/O log",
3083                 .type   = FIO_OPT_STR_STORE,
3084                 .off1   = offsetof(struct thread_options, write_iolog_file),
3085                 .help   = "Store IO pattern to file",
3086                 .category = FIO_OPT_C_IO,
3087                 .group  = FIO_OPT_G_IOLOG,
3088         },
3089         {
3090                 .name   = "read_iolog",
3091                 .lname  = "Read I/O log",
3092                 .type   = FIO_OPT_STR_STORE,
3093                 .off1   = offsetof(struct thread_options, read_iolog_file),
3094                 .help   = "Playback IO pattern from file",
3095                 .category = FIO_OPT_C_IO,
3096                 .group  = FIO_OPT_G_IOLOG,
3097         },
3098         {
3099                 .name   = "read_iolog_chunked",
3100                 .lname  = "Read I/O log in parts",
3101                 .type   = FIO_OPT_BOOL,
3102                 .off1   = offsetof(struct thread_options, read_iolog_chunked),
3103                 .def    = "0",
3104                 .parent = "read_iolog",
3105                 .help   = "Parse IO pattern in chunks",
3106                 .category = FIO_OPT_C_IO,
3107                 .group  = FIO_OPT_G_IOLOG,
3108         },
3109         {
3110                 .name   = "replay_no_stall",
3111                 .lname  = "Don't stall on replay",
3112                 .type   = FIO_OPT_BOOL,
3113                 .off1   = offsetof(struct thread_options, no_stall),
3114                 .def    = "0",
3115                 .parent = "read_iolog",
3116                 .hide   = 1,
3117                 .help   = "Playback IO pattern file as fast as possible without stalls",
3118                 .category = FIO_OPT_C_IO,
3119                 .group  = FIO_OPT_G_IOLOG,
3120         },
3121         {
3122                 .name   = "replay_redirect",
3123                 .lname  = "Redirect device for replay",
3124                 .type   = FIO_OPT_STR_STORE,
3125                 .off1   = offsetof(struct thread_options, replay_redirect),
3126                 .parent = "read_iolog",
3127                 .hide   = 1,
3128                 .help   = "Replay all I/O onto this device, regardless of trace device",
3129                 .category = FIO_OPT_C_IO,
3130                 .group  = FIO_OPT_G_IOLOG,
3131         },
3132         {
3133                 .name   = "replay_scale",
3134                 .lname  = "Replace offset scale factor",
3135                 .type   = FIO_OPT_INT,
3136                 .off1   = offsetof(struct thread_options, replay_scale),
3137                 .parent = "read_iolog",
3138                 .def    = "1",
3139                 .help   = "Align offsets to this blocksize",
3140                 .category = FIO_OPT_C_IO,
3141                 .group  = FIO_OPT_G_IOLOG,
3142         },
3143         {
3144                 .name   = "replay_align",
3145                 .lname  = "Replace alignment",
3146                 .type   = FIO_OPT_INT,
3147                 .off1   = offsetof(struct thread_options, replay_align),
3148                 .parent = "read_iolog",
3149                 .help   = "Scale offset down by this factor",
3150                 .category = FIO_OPT_C_IO,
3151                 .group  = FIO_OPT_G_IOLOG,
3152                 .pow2   = 1,
3153         },
3154         {
3155                 .name   = "replay_time_scale",
3156                 .lname  = "Replay Time Scale",
3157                 .type   = FIO_OPT_INT,
3158                 .off1   = offsetof(struct thread_options, replay_time_scale),
3159                 .def    = "100",
3160                 .minval = 1,
3161                 .parent = "read_iolog",
3162                 .hide   = 1,
3163                 .help   = "Scale time for replay events",
3164                 .category = FIO_OPT_C_IO,
3165                 .group  = FIO_OPT_G_IOLOG,
3166         },
3167         {
3168                 .name   = "replay_skip",
3169                 .lname  = "Replay Skip",
3170                 .type   = FIO_OPT_STR,
3171                 .cb     = str_replay_skip_cb,
3172                 .off1   = offsetof(struct thread_options, replay_skip),
3173                 .parent = "read_iolog",
3174                 .help   = "Skip certain IO types (read,write,trim,flush)",
3175                 .category = FIO_OPT_C_IO,
3176                 .group  = FIO_OPT_G_IOLOG,
3177         },
3178         {
3179                 .name   = "exec_prerun",
3180                 .lname  = "Pre-execute runnable",
3181                 .type   = FIO_OPT_STR_STORE,
3182                 .off1   = offsetof(struct thread_options, exec_prerun),
3183                 .help   = "Execute this file prior to running job",
3184                 .category = FIO_OPT_C_GENERAL,
3185                 .group  = FIO_OPT_G_INVALID,
3186         },
3187         {
3188                 .name   = "exec_postrun",
3189                 .lname  = "Post-execute runnable",
3190                 .type   = FIO_OPT_STR_STORE,
3191                 .off1   = offsetof(struct thread_options, exec_postrun),
3192                 .help   = "Execute this file after running job",
3193                 .category = FIO_OPT_C_GENERAL,
3194                 .group  = FIO_OPT_G_INVALID,
3195         },
3196 #ifdef FIO_HAVE_IOSCHED_SWITCH
3197         {
3198                 .name   = "ioscheduler",
3199                 .lname  = "I/O scheduler",
3200                 .type   = FIO_OPT_STR_STORE,
3201                 .off1   = offsetof(struct thread_options, ioscheduler),
3202                 .help   = "Use this IO scheduler on the backing device",
3203                 .category = FIO_OPT_C_FILE,
3204                 .group  = FIO_OPT_G_INVALID,
3205         },
3206 #else
3207         {
3208                 .name   = "ioscheduler",
3209                 .lname  = "I/O scheduler",
3210                 .type   = FIO_OPT_UNSUPPORTED,
3211                 .help   = "Your platform does not support IO scheduler switching",
3212         },
3213 #endif
3214         {
3215                 .name   = "zonesize",
3216                 .lname  = "Zone size",
3217                 .type   = FIO_OPT_STR_VAL,
3218                 .off1   = offsetof(struct thread_options, zone_size),
3219                 .help   = "Amount of data to read per zone",
3220                 .def    = "0",
3221                 .interval = 1024 * 1024,
3222                 .category = FIO_OPT_C_IO,
3223                 .group  = FIO_OPT_G_ZONE,
3224         },
3225         {
3226                 .name   = "zonerange",
3227                 .lname  = "Zone range",
3228                 .type   = FIO_OPT_STR_VAL,
3229                 .off1   = offsetof(struct thread_options, zone_range),
3230                 .help   = "Give size of an IO zone",
3231                 .def    = "0",
3232                 .interval = 1024 * 1024,
3233                 .category = FIO_OPT_C_IO,
3234                 .group  = FIO_OPT_G_ZONE,
3235         },
3236         {
3237                 .name   = "zoneskip",
3238                 .lname  = "Zone skip",
3239                 .type   = FIO_OPT_STR_VAL,
3240                 .off1   = offsetof(struct thread_options, zone_skip),
3241                 .help   = "Space between IO zones",
3242                 .def    = "0",
3243                 .interval = 1024 * 1024,
3244                 .category = FIO_OPT_C_IO,
3245                 .group  = FIO_OPT_G_ZONE,
3246         },
3247         {
3248                 .name   = "lockmem",
3249                 .lname  = "Lock memory",
3250                 .type   = FIO_OPT_STR_VAL,
3251                 .off1   = offsetof(struct thread_options, lockmem),
3252                 .help   = "Lock down this amount of memory (per worker)",
3253                 .def    = "0",
3254                 .interval = 1024 * 1024,
3255                 .category = FIO_OPT_C_GENERAL,
3256                 .group  = FIO_OPT_G_INVALID,
3257         },
3258         {
3259                 .name   = "rwmixread",
3260                 .lname  = "Read/write mix read",
3261                 .type   = FIO_OPT_INT,
3262                 .cb     = str_rwmix_read_cb,
3263                 .off1   = offsetof(struct thread_options, rwmix[DDIR_READ]),
3264                 .maxval = 100,
3265                 .help   = "Percentage of mixed workload that is reads",
3266                 .def    = "50",
3267                 .interval = 5,
3268                 .inverse = "rwmixwrite",
3269                 .category = FIO_OPT_C_IO,
3270                 .group  = FIO_OPT_G_RWMIX,
3271         },
3272         {
3273                 .name   = "rwmixwrite",
3274                 .lname  = "Read/write mix write",
3275                 .type   = FIO_OPT_INT,
3276                 .cb     = str_rwmix_write_cb,
3277                 .off1   = offsetof(struct thread_options, rwmix[DDIR_WRITE]),
3278                 .maxval = 100,
3279                 .help   = "Percentage of mixed workload that is writes",
3280                 .def    = "50",
3281                 .interval = 5,
3282                 .inverse = "rwmixread",
3283                 .category = FIO_OPT_C_IO,
3284                 .group  = FIO_OPT_G_RWMIX,
3285         },
3286         {
3287                 .name   = "rwmixcycle",
3288                 .lname  = "Read/write mix cycle",
3289                 .type   = FIO_OPT_DEPRECATED,
3290                 .category = FIO_OPT_C_IO,
3291                 .group  = FIO_OPT_G_RWMIX,
3292         },
3293         {
3294                 .name   = "nice",
3295                 .lname  = "Nice",
3296                 .type   = FIO_OPT_INT,
3297                 .off1   = offsetof(struct thread_options, nice),
3298                 .help   = "Set job CPU nice value",
3299                 .minval = -20,
3300                 .maxval = 19,
3301                 .def    = "0",
3302                 .interval = 1,
3303                 .category = FIO_OPT_C_GENERAL,
3304                 .group  = FIO_OPT_G_CRED,
3305         },
3306 #ifdef FIO_HAVE_IOPRIO
3307         {
3308                 .name   = "prio",
3309                 .lname  = "I/O nice priority",
3310                 .type   = FIO_OPT_INT,
3311                 .off1   = offsetof(struct thread_options, ioprio),
3312                 .help   = "Set job IO priority value",
3313                 .minval = IOPRIO_MIN_PRIO,
3314                 .maxval = IOPRIO_MAX_PRIO,
3315                 .interval = 1,
3316                 .category = FIO_OPT_C_GENERAL,
3317                 .group  = FIO_OPT_G_CRED,
3318         },
3319 #else
3320         {
3321                 .name   = "prio",
3322                 .lname  = "I/O nice priority",
3323                 .type   = FIO_OPT_UNSUPPORTED,
3324                 .help   = "Your platform does not support IO priorities",
3325         },
3326 #endif
3327 #ifdef FIO_HAVE_IOPRIO_CLASS
3328 #ifndef FIO_HAVE_IOPRIO
3329 #error "FIO_HAVE_IOPRIO_CLASS requires FIO_HAVE_IOPRIO"
3330 #endif
3331         {
3332                 .name   = "prioclass",
3333                 .lname  = "I/O nice priority class",
3334                 .type   = FIO_OPT_INT,
3335                 .off1   = offsetof(struct thread_options, ioprio_class),
3336                 .help   = "Set job IO priority class",
3337                 .minval = IOPRIO_MIN_PRIO_CLASS,
3338                 .maxval = IOPRIO_MAX_PRIO_CLASS,
3339                 .interval = 1,
3340                 .category = FIO_OPT_C_GENERAL,
3341                 .group  = FIO_OPT_G_CRED,
3342         },
3343 #else
3344         {
3345                 .name   = "prioclass",
3346                 .lname  = "I/O nice priority class",
3347                 .type   = FIO_OPT_UNSUPPORTED,
3348                 .help   = "Your platform does not support IO priority classes",
3349         },
3350 #endif
3351         {
3352                 .name   = "thinktime",
3353                 .lname  = "Thinktime",
3354                 .type   = FIO_OPT_INT,
3355                 .off1   = offsetof(struct thread_options, thinktime),
3356                 .help   = "Idle time between IO buffers (usec)",
3357                 .def    = "0",
3358                 .is_time = 1,
3359                 .category = FIO_OPT_C_IO,
3360                 .group  = FIO_OPT_G_THINKTIME,
3361         },
3362         {
3363                 .name   = "thinktime_spin",
3364                 .lname  = "Thinktime spin",
3365                 .type   = FIO_OPT_INT,
3366                 .off1   = offsetof(struct thread_options, thinktime_spin),
3367                 .help   = "Start think time by spinning this amount (usec)",
3368                 .def    = "0",
3369                 .is_time = 1,
3370                 .parent = "thinktime",
3371                 .hide   = 1,
3372                 .category = FIO_OPT_C_IO,
3373                 .group  = FIO_OPT_G_THINKTIME,
3374         },
3375         {
3376                 .name   = "thinktime_blocks",
3377                 .lname  = "Thinktime blocks",
3378                 .type   = FIO_OPT_INT,
3379                 .off1   = offsetof(struct thread_options, thinktime_blocks),
3380                 .help   = "IO buffer period between 'thinktime'",
3381                 .def    = "1",
3382                 .parent = "thinktime",
3383                 .hide   = 1,
3384                 .category = FIO_OPT_C_IO,
3385                 .group  = FIO_OPT_G_THINKTIME,
3386         },
3387         {
3388                 .name   = "rate",
3389                 .lname  = "I/O rate",
3390                 .type   = FIO_OPT_INT,
3391                 .off1   = offsetof(struct thread_options, rate[DDIR_READ]),
3392                 .off2   = offsetof(struct thread_options, rate[DDIR_WRITE]),
3393                 .off3   = offsetof(struct thread_options, rate[DDIR_TRIM]),
3394                 .help   = "Set bandwidth rate",
3395                 .category = FIO_OPT_C_IO,
3396                 .group  = FIO_OPT_G_RATE,
3397         },
3398         {
3399                 .name   = "rate_min",
3400                 .alias  = "ratemin",
3401                 .lname  = "I/O min rate",
3402                 .type   = FIO_OPT_INT,
3403                 .off1   = offsetof(struct thread_options, ratemin[DDIR_READ]),
3404                 .off2   = offsetof(struct thread_options, ratemin[DDIR_WRITE]),
3405                 .off3   = offsetof(struct thread_options, ratemin[DDIR_TRIM]),
3406                 .help   = "Job must meet this rate or it will be shutdown",
3407                 .parent = "rate",
3408                 .hide   = 1,
3409                 .category = FIO_OPT_C_IO,
3410                 .group  = FIO_OPT_G_RATE,
3411         },
3412         {
3413                 .name   = "rate_iops",
3414                 .lname  = "I/O rate IOPS",
3415                 .type   = FIO_OPT_INT,
3416                 .off1   = offsetof(struct thread_options, rate_iops[DDIR_READ]),
3417                 .off2   = offsetof(struct thread_options, rate_iops[DDIR_WRITE]),
3418                 .off3   = offsetof(struct thread_options, rate_iops[DDIR_TRIM]),
3419                 .help   = "Limit IO used to this number of IO operations/sec",
3420                 .hide   = 1,
3421                 .category = FIO_OPT_C_IO,
3422                 .group  = FIO_OPT_G_RATE,
3423         },
3424         {
3425                 .name   = "rate_iops_min",
3426                 .lname  = "I/O min rate IOPS",
3427                 .type   = FIO_OPT_INT,
3428                 .off1   = offsetof(struct thread_options, rate_iops_min[DDIR_READ]),
3429                 .off2   = offsetof(struct thread_options, rate_iops_min[DDIR_WRITE]),
3430                 .off3   = offsetof(struct thread_options, rate_iops_min[DDIR_TRIM]),
3431                 .help   = "Job must meet this rate or it will be shut down",
3432                 .parent = "rate_iops",
3433                 .hide   = 1,
3434                 .category = FIO_OPT_C_IO,
3435                 .group  = FIO_OPT_G_RATE,
3436         },
3437         {
3438                 .name   = "rate_process",
3439                 .lname  = "Rate Process",
3440                 .type   = FIO_OPT_STR,
3441                 .off1   = offsetof(struct thread_options, rate_process),
3442                 .help   = "What process controls how rated IO is managed",
3443                 .def    = "linear",
3444                 .category = FIO_OPT_C_IO,
3445                 .group  = FIO_OPT_G_RATE,
3446                 .posval = {
3447                           { .ival = "linear",
3448                             .oval = RATE_PROCESS_LINEAR,
3449                             .help = "Linear rate of IO",
3450                           },
3451                           {
3452                             .ival = "poisson",
3453                             .oval = RATE_PROCESS_POISSON,
3454                             .help = "Rate follows Poisson process",
3455                           },
3456                 },
3457                 .parent = "rate",
3458         },
3459         {
3460                 .name   = "rate_cycle",
3461                 .alias  = "ratecycle",
3462                 .lname  = "I/O rate cycle",
3463                 .type   = FIO_OPT_INT,
3464                 .off1   = offsetof(struct thread_options, ratecycle),
3465                 .help   = "Window average for rate limits (msec)",
3466                 .def    = "1000",
3467                 .parent = "rate",
3468                 .hide   = 1,
3469                 .category = FIO_OPT_C_IO,
3470                 .group  = FIO_OPT_G_RATE,
3471         },
3472         {
3473                 .name   = "rate_ignore_thinktime",
3474                 .lname  = "Rate ignore thinktime",
3475                 .type   = FIO_OPT_BOOL,
3476                 .off1   = offsetof(struct thread_options, rate_ign_think),
3477                 .help   = "Rated IO ignores thinktime settings",
3478                 .parent = "rate",
3479                 .category = FIO_OPT_C_IO,
3480                 .group  = FIO_OPT_G_RATE,
3481         },
3482         {
3483                 .name   = "max_latency",
3484                 .lname  = "Max Latency (usec)",
3485                 .type   = FIO_OPT_STR_VAL_TIME,
3486                 .off1   = offsetof(struct thread_options, max_latency),
3487                 .help   = "Maximum tolerated IO latency (usec)",
3488                 .is_time = 1,
3489                 .category = FIO_OPT_C_IO,
3490                 .group = FIO_OPT_G_LATPROF,
3491         },
3492         {
3493                 .name   = "latency_target",
3494                 .lname  = "Latency Target (usec)",
3495                 .type   = FIO_OPT_STR_VAL_TIME,
3496                 .off1   = offsetof(struct thread_options, latency_target),
3497                 .help   = "Ramp to max queue depth supporting this latency",
3498                 .is_time = 1,
3499                 .category = FIO_OPT_C_IO,
3500                 .group  = FIO_OPT_G_LATPROF,
3501         },
3502         {
3503                 .name   = "latency_window",
3504                 .lname  = "Latency Window (usec)",
3505                 .type   = FIO_OPT_STR_VAL_TIME,
3506                 .off1   = offsetof(struct thread_options, latency_window),
3507                 .help   = "Time to sustain latency_target",
3508                 .is_time = 1,
3509                 .category = FIO_OPT_C_IO,
3510                 .group  = FIO_OPT_G_LATPROF,
3511         },
3512         {
3513                 .name   = "latency_percentile",
3514                 .lname  = "Latency Percentile",
3515                 .type   = FIO_OPT_FLOAT_LIST,
3516                 .off1   = offsetof(struct thread_options, latency_percentile),
3517                 .help   = "Percentile of IOs must be below latency_target",
3518                 .def    = "100",
3519                 .maxlen = 1,
3520                 .minfp  = 0.0,
3521                 .maxfp  = 100.0,
3522                 .category = FIO_OPT_C_IO,
3523                 .group  = FIO_OPT_G_LATPROF,
3524         },
3525         {
3526                 .name   = "invalidate",
3527                 .lname  = "Cache invalidate",
3528                 .type   = FIO_OPT_BOOL,
3529                 .off1   = offsetof(struct thread_options, invalidate_cache),
3530                 .help   = "Invalidate buffer/page cache prior to running job",
3531                 .def    = "1",
3532                 .category = FIO_OPT_C_IO,
3533                 .group  = FIO_OPT_G_IO_TYPE,
3534         },
3535         {
3536                 .name   = "sync",
3537                 .lname  = "Synchronous I/O",
3538                 .type   = FIO_OPT_BOOL,
3539                 .off1   = offsetof(struct thread_options, sync_io),
3540                 .help   = "Use O_SYNC for buffered writes",
3541                 .def    = "0",
3542                 .parent = "buffered",
3543                 .hide   = 1,
3544                 .category = FIO_OPT_C_IO,
3545                 .group  = FIO_OPT_G_IO_TYPE,
3546         },
3547 #ifdef FIO_HAVE_WRITE_HINT
3548         {
3549                 .name   = "write_hint",
3550                 .lname  = "Write hint",
3551                 .type   = FIO_OPT_STR,
3552                 .off1   = offsetof(struct thread_options, write_hint),
3553                 .help   = "Set expected write life time",
3554                 .category = FIO_OPT_C_ENGINE,
3555                 .group  = FIO_OPT_G_INVALID,
3556                 .posval = {
3557                           { .ival = "none",
3558                             .oval = RWH_WRITE_LIFE_NONE,
3559                           },
3560                           { .ival = "short",
3561                             .oval = RWH_WRITE_LIFE_SHORT,
3562                           },
3563                           { .ival = "medium",
3564                             .oval = RWH_WRITE_LIFE_MEDIUM,
3565                           },
3566                           { .ival = "long",
3567                             .oval = RWH_WRITE_LIFE_LONG,
3568                           },
3569                           { .ival = "extreme",
3570                             .oval = RWH_WRITE_LIFE_EXTREME,
3571                           },
3572                 },
3573         },
3574 #endif
3575         {
3576                 .name   = "create_serialize",
3577                 .lname  = "Create serialize",
3578                 .type   = FIO_OPT_BOOL,
3579                 .off1   = offsetof(struct thread_options, create_serialize),
3580                 .help   = "Serialize creation of job files",
3581                 .def    = "1",
3582                 .category = FIO_OPT_C_FILE,
3583                 .group  = FIO_OPT_G_INVALID,
3584         },
3585         {
3586                 .name   = "create_fsync",
3587                 .lname  = "Create fsync",
3588                 .type   = FIO_OPT_BOOL,
3589                 .off1   = offsetof(struct thread_options, create_fsync),
3590                 .help   = "fsync file after creation",
3591                 .def    = "1",
3592                 .category = FIO_OPT_C_FILE,
3593                 .group  = FIO_OPT_G_INVALID,
3594         },
3595         {
3596                 .name   = "create_on_open",
3597                 .lname  = "Create on open",
3598                 .type   = FIO_OPT_BOOL,
3599                 .off1   = offsetof(struct thread_options, create_on_open),
3600                 .help   = "Create files when they are opened for IO",
3601                 .def    = "0",
3602                 .category = FIO_OPT_C_FILE,
3603                 .group  = FIO_OPT_G_INVALID,
3604         },
3605         {
3606                 .name   = "create_only",
3607                 .lname  = "Create Only",
3608                 .type   = FIO_OPT_BOOL,
3609                 .off1   = offsetof(struct thread_options, create_only),
3610                 .help   = "Only perform file creation phase",
3611                 .category = FIO_OPT_C_FILE,
3612                 .def    = "0",
3613         },
3614         {
3615                 .name   = "allow_file_create",
3616                 .lname  = "Allow file create",
3617                 .type   = FIO_OPT_BOOL,
3618                 .off1   = offsetof(struct thread_options, allow_create),
3619                 .help   = "Permit fio to create files, if they don't exist",
3620                 .def    = "1",
3621                 .category = FIO_OPT_C_FILE,
3622                 .group  = FIO_OPT_G_FILENAME,
3623         },
3624         {
3625                 .name   = "allow_mounted_write",
3626                 .lname  = "Allow mounted write",
3627                 .type   = FIO_OPT_BOOL,
3628                 .off1   = offsetof(struct thread_options, allow_mounted_write),
3629                 .help   = "Allow writes to a mounted partition",
3630                 .def    = "0",
3631                 .category = FIO_OPT_C_FILE,
3632                 .group  = FIO_OPT_G_FILENAME,
3633         },
3634         {
3635                 .name   = "pre_read",
3636                 .lname  = "Pre-read files",
3637                 .type   = FIO_OPT_BOOL,
3638                 .off1   = offsetof(struct thread_options, pre_read),
3639                 .help   = "Pre-read files before starting official testing",
3640                 .def    = "0",
3641                 .category = FIO_OPT_C_FILE,
3642                 .group  = FIO_OPT_G_INVALID,
3643         },
3644 #ifdef FIO_HAVE_CPU_AFFINITY
3645         {
3646                 .name   = "cpumask",
3647                 .lname  = "CPU mask",
3648                 .type   = FIO_OPT_INT,
3649                 .cb     = str_cpumask_cb,
3650                 .off1   = offsetof(struct thread_options, cpumask),
3651                 .help   = "CPU affinity mask",
3652                 .category = FIO_OPT_C_GENERAL,
3653                 .group  = FIO_OPT_G_CRED,
3654         },
3655         {
3656                 .name   = "cpus_allowed",
3657                 .lname  = "CPUs allowed",
3658                 .type   = FIO_OPT_STR,
3659                 .cb     = str_cpus_allowed_cb,
3660                 .off1   = offsetof(struct thread_options, cpumask),
3661                 .help   = "Set CPUs allowed",
3662                 .category = FIO_OPT_C_GENERAL,
3663                 .group  = FIO_OPT_G_CRED,
3664         },
3665         {
3666                 .name   = "cpus_allowed_policy",
3667                 .lname  = "CPUs allowed distribution policy",
3668                 .type   = FIO_OPT_STR,
3669                 .off1   = offsetof(struct thread_options, cpus_allowed_policy),
3670                 .help   = "Distribution policy for cpus_allowed",
3671                 .parent = "cpus_allowed",
3672                 .prio   = 1,
3673                 .posval = {
3674                           { .ival = "shared",
3675                             .oval = FIO_CPUS_SHARED,
3676                             .help = "Mask shared between threads",
3677                           },
3678                           { .ival = "split",
3679                             .oval = FIO_CPUS_SPLIT,
3680                             .help = "Mask split between threads",
3681                           },
3682                 },
3683                 .category = FIO_OPT_C_GENERAL,
3684                 .group  = FIO_OPT_G_CRED,
3685         },
3686 #else
3687         {
3688                 .name   = "cpumask",
3689                 .lname  = "CPU mask",
3690                 .type   = FIO_OPT_UNSUPPORTED,
3691                 .help   = "Your platform does not support CPU affinities",
3692         },
3693         {
3694                 .name   = "cpus_allowed",
3695                 .lname  = "CPUs allowed",
3696                 .type   = FIO_OPT_UNSUPPORTED,
3697                 .help   = "Your platform does not support CPU affinities",
3698         },
3699         {
3700                 .name   = "cpus_allowed_policy",
3701                 .lname  = "CPUs allowed distribution policy",
3702                 .type   = FIO_OPT_UNSUPPORTED,
3703                 .help   = "Your platform does not support CPU affinities",
3704         },
3705 #endif
3706 #ifdef CONFIG_LIBNUMA
3707         {
3708                 .name   = "numa_cpu_nodes",
3709                 .lname  = "NUMA CPU Nodes",
3710                 .type   = FIO_OPT_STR,
3711                 .cb     = str_numa_cpunodes_cb,
3712                 .off1   = offsetof(struct thread_options, numa_cpunodes),
3713                 .help   = "NUMA CPU nodes bind",
3714                 .category = FIO_OPT_C_GENERAL,
3715                 .group  = FIO_OPT_G_INVALID,
3716         },
3717         {
3718                 .name   = "numa_mem_policy",
3719                 .lname  = "NUMA Memory Policy",
3720                 .type   = FIO_OPT_STR,
3721                 .cb     = str_numa_mpol_cb,
3722                 .off1   = offsetof(struct thread_options, numa_memnodes),
3723                 .help   = "NUMA memory policy setup",
3724                 .category = FIO_OPT_C_GENERAL,
3725                 .group  = FIO_OPT_G_INVALID,
3726         },
3727 #else
3728         {
3729                 .name   = "numa_cpu_nodes",
3730                 .lname  = "NUMA CPU Nodes",
3731                 .type   = FIO_OPT_UNSUPPORTED,
3732                 .help   = "Build fio with libnuma-dev(el) to enable this option",
3733         },
3734         {
3735                 .name   = "numa_mem_policy",
3736                 .lname  = "NUMA Memory Policy",
3737                 .type   = FIO_OPT_UNSUPPORTED,
3738                 .help   = "Build fio with libnuma-dev(el) to enable this option",
3739         },
3740 #endif
3741 #ifdef CONFIG_CUDA
3742         {
3743                 .name   = "gpu_dev_id",
3744                 .lname  = "GPU device ID",
3745                 .type   = FIO_OPT_INT,
3746                 .off1   = offsetof(struct thread_options, gpu_dev_id),
3747                 .help   = "Set GPU device ID for GPUDirect RDMA",
3748                 .def    = "0",
3749                 .category = FIO_OPT_C_GENERAL,
3750                 .group  = FIO_OPT_G_INVALID,
3751         },
3752 #endif
3753         {
3754                 .name   = "end_fsync",
3755                 .lname  = "End fsync",
3756                 .type   = FIO_OPT_BOOL,
3757                 .off1   = offsetof(struct thread_options, end_fsync),
3758                 .help   = "Include fsync at the end of job",
3759                 .def    = "0",
3760                 .category = FIO_OPT_C_FILE,
3761                 .group  = FIO_OPT_G_INVALID,
3762         },
3763         {
3764                 .name   = "fsync_on_close",
3765                 .lname  = "Fsync on close",
3766                 .type   = FIO_OPT_BOOL,
3767                 .off1   = offsetof(struct thread_options, fsync_on_close),
3768                 .help   = "fsync files on close",
3769                 .def    = "0",
3770                 .category = FIO_OPT_C_FILE,
3771                 .group  = FIO_OPT_G_INVALID,
3772         },
3773         {
3774                 .name   = "unlink",
3775                 .lname  = "Unlink file",
3776                 .type   = FIO_OPT_BOOL,
3777                 .off1   = offsetof(struct thread_options, unlink),
3778                 .help   = "Unlink created files after job has completed",
3779                 .def    = "0",
3780                 .category = FIO_OPT_C_FILE,
3781                 .group  = FIO_OPT_G_INVALID,
3782         },
3783         {
3784                 .name   = "unlink_each_loop",
3785                 .lname  = "Unlink file after each loop of a job",
3786                 .type   = FIO_OPT_BOOL,
3787                 .off1   = offsetof(struct thread_options, unlink_each_loop),
3788                 .help   = "Unlink created files after each loop in a job has completed",
3789                 .def    = "0",
3790                 .category = FIO_OPT_C_FILE,
3791                 .group  = FIO_OPT_G_INVALID,
3792         },
3793         {
3794                 .name   = "exitall",
3795                 .lname  = "Exit-all on terminate",
3796                 .type   = FIO_OPT_STR_SET,
3797                 .cb     = str_exitall_cb,
3798                 .help   = "Terminate all jobs when one exits",
3799                 .category = FIO_OPT_C_GENERAL,
3800                 .group  = FIO_OPT_G_PROCESS,
3801         },
3802         {
3803                 .name   = "exitall_on_error",
3804                 .lname  = "Exit-all on terminate in error",
3805                 .type   = FIO_OPT_STR_SET,
3806                 .off1   = offsetof(struct thread_options, exitall_error),
3807                 .help   = "Terminate all jobs when one exits in error",
3808                 .category = FIO_OPT_C_GENERAL,
3809                 .group  = FIO_OPT_G_PROCESS,
3810         },
3811         {
3812                 .name   = "stonewall",
3813                 .lname  = "Wait for previous",
3814                 .alias  = "wait_for_previous",
3815                 .type   = FIO_OPT_STR_SET,
3816                 .off1   = offsetof(struct thread_options, stonewall),
3817                 .help   = "Insert a hard barrier between this job and previous",
3818                 .category = FIO_OPT_C_GENERAL,
3819                 .group  = FIO_OPT_G_PROCESS,
3820         },
3821         {
3822                 .name   = "new_group",
3823                 .lname  = "New group",
3824                 .type   = FIO_OPT_STR_SET,
3825                 .off1   = offsetof(struct thread_options, new_group),
3826                 .help   = "Mark the start of a new group (for reporting)",
3827                 .category = FIO_OPT_C_GENERAL,
3828                 .group  = FIO_OPT_G_PROCESS,
3829         },
3830         {
3831                 .name   = "thread",
3832                 .lname  = "Thread",
3833                 .type   = FIO_OPT_STR_SET,
3834                 .off1   = offsetof(struct thread_options, use_thread),
3835                 .help   = "Use threads instead of processes",
3836 #ifdef CONFIG_NO_SHM
3837                 .def    = "1",
3838                 .no_warn_def = 1,
3839 #endif
3840                 .category = FIO_OPT_C_GENERAL,
3841                 .group  = FIO_OPT_G_PROCESS,
3842         },
3843         {
3844                 .name   = "per_job_logs",
3845                 .lname  = "Per Job Logs",
3846                 .type   = FIO_OPT_BOOL,
3847                 .off1   = offsetof(struct thread_options, per_job_logs),
3848                 .help   = "Include job number in generated log files or not",
3849                 .def    = "1",
3850                 .category = FIO_OPT_C_LOG,
3851                 .group  = FIO_OPT_G_INVALID,
3852         },
3853         {
3854                 .name   = "write_bw_log",
3855                 .lname  = "Write bandwidth log",
3856                 .type   = FIO_OPT_STR,
3857                 .off1   = offsetof(struct thread_options, bw_log_file),
3858                 .cb     = str_write_bw_log_cb,
3859                 .help   = "Write log of bandwidth during run",
3860                 .category = FIO_OPT_C_LOG,
3861                 .group  = FIO_OPT_G_INVALID,
3862         },
3863         {
3864                 .name   = "write_lat_log",
3865                 .lname  = "Write latency log",
3866                 .type   = FIO_OPT_STR,
3867                 .off1   = offsetof(struct thread_options, lat_log_file),
3868                 .cb     = str_write_lat_log_cb,
3869                 .help   = "Write log of latency during run",
3870                 .category = FIO_OPT_C_LOG,
3871                 .group  = FIO_OPT_G_INVALID,
3872         },
3873         {
3874                 .name   = "write_iops_log",
3875                 .lname  = "Write IOPS log",
3876                 .type   = FIO_OPT_STR,
3877                 .off1   = offsetof(struct thread_options, iops_log_file),
3878                 .cb     = str_write_iops_log_cb,
3879                 .help   = "Write log of IOPS during run",
3880                 .category = FIO_OPT_C_LOG,
3881                 .group  = FIO_OPT_G_INVALID,
3882         },
3883         {
3884                 .name   = "log_avg_msec",
3885                 .lname  = "Log averaging (msec)",
3886                 .type   = FIO_OPT_INT,
3887                 .off1   = offsetof(struct thread_options, log_avg_msec),
3888                 .help   = "Average bw/iops/lat logs over this period of time",
3889                 .def    = "0",
3890                 .category = FIO_OPT_C_LOG,
3891                 .group  = FIO_OPT_G_INVALID,
3892         },
3893         {
3894                 .name   = "log_hist_msec",
3895                 .lname  = "Log histograms (msec)",
3896                 .type   = FIO_OPT_INT,
3897                 .off1   = offsetof(struct thread_options, log_hist_msec),
3898                 .help   = "Dump completion latency histograms at frequency of this time value",
3899                 .def    = "0",
3900                 .category = FIO_OPT_C_LOG,
3901                 .group  = FIO_OPT_G_INVALID,
3902         },
3903         {
3904                 .name   = "log_hist_coarseness",
3905                 .lname  = "Histogram logs coarseness",
3906                 .type   = FIO_OPT_INT,
3907                 .off1   = offsetof(struct thread_options, log_hist_coarseness),
3908                 .help   = "Integer in range [0,6]. Higher coarseness outputs"
3909                         " fewer histogram bins per sample. The number of bins for"
3910                         " these are [1216, 608, 304, 152, 76, 38, 19] respectively.",
3911                 .def    = "0",
3912                 .category = FIO_OPT_C_LOG,
3913                 .group  = FIO_OPT_G_INVALID,
3914         },
3915         {
3916                 .name   = "write_hist_log",
3917                 .lname  = "Write latency histogram logs",
3918                 .type   = FIO_OPT_STR,
3919                 .off1   = offsetof(struct thread_options, hist_log_file),
3920                 .cb     = str_write_hist_log_cb,
3921                 .help   = "Write log of latency histograms during run",
3922                 .category = FIO_OPT_C_LOG,
3923                 .group  = FIO_OPT_G_INVALID,
3924         },
3925         {
3926                 .name   = "log_max_value",
3927                 .lname  = "Log maximum instead of average",
3928                 .type   = FIO_OPT_BOOL,
3929                 .off1   = offsetof(struct thread_options, log_max),
3930                 .help   = "Log max sample in a window instead of average",
3931                 .def    = "0",
3932                 .category = FIO_OPT_C_LOG,
3933                 .group  = FIO_OPT_G_INVALID,
3934         },
3935         {
3936                 .name   = "log_offset",
3937                 .lname  = "Log offset of IO",
3938                 .type   = FIO_OPT_BOOL,
3939                 .off1   = offsetof(struct thread_options, log_offset),
3940                 .help   = "Include offset of IO for each log entry",
3941                 .def    = "0",
3942                 .category = FIO_OPT_C_LOG,
3943                 .group  = FIO_OPT_G_INVALID,
3944         },
3945 #ifdef CONFIG_ZLIB
3946         {
3947                 .name   = "log_compression",
3948                 .lname  = "Log compression",
3949                 .type   = FIO_OPT_INT,
3950                 .off1   = offsetof(struct thread_options, log_gz),
3951                 .help   = "Log in compressed chunks of this size",
3952                 .minval = 1024ULL,
3953                 .maxval = 512 * 1024 * 1024ULL,
3954                 .category = FIO_OPT_C_LOG,
3955                 .group  = FIO_OPT_G_INVALID,
3956         },
3957 #ifdef FIO_HAVE_CPU_AFFINITY
3958         {
3959                 .name   = "log_compression_cpus",
3960                 .lname  = "Log Compression CPUs",
3961                 .type   = FIO_OPT_STR,
3962                 .cb     = str_log_cpus_allowed_cb,
3963                 .off1   = offsetof(struct thread_options, log_gz_cpumask),
3964                 .parent = "log_compression",
3965                 .help   = "Limit log compression to these CPUs",
3966                 .category = FIO_OPT_C_LOG,
3967                 .group  = FIO_OPT_G_INVALID,
3968         },
3969 #else
3970         {
3971                 .name   = "log_compression_cpus",
3972                 .lname  = "Log Compression CPUs",
3973                 .type   = FIO_OPT_UNSUPPORTED,
3974                 .help   = "Your platform does not support CPU affinities",
3975         },
3976 #endif
3977         {
3978                 .name   = "log_store_compressed",
3979                 .lname  = "Log store compressed",
3980                 .type   = FIO_OPT_BOOL,
3981                 .off1   = offsetof(struct thread_options, log_gz_store),
3982                 .help   = "Store logs in a compressed format",
3983                 .category = FIO_OPT_C_LOG,
3984                 .group  = FIO_OPT_G_INVALID,
3985         },
3986 #else
3987         {
3988                 .name   = "log_compression",
3989                 .lname  = "Log compression",
3990                 .type   = FIO_OPT_UNSUPPORTED,
3991                 .help   = "Install libz-dev(el) to get compression support",
3992         },
3993         {
3994                 .name   = "log_store_compressed",
3995                 .lname  = "Log store compressed",
3996                 .type   = FIO_OPT_UNSUPPORTED,
3997                 .help   = "Install libz-dev(el) to get compression support",
3998         },
3999 #endif
4000         {
4001                 .name = "log_unix_epoch",
4002                 .lname = "Log epoch unix",
4003                 .type = FIO_OPT_BOOL,
4004                 .off1 = offsetof(struct thread_options, log_unix_epoch),
4005                 .help = "Use Unix time in log files",
4006                 .category = FIO_OPT_C_LOG,
4007                 .group = FIO_OPT_G_INVALID,
4008         },
4009         {
4010                 .name   = "block_error_percentiles",
4011                 .lname  = "Block error percentiles",
4012                 .type   = FIO_OPT_BOOL,
4013                 .off1   = offsetof(struct thread_options, block_error_hist),
4014                 .help   = "Record trim block errors and make a histogram",
4015                 .def    = "0",
4016                 .category = FIO_OPT_C_LOG,
4017                 .group  = FIO_OPT_G_INVALID,
4018         },
4019         {
4020                 .name   = "bwavgtime",
4021                 .lname  = "Bandwidth average time",
4022                 .type   = FIO_OPT_INT,
4023                 .off1   = offsetof(struct thread_options, bw_avg_time),
4024                 .help   = "Time window over which to calculate bandwidth"
4025                           " (msec)",
4026                 .def    = "500",
4027                 .parent = "write_bw_log",
4028                 .hide   = 1,
4029                 .interval = 100,
4030                 .category = FIO_OPT_C_LOG,
4031                 .group  = FIO_OPT_G_INVALID,
4032         },
4033         {
4034                 .name   = "iopsavgtime",
4035                 .lname  = "IOPS average time",
4036                 .type   = FIO_OPT_INT,
4037                 .off1   = offsetof(struct thread_options, iops_avg_time),
4038                 .help   = "Time window over which to calculate IOPS (msec)",
4039                 .def    = "500",
4040                 .parent = "write_iops_log",
4041                 .hide   = 1,
4042                 .interval = 100,
4043                 .category = FIO_OPT_C_LOG,
4044                 .group  = FIO_OPT_G_INVALID,
4045         },
4046         {
4047                 .name   = "group_reporting",
4048                 .lname  = "Group reporting",
4049                 .type   = FIO_OPT_STR_SET,
4050                 .off1   = offsetof(struct thread_options, group_reporting),
4051                 .help   = "Do reporting on a per-group basis",
4052                 .category = FIO_OPT_C_STAT,
4053                 .group  = FIO_OPT_G_INVALID,
4054         },
4055         {
4056                 .name   = "stats",
4057                 .lname  = "Stats",
4058                 .type   = FIO_OPT_BOOL,
4059                 .off1   = offsetof(struct thread_options, stats),
4060                 .help   = "Enable collection of stats",
4061                 .def    = "1",
4062                 .category = FIO_OPT_C_STAT,
4063                 .group  = FIO_OPT_G_INVALID,
4064         },
4065         {
4066                 .name   = "zero_buffers",
4067                 .lname  = "Zero I/O buffers",
4068                 .type   = FIO_OPT_STR_SET,
4069                 .off1   = offsetof(struct thread_options, zero_buffers),
4070                 .help   = "Init IO buffers to all zeroes",
4071                 .category = FIO_OPT_C_IO,
4072                 .group  = FIO_OPT_G_IO_BUF,
4073         },
4074         {
4075                 .name   = "refill_buffers",
4076                 .lname  = "Refill I/O buffers",
4077                 .type   = FIO_OPT_STR_SET,
4078                 .off1   = offsetof(struct thread_options, refill_buffers),
4079                 .help   = "Refill IO buffers on every IO submit",
4080                 .category = FIO_OPT_C_IO,
4081                 .group  = FIO_OPT_G_IO_BUF,
4082         },
4083         {
4084                 .name   = "scramble_buffers",
4085                 .lname  = "Scramble I/O buffers",
4086                 .type   = FIO_OPT_BOOL,
4087                 .off1   = offsetof(struct thread_options, scramble_buffers),
4088                 .help   = "Slightly scramble buffers on every IO submit",
4089                 .def    = "1",
4090                 .category = FIO_OPT_C_IO,
4091                 .group  = FIO_OPT_G_IO_BUF,
4092         },
4093         {
4094                 .name   = "buffer_pattern",
4095                 .lname  = "Buffer pattern",
4096                 .type   = FIO_OPT_STR,
4097                 .cb     = str_buffer_pattern_cb,
4098                 .off1   = offsetof(struct thread_options, buffer_pattern),
4099                 .help   = "Fill pattern for IO buffers",
4100                 .category = FIO_OPT_C_IO,
4101                 .group  = FIO_OPT_G_IO_BUF,
4102         },
4103         {
4104                 .name   = "buffer_compress_percentage",
4105                 .lname  = "Buffer compression percentage",
4106                 .type   = FIO_OPT_INT,
4107                 .cb     = str_buffer_compress_cb,
4108                 .off1   = offsetof(struct thread_options, compress_percentage),
4109                 .maxval = 100,
4110                 .minval = 0,
4111                 .help   = "How compressible the buffer is (approximately)",
4112                 .interval = 5,
4113                 .category = FIO_OPT_C_IO,
4114                 .group  = FIO_OPT_G_IO_BUF,
4115         },
4116         {
4117                 .name   = "buffer_compress_chunk",
4118                 .lname  = "Buffer compression chunk size",
4119                 .type   = FIO_OPT_INT,
4120                 .off1   = offsetof(struct thread_options, compress_chunk),
4121                 .parent = "buffer_compress_percentage",
4122                 .hide   = 1,
4123                 .help   = "Size of compressible region in buffer",
4124                 .def    = "512",
4125                 .interval = 256,
4126                 .category = FIO_OPT_C_IO,
4127                 .group  = FIO_OPT_G_IO_BUF,
4128         },
4129         {
4130                 .name   = "dedupe_percentage",
4131                 .lname  = "Dedupe percentage",
4132                 .type   = FIO_OPT_INT,
4133                 .cb     = str_dedupe_cb,
4134                 .off1   = offsetof(struct thread_options, dedupe_percentage),
4135                 .maxval = 100,
4136                 .minval = 0,
4137                 .help   = "Percentage of buffers that are dedupable",
4138                 .interval = 1,
4139                 .category = FIO_OPT_C_IO,
4140                 .group  = FIO_OPT_G_IO_BUF,
4141         },
4142         {
4143                 .name   = "clat_percentiles",
4144                 .lname  = "Completion latency percentiles",
4145                 .type   = FIO_OPT_BOOL,
4146                 .off1   = offsetof(struct thread_options, clat_percentiles),
4147                 .help   = "Enable the reporting of completion latency percentiles",
4148                 .def    = "1",
4149                 .inverse = "lat_percentiles",
4150                 .category = FIO_OPT_C_STAT,
4151                 .group  = FIO_OPT_G_INVALID,
4152         },
4153         {
4154                 .name   = "lat_percentiles",
4155                 .lname  = "IO latency percentiles",
4156                 .type   = FIO_OPT_BOOL,
4157                 .off1   = offsetof(struct thread_options, lat_percentiles),
4158                 .help   = "Enable the reporting of IO latency percentiles",
4159                 .def    = "0",
4160                 .inverse = "clat_percentiles",
4161                 .category = FIO_OPT_C_STAT,
4162                 .group  = FIO_OPT_G_INVALID,
4163         },
4164         {
4165                 .name   = "percentile_list",
4166                 .lname  = "Percentile list",
4167                 .type   = FIO_OPT_FLOAT_LIST,
4168                 .off1   = offsetof(struct thread_options, percentile_list),
4169                 .off2   = offsetof(struct thread_options, percentile_precision),
4170                 .help   = "Specify a custom list of percentiles to report for "
4171                           "completion latency and block errors",
4172                 .def    = "1:5:10:20:30:40:50:60:70:80:90:95:99:99.5:99.9:99.95:99.99",
4173                 .maxlen = FIO_IO_U_LIST_MAX_LEN,
4174                 .minfp  = 0.0,
4175                 .maxfp  = 100.0,
4176                 .category = FIO_OPT_C_STAT,
4177                 .group  = FIO_OPT_G_INVALID,
4178         },
4179         {
4180                 .name   = "significant_figures",
4181                 .lname  = "Significant figures",
4182                 .type   = FIO_OPT_INT,
4183                 .off1   = offsetof(struct thread_options, sig_figs),
4184                 .maxval = 10,
4185                 .minval = 1,
4186                 .help   = "Significant figures for output-format set to normal",
4187                 .def    = "4",
4188                 .interval = 1,
4189                 .category = FIO_OPT_C_STAT,
4190                 .group  = FIO_OPT_G_INVALID,
4191         },
4192
4193 #ifdef FIO_HAVE_DISK_UTIL
4194         {
4195                 .name   = "disk_util",
4196                 .lname  = "Disk utilization",
4197                 .type   = FIO_OPT_BOOL,
4198                 .off1   = offsetof(struct thread_options, do_disk_util),
4199                 .help   = "Log disk utilization statistics",
4200                 .def    = "1",
4201                 .category = FIO_OPT_C_STAT,
4202                 .group  = FIO_OPT_G_INVALID,
4203         },
4204 #else
4205         {
4206                 .name   = "disk_util",
4207                 .lname  = "Disk utilization",
4208                 .type   = FIO_OPT_UNSUPPORTED,
4209                 .help   = "Your platform does not support disk utilization",
4210         },
4211 #endif
4212         {
4213                 .name   = "gtod_reduce",
4214                 .lname  = "Reduce gettimeofday() calls",
4215                 .type   = FIO_OPT_BOOL,
4216                 .help   = "Greatly reduce number of gettimeofday() calls",
4217                 .cb     = str_gtod_reduce_cb,
4218                 .def    = "0",
4219                 .hide_on_set = 1,
4220                 .category = FIO_OPT_C_STAT,
4221                 .group  = FIO_OPT_G_INVALID,
4222         },
4223         {
4224                 .name   = "disable_lat",
4225                 .lname  = "Disable all latency stats",
4226                 .type   = FIO_OPT_BOOL,
4227                 .off1   = offsetof(struct thread_options, disable_lat),
4228                 .help   = "Disable latency numbers",
4229                 .parent = "gtod_reduce",
4230                 .hide   = 1,
4231                 .def    = "0",
4232                 .category = FIO_OPT_C_STAT,
4233                 .group  = FIO_OPT_G_INVALID,
4234         },
4235         {
4236                 .name   = "disable_clat",
4237                 .lname  = "Disable completion latency stats",
4238                 .type   = FIO_OPT_BOOL,
4239                 .off1   = offsetof(struct thread_options, disable_clat),
4240                 .help   = "Disable completion latency numbers",
4241                 .parent = "gtod_reduce",
4242                 .hide   = 1,
4243                 .def    = "0",
4244                 .category = FIO_OPT_C_STAT,
4245                 .group  = FIO_OPT_G_INVALID,
4246         },
4247         {
4248                 .name   = "disable_slat",
4249                 .lname  = "Disable submission latency stats",
4250                 .type   = FIO_OPT_BOOL,
4251                 .off1   = offsetof(struct thread_options, disable_slat),
4252                 .help   = "Disable submission latency numbers",
4253                 .parent = "gtod_reduce",
4254                 .hide   = 1,
4255                 .def    = "0",
4256                 .category = FIO_OPT_C_STAT,
4257                 .group  = FIO_OPT_G_INVALID,
4258         },
4259         {
4260                 .name   = "disable_bw_measurement",
4261                 .alias  = "disable_bw",
4262                 .lname  = "Disable bandwidth stats",
4263                 .type   = FIO_OPT_BOOL,
4264                 .off1   = offsetof(struct thread_options, disable_bw),
4265                 .help   = "Disable bandwidth logging",
4266                 .parent = "gtod_reduce",
4267                 .hide   = 1,
4268                 .def    = "0",
4269                 .category = FIO_OPT_C_STAT,
4270                 .group  = FIO_OPT_G_INVALID,
4271         },
4272         {
4273                 .name   = "gtod_cpu",
4274                 .lname  = "Dedicated gettimeofday() CPU",
4275                 .type   = FIO_OPT_INT,
4276                 .off1   = offsetof(struct thread_options, gtod_cpu),
4277                 .help   = "Set up dedicated gettimeofday() thread on this CPU",
4278                 .verify = gtod_cpu_verify,
4279                 .category = FIO_OPT_C_GENERAL,
4280                 .group  = FIO_OPT_G_CLOCK,
4281         },
4282         {
4283                 .name   = "unified_rw_reporting",
4284                 .lname  = "Unified RW Reporting",
4285                 .type   = FIO_OPT_BOOL,
4286                 .off1   = offsetof(struct thread_options, unified_rw_rep),
4287                 .help   = "Unify reporting across data direction",
4288                 .def    = "0",
4289                 .category = FIO_OPT_C_GENERAL,
4290                 .group  = FIO_OPT_G_INVALID,
4291         },
4292         {
4293                 .name   = "continue_on_error",
4294                 .lname  = "Continue on error",
4295                 .type   = FIO_OPT_STR,
4296                 .off1   = offsetof(struct thread_options, continue_on_error),
4297                 .help   = "Continue on non-fatal errors during IO",
4298                 .def    = "none",
4299                 .category = FIO_OPT_C_GENERAL,
4300                 .group  = FIO_OPT_G_ERR,
4301                 .posval = {
4302                           { .ival = "none",
4303                             .oval = ERROR_TYPE_NONE,
4304                             .help = "Exit when an error is encountered",
4305                           },
4306                           { .ival = "read",
4307                             .oval = ERROR_TYPE_READ,
4308                             .help = "Continue on read errors only",
4309                           },
4310                           { .ival = "write",
4311                             .oval = ERROR_TYPE_WRITE,
4312                             .help = "Continue on write errors only",
4313                           },
4314                           { .ival = "io",
4315                             .oval = ERROR_TYPE_READ | ERROR_TYPE_WRITE,
4316                             .help = "Continue on any IO errors",
4317                           },
4318                           { .ival = "verify",
4319                             .oval = ERROR_TYPE_VERIFY,
4320                             .help = "Continue on verify errors only",
4321                           },
4322                           { .ival = "all",
4323                             .oval = ERROR_TYPE_ANY,
4324                             .help = "Continue on all io and verify errors",
4325                           },
4326                           { .ival = "0",
4327                             .oval = ERROR_TYPE_NONE,
4328                             .help = "Alias for 'none'",
4329                           },
4330                           { .ival = "1",
4331                             .oval = ERROR_TYPE_ANY,
4332                             .help = "Alias for 'all'",
4333                           },
4334                 },
4335         },
4336         {
4337                 .name   = "ignore_error",
4338                 .lname  = "Ignore Error",
4339                 .type   = FIO_OPT_STR,
4340                 .cb     = str_ignore_error_cb,
4341                 .off1   = offsetof(struct thread_options, ignore_error_nr),
4342                 .help   = "Set a specific list of errors to ignore",
4343                 .parent = "rw",
4344                 .category = FIO_OPT_C_GENERAL,
4345                 .group  = FIO_OPT_G_ERR,
4346         },
4347         {
4348                 .name   = "error_dump",
4349                 .lname  = "Error Dump",
4350                 .type   = FIO_OPT_BOOL,
4351                 .off1   = offsetof(struct thread_options, error_dump),
4352                 .def    = "0",
4353                 .help   = "Dump info on each error",
4354                 .category = FIO_OPT_C_GENERAL,
4355                 .group  = FIO_OPT_G_ERR,
4356         },
4357         {
4358                 .name   = "profile",
4359                 .lname  = "Profile",
4360                 .type   = FIO_OPT_STR_STORE,
4361                 .off1   = offsetof(struct thread_options, profile),
4362                 .help   = "Select a specific builtin performance test",
4363                 .category = FIO_OPT_C_PROFILE,
4364                 .group  = FIO_OPT_G_INVALID,
4365         },
4366         {
4367                 .name   = "cgroup",
4368                 .lname  = "Cgroup",
4369                 .type   = FIO_OPT_STR_STORE,
4370                 .off1   = offsetof(struct thread_options, cgroup),
4371                 .help   = "Add job to cgroup of this name",
4372                 .category = FIO_OPT_C_GENERAL,
4373                 .group  = FIO_OPT_G_CGROUP,
4374         },
4375         {
4376                 .name   = "cgroup_nodelete",
4377                 .lname  = "Cgroup no-delete",
4378                 .type   = FIO_OPT_BOOL,
4379                 .off1   = offsetof(struct thread_options, cgroup_nodelete),
4380                 .help   = "Do not delete cgroups after job completion",
4381                 .def    = "0",
4382                 .parent = "cgroup",
4383                 .category = FIO_OPT_C_GENERAL,
4384                 .group  = FIO_OPT_G_CGROUP,
4385         },
4386         {
4387                 .name   = "cgroup_weight",
4388                 .lname  = "Cgroup weight",
4389                 .type   = FIO_OPT_INT,
4390                 .off1   = offsetof(struct thread_options, cgroup_weight),
4391                 .help   = "Use given weight for cgroup",
4392                 .minval = 100,
4393                 .maxval = 1000,
4394                 .parent = "cgroup",
4395                 .category = FIO_OPT_C_GENERAL,
4396                 .group  = FIO_OPT_G_CGROUP,
4397         },
4398         {
4399                 .name   = "uid",
4400                 .lname  = "User ID",
4401                 .type   = FIO_OPT_INT,
4402                 .off1   = offsetof(struct thread_options, uid),
4403                 .help   = "Run job with this user ID",
4404                 .category = FIO_OPT_C_GENERAL,
4405                 .group  = FIO_OPT_G_CRED,
4406         },
4407         {
4408                 .name   = "gid",
4409                 .lname  = "Group ID",
4410                 .type   = FIO_OPT_INT,
4411                 .off1   = offsetof(struct thread_options, gid),
4412                 .help   = "Run job with this group ID",
4413                 .category = FIO_OPT_C_GENERAL,
4414                 .group  = FIO_OPT_G_CRED,
4415         },
4416         {
4417                 .name   = "kb_base",
4418                 .lname  = "KB Base",
4419                 .type   = FIO_OPT_INT,
4420                 .off1   = offsetof(struct thread_options, kb_base),
4421                 .prio   = 1,
4422                 .def    = "1024",
4423                 .posval = {
4424                           { .ival = "1024",
4425                             .oval = 1024,
4426                             .help = "Inputs invert IEC and SI prefixes (for compatibility); outputs prefer binary",
4427                           },
4428                           { .ival = "1000",
4429                             .oval = 1000,
4430                             .help = "Inputs use IEC and SI prefixes; outputs prefer SI",
4431                           },
4432                 },
4433                 .help   = "Unit prefix interpretation for quantities of data (IEC and SI)",
4434                 .category = FIO_OPT_C_GENERAL,
4435                 .group  = FIO_OPT_G_INVALID,
4436         },
4437         {
4438                 .name   = "unit_base",
4439                 .lname  = "Unit for quantities of data (Bits or Bytes)",
4440                 .type   = FIO_OPT_INT,
4441                 .off1   = offsetof(struct thread_options, unit_base),
4442                 .prio   = 1,
4443                 .posval = {
4444                           { .ival = "0",
4445                             .oval = N2S_NONE,
4446                             .help = "Auto-detect",
4447                           },
4448                           { .ival = "8",
4449                             .oval = N2S_BYTEPERSEC,
4450                             .help = "Normal (byte based)",
4451                           },
4452                           { .ival = "1",
4453                             .oval = N2S_BITPERSEC,
4454                             .help = "Bit based",
4455                           },
4456                 },
4457                 .help   = "Bit multiple of result summary data (8 for byte, 1 for bit)",
4458                 .category = FIO_OPT_C_GENERAL,
4459                 .group  = FIO_OPT_G_INVALID,
4460         },
4461         {
4462                 .name   = "hugepage-size",
4463                 .lname  = "Hugepage size",
4464                 .type   = FIO_OPT_INT,
4465                 .off1   = offsetof(struct thread_options, hugepage_size),
4466                 .help   = "When using hugepages, specify size of each page",
4467                 .def    = __fio_stringify(FIO_HUGE_PAGE),
4468                 .interval = 1024 * 1024,
4469                 .category = FIO_OPT_C_GENERAL,
4470                 .group  = FIO_OPT_G_INVALID,
4471         },
4472         {
4473                 .name   = "flow_id",
4474                 .lname  = "I/O flow ID",
4475                 .type   = FIO_OPT_INT,
4476                 .off1   = offsetof(struct thread_options, flow_id),
4477                 .help   = "The flow index ID to use",
4478                 .def    = "0",
4479                 .category = FIO_OPT_C_IO,
4480                 .group  = FIO_OPT_G_IO_FLOW,
4481         },
4482         {
4483                 .name   = "flow",
4484                 .lname  = "I/O flow weight",
4485                 .type   = FIO_OPT_INT,
4486                 .off1   = offsetof(struct thread_options, flow),
4487                 .help   = "Weight for flow control of this job",
4488                 .parent = "flow_id",
4489                 .hide   = 1,
4490                 .def    = "0",
4491                 .category = FIO_OPT_C_IO,
4492                 .group  = FIO_OPT_G_IO_FLOW,
4493         },
4494         {
4495                 .name   = "flow_watermark",
4496                 .lname  = "I/O flow watermark",
4497                 .type   = FIO_OPT_INT,
4498                 .off1   = offsetof(struct thread_options, flow_watermark),
4499                 .help   = "High watermark for flow control. This option"
4500                         " should be set to the same value for all threads"
4501                         " with non-zero flow.",
4502                 .parent = "flow_id",
4503                 .hide   = 1,
4504                 .def    = "1024",
4505                 .category = FIO_OPT_C_IO,
4506                 .group  = FIO_OPT_G_IO_FLOW,
4507         },
4508         {
4509                 .name   = "flow_sleep",
4510                 .lname  = "I/O flow sleep",
4511                 .type   = FIO_OPT_INT,
4512                 .off1   = offsetof(struct thread_options, flow_sleep),
4513                 .help   = "How many microseconds to sleep after being held"
4514                         " back by the flow control mechanism",
4515                 .parent = "flow_id",
4516                 .hide   = 1,
4517                 .def    = "0",
4518                 .category = FIO_OPT_C_IO,
4519                 .group  = FIO_OPT_G_IO_FLOW,
4520         },
4521         {
4522                 .name   = "steadystate",
4523                 .lname  = "Steady state threshold",
4524                 .alias  = "ss",
4525                 .type   = FIO_OPT_STR,
4526                 .off1   = offsetof(struct thread_options, ss_state),
4527                 .cb     = str_steadystate_cb,
4528                 .help   = "Define the criterion and limit to judge when a job has reached steady state",
4529                 .def    = "iops_slope:0.01%",
4530                 .posval = {
4531                           { .ival = "iops",
4532                             .oval = FIO_SS_IOPS,
4533                             .help = "maximum mean deviation of IOPS measurements",
4534                           },
4535                           { .ival = "iops_slope",
4536                             .oval = FIO_SS_IOPS_SLOPE,
4537                             .help = "slope calculated from IOPS measurements",
4538                           },
4539                           { .ival = "bw",
4540                             .oval = FIO_SS_BW,
4541                             .help = "maximum mean deviation of bandwidth measurements",
4542                           },
4543                           {
4544                             .ival = "bw_slope",
4545                             .oval = FIO_SS_BW_SLOPE,
4546                             .help = "slope calculated from bandwidth measurements",
4547                           },
4548                 },
4549                 .category = FIO_OPT_C_GENERAL,
4550                 .group  = FIO_OPT_G_RUNTIME,
4551         },
4552         {
4553                 .name   = "steadystate_duration",
4554                 .lname  = "Steady state duration",
4555                 .alias  = "ss_dur",
4556                 .parent = "steadystate",
4557                 .type   = FIO_OPT_STR_VAL_TIME,
4558                 .off1   = offsetof(struct thread_options, ss_dur),
4559                 .help   = "Stop workload upon attaining steady state for specified duration",
4560                 .def    = "0",
4561                 .is_seconds = 1,
4562                 .is_time = 1,
4563                 .category = FIO_OPT_C_GENERAL,
4564                 .group  = FIO_OPT_G_RUNTIME,
4565         },
4566         {
4567                 .name   = "steadystate_ramp_time",
4568                 .lname  = "Steady state ramp time",
4569                 .alias  = "ss_ramp",
4570                 .parent = "steadystate",
4571                 .type   = FIO_OPT_STR_VAL_TIME,
4572                 .off1   = offsetof(struct thread_options, ss_ramp_time),
4573                 .help   = "Delay before initiation of data collection for steady state job termination testing",
4574                 .def    = "0",
4575                 .is_seconds = 1,
4576                 .is_time = 1,
4577                 .category = FIO_OPT_C_GENERAL,
4578                 .group  = FIO_OPT_G_RUNTIME,
4579         },
4580         {
4581                 .name = NULL,
4582         },
4583 };
4584
4585 static void add_to_lopt(struct option *lopt, struct fio_option *o,
4586                         const char *name, int val)
4587 {
4588         lopt->name = (char *) name;
4589         lopt->val = val;
4590         if (o->type == FIO_OPT_STR_SET)
4591                 lopt->has_arg = optional_argument;
4592         else
4593                 lopt->has_arg = required_argument;
4594 }
4595
4596 static void options_to_lopts(struct fio_option *opts,
4597                               struct option *long_options,
4598                               int i, int option_type)
4599 {
4600         struct fio_option *o = &opts[0];
4601         while (o->name) {
4602                 add_to_lopt(&long_options[i], o, o->name, option_type);
4603                 if (o->alias) {
4604                         i++;
4605                         add_to_lopt(&long_options[i], o, o->alias, option_type);
4606                 }
4607
4608                 i++;
4609                 o++;
4610                 assert(i < FIO_NR_OPTIONS);
4611         }
4612 }
4613
4614 void fio_options_set_ioengine_opts(struct option *long_options,
4615                                    struct thread_data *td)
4616 {
4617         unsigned int i;
4618
4619         i = 0;
4620         while (long_options[i].name) {
4621                 if (long_options[i].val == FIO_GETOPT_IOENGINE) {
4622                         memset(&long_options[i], 0, sizeof(*long_options));
4623                         break;
4624                 }
4625                 i++;
4626         }
4627
4628         /*
4629          * Just clear out the prior ioengine options.
4630          */
4631         if (!td || !td->eo)
4632                 return;
4633
4634         options_to_lopts(td->io_ops->options, long_options, i,
4635                          FIO_GETOPT_IOENGINE);
4636 }
4637
4638 void fio_options_dup_and_init(struct option *long_options)
4639 {
4640         unsigned int i;
4641
4642         options_init(fio_options);
4643
4644         i = 0;
4645         while (long_options[i].name)
4646                 i++;
4647
4648         options_to_lopts(fio_options, long_options, i, FIO_GETOPT_JOB);
4649 }
4650
4651 struct fio_keyword {
4652         const char *word;
4653         const char *desc;
4654         char *replace;
4655 };
4656
4657 static struct fio_keyword fio_keywords[] = {
4658         {
4659                 .word   = "$pagesize",
4660                 .desc   = "Page size in the system",
4661         },
4662         {
4663                 .word   = "$mb_memory",
4664                 .desc   = "Megabytes of memory online",
4665         },
4666         {
4667                 .word   = "$ncpus",
4668                 .desc   = "Number of CPUs online in the system",
4669         },
4670         {
4671                 .word   = NULL,
4672         },
4673 };
4674
4675 void fio_keywords_exit(void)
4676 {
4677         struct fio_keyword *kw;
4678
4679         kw = &fio_keywords[0];
4680         while (kw->word) {
4681                 free(kw->replace);
4682                 kw->replace = NULL;
4683                 kw++;
4684         }
4685 }
4686
4687 void fio_keywords_init(void)
4688 {
4689         unsigned long long mb_memory;
4690         char buf[128];
4691         long l;
4692
4693         sprintf(buf, "%lu", (unsigned long) page_size);
4694         fio_keywords[0].replace = strdup(buf);
4695
4696         mb_memory = os_phys_mem() / (1024 * 1024);
4697         sprintf(buf, "%llu", mb_memory);
4698         fio_keywords[1].replace = strdup(buf);
4699
4700         l = cpus_online();
4701         sprintf(buf, "%lu", l);
4702         fio_keywords[2].replace = strdup(buf);
4703 }
4704
4705 #define BC_APP          "bc"
4706
4707 static char *bc_calc(char *str)
4708 {
4709         char buf[128], *tmp;
4710         FILE *f;
4711         int ret;
4712
4713         /*
4714          * No math, just return string
4715          */
4716         if ((!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
4717              !strchr(str, '/')) || strchr(str, '\''))
4718                 return str;
4719
4720         /*
4721          * Split option from value, we only need to calculate the value
4722          */
4723         tmp = strchr(str, '=');
4724         if (!tmp)
4725                 return str;
4726
4727         tmp++;
4728
4729         /*
4730          * Prevent buffer overflows; such a case isn't reasonable anyway
4731          */
4732         if (strlen(str) >= 128 || strlen(tmp) > 100)
4733                 return str;
4734
4735         sprintf(buf, "which %s > /dev/null", BC_APP);
4736         if (system(buf)) {
4737                 log_err("fio: bc is needed for performing math\n");
4738                 return NULL;
4739         }
4740
4741         sprintf(buf, "echo '%s' | %s", tmp, BC_APP);
4742         f = popen(buf, "r");
4743         if (!f)
4744                 return NULL;
4745
4746         ret = fread(&buf[tmp - str], 1, 128 - (tmp - str), f);
4747         if (ret <= 0) {
4748                 pclose(f);
4749                 return NULL;
4750         }
4751
4752         pclose(f);
4753         buf[(tmp - str) + ret - 1] = '\0';
4754         memcpy(buf, str, tmp - str);
4755         free(str);
4756         return strdup(buf);
4757 }
4758
4759 /*
4760  * Return a copy of the input string with substrings of the form ${VARNAME}
4761  * substituted with the value of the environment variable VARNAME.  The
4762  * substitution always occurs, even if VARNAME is empty or the corresponding
4763  * environment variable undefined.
4764  */
4765 char *fio_option_dup_subs(const char *opt)
4766 {
4767         char out[OPT_LEN_MAX+1];
4768         char in[OPT_LEN_MAX+1];
4769         char *outptr = out;
4770         char *inptr = in;
4771         char *ch1, *ch2, *env;
4772         ssize_t nchr = OPT_LEN_MAX;
4773         size_t envlen;
4774
4775         if (strlen(opt) + 1 > OPT_LEN_MAX) {
4776                 log_err("OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
4777                 return NULL;
4778         }
4779
4780         in[OPT_LEN_MAX] = '\0';
4781         strncpy(in, opt, OPT_LEN_MAX);
4782
4783         while (*inptr && nchr > 0) {
4784                 if (inptr[0] == '$' && inptr[1] == '{') {
4785                         ch2 = strchr(inptr, '}');
4786                         if (ch2 && inptr+1 < ch2) {
4787                                 ch1 = inptr+2;
4788                                 inptr = ch2+1;
4789                                 *ch2 = '\0';
4790
4791                                 env = getenv(ch1);
4792                                 if (env) {
4793                                         envlen = strlen(env);
4794                                         if (envlen <= nchr) {
4795                                                 memcpy(outptr, env, envlen);
4796                                                 outptr += envlen;
4797                                                 nchr -= envlen;
4798                                         }
4799                                 }
4800
4801                                 continue;
4802                         }
4803                 }
4804
4805                 *outptr++ = *inptr++;
4806                 --nchr;
4807         }
4808
4809         *outptr = '\0';
4810         return strdup(out);
4811 }
4812
4813 /*
4814  * Look for reserved variable names and replace them with real values
4815  */
4816 static char *fio_keyword_replace(char *opt)
4817 {
4818         char *s;
4819         int i;
4820         int docalc = 0;
4821
4822         for (i = 0; fio_keywords[i].word != NULL; i++) {
4823                 struct fio_keyword *kw = &fio_keywords[i];
4824
4825                 while ((s = strstr(opt, kw->word)) != NULL) {
4826                         char *new = malloc(strlen(opt) + 1);
4827                         char *o_org = opt;
4828                         int olen = s - opt;
4829                         int len;
4830
4831                         /*
4832                          * Copy part of the string before the keyword and
4833                          * sprintf() the replacement after it.
4834                          */
4835                         memcpy(new, opt, olen);
4836                         len = sprintf(new + olen, "%s", kw->replace);
4837
4838                         /*
4839                          * If there's more in the original string, copy that
4840                          * in too
4841                          */
4842                         opt += strlen(kw->word) + olen;
4843                         if (strlen(opt))
4844                                 memcpy(new + olen + len, opt, opt - o_org - 1);
4845
4846                         /*
4847                          * replace opt and free the old opt
4848                          */
4849                         opt = new;
4850                         free(o_org);
4851
4852                         docalc = 1;
4853                 }
4854         }
4855
4856         /*
4857          * Check for potential math and invoke bc, if possible
4858          */
4859         if (docalc)
4860                 opt = bc_calc(opt);
4861
4862         return opt;
4863 }
4864
4865 static char **dup_and_sub_options(char **opts, int num_opts)
4866 {
4867         int i;
4868         char **opts_copy = malloc(num_opts * sizeof(*opts));
4869         for (i = 0; i < num_opts; i++) {
4870                 opts_copy[i] = fio_option_dup_subs(opts[i]);
4871                 if (!opts_copy[i])
4872                         continue;
4873                 opts_copy[i] = fio_keyword_replace(opts_copy[i]);
4874         }
4875         return opts_copy;
4876 }
4877
4878 static void show_closest_option(const char *opt)
4879 {
4880         int best_option, best_distance;
4881         int i, distance;
4882         char *name;
4883
4884         if (!strlen(opt))
4885                 return;
4886
4887         name = strdup(opt);
4888         i = 0;
4889         while (name[i] != '\0' && name[i] != '=')
4890                 i++;
4891         name[i] = '\0';
4892
4893         best_option = -1;
4894         best_distance = INT_MAX;
4895         i = 0;
4896         while (fio_options[i].name) {
4897                 distance = string_distance(name, fio_options[i].name);
4898                 if (distance < best_distance) {
4899                         best_distance = distance;
4900                         best_option = i;
4901                 }
4902                 i++;
4903         }
4904
4905         if (best_option != -1 && string_distance_ok(name, best_distance) &&
4906             fio_options[best_option].type != FIO_OPT_UNSUPPORTED)
4907                 log_err("Did you mean %s?\n", fio_options[best_option].name);
4908
4909         free(name);
4910 }
4911
4912 int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
4913 {
4914         int i, ret, unknown;
4915         char **opts_copy;
4916
4917         sort_options(opts, fio_options, num_opts);
4918         opts_copy = dup_and_sub_options(opts, num_opts);
4919
4920         for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
4921                 const struct fio_option *o;
4922                 int newret = parse_option(opts_copy[i], opts[i], fio_options,
4923                                                 &o, &td->o, &td->opt_list);
4924
4925                 if (!newret && o)
4926                         fio_option_mark_set(&td->o, o);
4927
4928                 if (opts_copy[i]) {
4929                         if (newret && !o) {
4930                                 unknown++;
4931                                 continue;
4932                         }
4933                         free(opts_copy[i]);
4934                         opts_copy[i] = NULL;
4935                 }
4936
4937                 ret |= newret;
4938         }
4939
4940         if (unknown) {
4941                 ret |= ioengine_load(td);
4942                 if (td->eo) {
4943                         sort_options(opts_copy, td->io_ops->options, num_opts);
4944                         opts = opts_copy;
4945                 }
4946                 for (i = 0; i < num_opts; i++) {
4947                         const struct fio_option *o = NULL;
4948                         int newret = 1;
4949
4950                         if (!opts_copy[i])
4951                                 continue;
4952
4953                         if (td->eo)
4954                                 newret = parse_option(opts_copy[i], opts[i],
4955                                                       td->io_ops->options, &o,
4956                                                       td->eo, &td->opt_list);
4957
4958                         ret |= newret;
4959                         if (!o) {
4960                                 log_err("Bad option <%s>\n", opts[i]);
4961                                 show_closest_option(opts[i]);
4962                         }
4963                         free(opts_copy[i]);
4964                         opts_copy[i] = NULL;
4965                 }
4966         }
4967
4968         free(opts_copy);
4969         return ret;
4970 }
4971
4972 int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
4973 {
4974         int ret;
4975
4976         ret = parse_cmd_option(opt, val, fio_options, &td->o, &td->opt_list);
4977         if (!ret) {
4978                 const struct fio_option *o;
4979
4980                 o = find_option_c(fio_options, opt);
4981                 if (o)
4982                         fio_option_mark_set(&td->o, o);
4983         }
4984
4985         return ret;
4986 }
4987
4988 int fio_cmd_ioengine_option_parse(struct thread_data *td, const char *opt,
4989                                 char *val)
4990 {
4991         return parse_cmd_option(opt, val, td->io_ops->options, td->eo,
4992                                         &td->opt_list);
4993 }
4994
4995 void fio_fill_default_options(struct thread_data *td)
4996 {
4997         td->o.magic = OPT_MAGIC;
4998         fill_default_options(&td->o, fio_options);
4999 }
5000
5001 int fio_show_option_help(const char *opt)
5002 {
5003         return show_cmd_help(fio_options, opt);
5004 }
5005
5006 /*
5007  * dupe FIO_OPT_STR_STORE options
5008  */
5009 void fio_options_mem_dupe(struct thread_data *td)
5010 {
5011         options_mem_dupe(fio_options, &td->o);
5012
5013         if (td->eo && td->io_ops) {
5014                 void *oldeo = td->eo;
5015
5016                 td->eo = malloc(td->io_ops->option_struct_size);
5017                 memcpy(td->eo, oldeo, td->io_ops->option_struct_size);
5018                 options_mem_dupe(td->io_ops->options, td->eo);
5019         }
5020 }
5021
5022 unsigned int fio_get_kb_base(void *data)
5023 {
5024         struct thread_data *td = cb_data_to_td(data);
5025         struct thread_options *o = &td->o;
5026         unsigned int kb_base = 0;
5027
5028         /*
5029          * This is a hack... For private options, *data is not holding
5030          * a pointer to the thread_options, but to private data. This means
5031          * we can't safely dereference it, but magic is first so mem wise
5032          * it is valid. But this also means that if the job first sets
5033          * kb_base and expects that to be honored by private options,
5034          * it will be disappointed. We will return the global default
5035          * for this.
5036          */
5037         if (o && o->magic == OPT_MAGIC)
5038                 kb_base = o->kb_base;
5039         if (!kb_base)
5040                 kb_base = 1024;
5041
5042         return kb_base;
5043 }
5044
5045 int add_option(const struct fio_option *o)
5046 {
5047         struct fio_option *__o;
5048         int opt_index = 0;
5049
5050         __o = fio_options;
5051         while (__o->name) {
5052                 opt_index++;
5053                 __o++;
5054         }
5055
5056         if (opt_index + 1 == FIO_MAX_OPTS) {
5057                 log_err("fio: FIO_MAX_OPTS is too small\n");
5058                 return 1;
5059         }
5060
5061         memcpy(&fio_options[opt_index], o, sizeof(*o));
5062         fio_options[opt_index + 1].name = NULL;
5063         return 0;
5064 }
5065
5066 void invalidate_profile_options(const char *prof_name)
5067 {
5068         struct fio_option *o;
5069
5070         o = fio_options;
5071         while (o->name) {
5072                 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
5073                         o->type = FIO_OPT_INVALID;
5074                         o->prof_name = NULL;
5075                 }
5076                 o++;
5077         }
5078 }
5079
5080 void add_opt_posval(const char *optname, const char *ival, const char *help)
5081 {
5082         struct fio_option *o;
5083         unsigned int i;
5084
5085         o = find_option(fio_options, optname);
5086         if (!o)
5087                 return;
5088
5089         for (i = 0; i < PARSE_MAX_VP; i++) {
5090                 if (o->posval[i].ival)
5091                         continue;
5092
5093                 o->posval[i].ival = ival;
5094                 o->posval[i].help = help;
5095                 break;
5096         }
5097 }
5098
5099 void del_opt_posval(const char *optname, const char *ival)
5100 {
5101         struct fio_option *o;
5102         unsigned int i;
5103
5104         o = find_option(fio_options, optname);
5105         if (!o)
5106                 return;
5107
5108         for (i = 0; i < PARSE_MAX_VP; i++) {
5109                 if (!o->posval[i].ival)
5110                         continue;
5111                 if (strcmp(o->posval[i].ival, ival))
5112                         continue;
5113
5114                 o->posval[i].ival = NULL;
5115                 o->posval[i].help = NULL;
5116         }
5117 }
5118
5119 void fio_options_free(struct thread_data *td)
5120 {
5121         options_free(fio_options, &td->o);
5122         if (td->eo && td->io_ops && td->io_ops->options) {
5123                 options_free(td->io_ops->options, td->eo);
5124                 free(td->eo);
5125                 td->eo = NULL;
5126         }
5127 }
5128
5129 struct fio_option *fio_option_find(const char *name)
5130 {
5131         return find_option(fio_options, name);
5132 }
5133
5134 static struct fio_option *find_next_opt(struct fio_option *from,
5135                                         unsigned int off1)
5136 {
5137         struct fio_option *opt;
5138
5139         if (!from)
5140                 from = &fio_options[0];
5141         else
5142                 from++;
5143
5144         opt = NULL;
5145         do {
5146                 if (off1 == from->off1) {
5147                         opt = from;
5148                         break;
5149                 }
5150                 from++;
5151         } while (from->name);
5152
5153         return opt;
5154 }
5155
5156 static int opt_is_set(struct thread_options *o, struct fio_option *opt)
5157 {
5158         unsigned int opt_off, index, offset;
5159
5160         opt_off = opt - &fio_options[0];
5161         index = opt_off / (8 * sizeof(uint64_t));
5162         offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5163         return (o->set_options[index] & ((uint64_t)1 << offset)) != 0;
5164 }
5165
5166 bool __fio_option_is_set(struct thread_options *o, unsigned int off1)
5167 {
5168         struct fio_option *opt, *next;
5169
5170         next = NULL;
5171         while ((opt = find_next_opt(next, off1)) != NULL) {
5172                 if (opt_is_set(o, opt))
5173                         return true;
5174
5175                 next = opt;
5176         }
5177
5178         return false;
5179 }
5180
5181 void fio_option_mark_set(struct thread_options *o, const struct fio_option *opt)
5182 {
5183         unsigned int opt_off, index, offset;
5184
5185         opt_off = opt - &fio_options[0];
5186         index = opt_off / (8 * sizeof(uint64_t));
5187         offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5188         o->set_options[index] |= (uint64_t)1 << offset;
5189 }