client: cleanup output types
[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 char* get_name_by_idx(char *input, int index)
1244 {
1245         unsigned int cur_idx;
1246         char *fname, *str, *p;
1247
1248         p = str = strdup(input);
1249
1250         index %= get_max_name_idx(input);
1251         for (cur_idx = 0; cur_idx <= index; cur_idx++)
1252                 fname = get_next_name(&str);
1253
1254         fname = strdup(fname);
1255         free(p);
1256
1257         return fname;
1258 }
1259
1260 static int str_filename_cb(void *data, const char *input)
1261 {
1262         struct thread_data *td = cb_data_to_td(data);
1263         char *fname, *str, *p;
1264
1265         p = str = strdup(input);
1266
1267         strip_blank_front(&str);
1268         strip_blank_end(str);
1269
1270         /*
1271          * Ignore what we may already have from nrfiles option.
1272          */
1273         if (!td->files_index)
1274                 td->o.nr_files = 0;
1275
1276         while ((fname = get_next_name(&str)) != NULL) {
1277                 if (!strlen(fname))
1278                         break;
1279                 add_file(td, fname, 0, 1);
1280         }
1281
1282         free(p);
1283         return 0;
1284 }
1285
1286 static int str_directory_cb(void *data, const char fio_unused *unused)
1287 {
1288         struct thread_data *td = cb_data_to_td(data);
1289         struct stat sb;
1290         char *dirname, *str, *p;
1291         int ret = 0;
1292
1293         if (parse_dryrun())
1294                 return 0;
1295
1296         p = str = strdup(td->o.directory);
1297         while ((dirname = get_next_name(&str)) != NULL) {
1298                 if (lstat(dirname, &sb) < 0) {
1299                         ret = errno;
1300
1301                         log_err("fio: %s is not a directory\n", dirname);
1302                         td_verror(td, ret, "lstat");
1303                         goto out;
1304                 }
1305                 if (!S_ISDIR(sb.st_mode)) {
1306                         log_err("fio: %s is not a directory\n", dirname);
1307                         ret = 1;
1308                         goto out;
1309                 }
1310         }
1311
1312 out:
1313         free(p);
1314         return ret;
1315 }
1316
1317 static int str_opendir_cb(void *data, const char fio_unused *str)
1318 {
1319         struct thread_data *td = cb_data_to_td(data);
1320
1321         if (parse_dryrun())
1322                 return 0;
1323
1324         if (!td->files_index)
1325                 td->o.nr_files = 0;
1326
1327         return add_dir_files(td, td->o.opendir);
1328 }
1329
1330 static int str_buffer_pattern_cb(void *data, const char *input)
1331 {
1332         struct thread_data *td = cb_data_to_td(data);
1333         int ret;
1334
1335         /* FIXME: for now buffer pattern does not support formats */
1336         ret = parse_and_fill_pattern(input, strlen(input), td->o.buffer_pattern,
1337                                      MAX_PATTERN_SIZE, NULL, 0, NULL, NULL);
1338         if (ret < 0)
1339                 return 1;
1340
1341         assert(ret != 0);
1342         td->o.buffer_pattern_bytes = ret;
1343
1344         /*
1345          * If this job is doing any reading or has compression set,
1346          * ensure that we refill buffers for writes or we could be
1347          * invalidating the pattern through reads.
1348          */
1349         if (!td->o.compress_percentage && !td_read(td))
1350                 td->o.refill_buffers = 0;
1351         else
1352                 td->o.refill_buffers = 1;
1353
1354         td->o.scramble_buffers = 0;
1355         td->o.zero_buffers = 0;
1356
1357         return 0;
1358 }
1359
1360 static int str_buffer_compress_cb(void *data, unsigned long long *il)
1361 {
1362         struct thread_data *td = cb_data_to_td(data);
1363
1364         td->flags |= TD_F_COMPRESS;
1365         td->o.compress_percentage = *il;
1366         return 0;
1367 }
1368
1369 static int str_dedupe_cb(void *data, unsigned long long *il)
1370 {
1371         struct thread_data *td = cb_data_to_td(data);
1372
1373         td->flags |= TD_F_COMPRESS;
1374         td->o.dedupe_percentage = *il;
1375         td->o.refill_buffers = 1;
1376         return 0;
1377 }
1378
1379 static int str_verify_pattern_cb(void *data, const char *input)
1380 {
1381         struct thread_data *td = cb_data_to_td(data);
1382         int ret;
1383
1384         td->o.verify_fmt_sz = ARRAY_SIZE(td->o.verify_fmt);
1385         ret = parse_and_fill_pattern(input, strlen(input), td->o.verify_pattern,
1386                                      MAX_PATTERN_SIZE, fmt_desc, sizeof(fmt_desc),
1387                                      td->o.verify_fmt, &td->o.verify_fmt_sz);
1388         if (ret < 0)
1389                 return 1;
1390
1391         assert(ret != 0);
1392         td->o.verify_pattern_bytes = ret;
1393         /*
1394          * VERIFY_* could already be set
1395          */
1396         if (!fio_option_is_set(&td->o, verify))
1397                 td->o.verify = VERIFY_PATTERN;
1398
1399         return 0;
1400 }
1401
1402 static int str_gtod_reduce_cb(void *data, int *il)
1403 {
1404         struct thread_data *td = cb_data_to_td(data);
1405         int val = *il;
1406
1407         td->o.disable_lat = !!val;
1408         td->o.disable_clat = !!val;
1409         td->o.disable_slat = !!val;
1410         td->o.disable_bw = !!val;
1411         td->o.clat_percentiles = !val;
1412         if (val)
1413                 td->ts_cache_mask = 63;
1414
1415         return 0;
1416 }
1417
1418 static int str_offset_cb(void *data, unsigned long long *__val)
1419 {
1420         struct thread_data *td = cb_data_to_td(data);
1421         unsigned long long v = *__val;
1422
1423         if (parse_is_percent(v)) {
1424                 td->o.start_offset = 0;
1425                 td->o.start_offset_percent = -1ULL - v;
1426                 dprint(FD_PARSE, "SET start_offset_percent %d\n",
1427                                         td->o.start_offset_percent);
1428         } else
1429                 td->o.start_offset = v;
1430
1431         return 0;
1432 }
1433
1434 static int str_size_cb(void *data, unsigned long long *__val)
1435 {
1436         struct thread_data *td = cb_data_to_td(data);
1437         unsigned long long v = *__val;
1438
1439         if (parse_is_percent(v)) {
1440                 td->o.size = 0;
1441                 td->o.size_percent = -1ULL - v;
1442                 dprint(FD_PARSE, "SET size_percent %d\n",
1443                                         td->o.size_percent);
1444         } else
1445                 td->o.size = v;
1446
1447         return 0;
1448 }
1449
1450 static int str_write_bw_log_cb(void *data, const char *str)
1451 {
1452         struct thread_data *td = cb_data_to_td(data);
1453
1454         if (str)
1455                 td->o.bw_log_file = strdup(str);
1456
1457         td->o.write_bw_log = 1;
1458         return 0;
1459 }
1460
1461 static int str_write_lat_log_cb(void *data, const char *str)
1462 {
1463         struct thread_data *td = cb_data_to_td(data);
1464
1465         if (str)
1466                 td->o.lat_log_file = strdup(str);
1467
1468         td->o.write_lat_log = 1;
1469         return 0;
1470 }
1471
1472 static int str_write_iops_log_cb(void *data, const char *str)
1473 {
1474         struct thread_data *td = cb_data_to_td(data);
1475
1476         if (str)
1477                 td->o.iops_log_file = strdup(str);
1478
1479         td->o.write_iops_log = 1;
1480         return 0;
1481 }
1482
1483 static int str_write_hist_log_cb(void *data, const char *str)
1484 {
1485         struct thread_data *td = cb_data_to_td(data);
1486
1487         if (str)
1488                 td->o.hist_log_file = strdup(str);
1489
1490         td->o.write_hist_log = 1;
1491         return 0;
1492 }
1493
1494 /*
1495  * str is supposed to be a substring of the strdup'd original string,
1496  * and is valid only if it's a regular file path.
1497  * This function keeps the pointer to the path as needed later.
1498  *
1499  * "external:/path/to/so\0" <- original pointer updated with strdup'd
1500  * "external\0"             <- above pointer after parsed, i.e. ->ioengine
1501  *          "/path/to/so\0" <- str argument, i.e. ->ioengine_so_path
1502  */
1503 static int str_ioengine_external_cb(void *data, const char *str)
1504 {
1505         struct thread_data *td = cb_data_to_td(data);
1506         struct stat sb;
1507         char *p;
1508
1509         if (!str) {
1510                 log_err("fio: null external ioengine path\n");
1511                 return 1;
1512         }
1513
1514         p = (char *)str; /* str is mutable */
1515         strip_blank_front(&p);
1516         strip_blank_end(p);
1517
1518         if (stat(p, &sb) || !S_ISREG(sb.st_mode)) {
1519                 log_err("fio: invalid external ioengine path \"%s\"\n", p);
1520                 return 1;
1521         }
1522
1523         td->o.ioengine_so_path = p;
1524         return 0;
1525 }
1526
1527 static int rw_verify(const struct fio_option *o, void *data)
1528 {
1529         struct thread_data *td = cb_data_to_td(data);
1530
1531         if (read_only && (td_write(td) || td_trim(td))) {
1532                 log_err("fio: job <%s> has write or trim bit set, but"
1533                         " fio is in read-only mode\n", td->o.name);
1534                 return 1;
1535         }
1536
1537         return 0;
1538 }
1539
1540 static int gtod_cpu_verify(const struct fio_option *o, void *data)
1541 {
1542 #ifndef FIO_HAVE_CPU_AFFINITY
1543         struct thread_data *td = cb_data_to_td(data);
1544
1545         if (td->o.gtod_cpu) {
1546                 log_err("fio: platform must support CPU affinity for"
1547                         "gettimeofday() offloading\n");
1548                 return 1;
1549         }
1550 #endif
1551
1552         return 0;
1553 }
1554
1555 /*
1556  * Map of job/command line options
1557  */
1558 struct fio_option fio_options[FIO_MAX_OPTS] = {
1559         {
1560                 .name   = "description",
1561                 .lname  = "Description of job",
1562                 .type   = FIO_OPT_STR_STORE,
1563                 .off1   = offsetof(struct thread_options, description),
1564                 .help   = "Text job description",
1565                 .category = FIO_OPT_C_GENERAL,
1566                 .group  = FIO_OPT_G_DESC,
1567         },
1568         {
1569                 .name   = "name",
1570                 .lname  = "Job name",
1571                 .type   = FIO_OPT_STR_STORE,
1572                 .off1   = offsetof(struct thread_options, name),
1573                 .help   = "Name of this job",
1574                 .category = FIO_OPT_C_GENERAL,
1575                 .group  = FIO_OPT_G_DESC,
1576         },
1577         {
1578                 .name   = "wait_for",
1579                 .lname  = "Waitee name",
1580                 .type   = FIO_OPT_STR_STORE,
1581                 .off1   = offsetof(struct thread_options, wait_for),
1582                 .help   = "Name of the job this one wants to wait for before starting",
1583                 .category = FIO_OPT_C_GENERAL,
1584                 .group  = FIO_OPT_G_DESC,
1585         },
1586         {
1587                 .name   = "filename",
1588                 .lname  = "Filename(s)",
1589                 .type   = FIO_OPT_STR_STORE,
1590                 .off1   = offsetof(struct thread_options, filename),
1591                 .cb     = str_filename_cb,
1592                 .prio   = -1, /* must come after "directory" */
1593                 .help   = "File(s) to use for the workload",
1594                 .category = FIO_OPT_C_FILE,
1595                 .group  = FIO_OPT_G_FILENAME,
1596         },
1597         {
1598                 .name   = "directory",
1599                 .lname  = "Directory",
1600                 .type   = FIO_OPT_STR_STORE,
1601                 .off1   = offsetof(struct thread_options, directory),
1602                 .cb     = str_directory_cb,
1603                 .help   = "Directory to store files in",
1604                 .category = FIO_OPT_C_FILE,
1605                 .group  = FIO_OPT_G_FILENAME,
1606         },
1607         {
1608                 .name   = "filename_format",
1609                 .lname  = "Filename Format",
1610                 .type   = FIO_OPT_STR_STORE,
1611                 .off1   = offsetof(struct thread_options, filename_format),
1612                 .prio   = -1, /* must come after "directory" */
1613                 .help   = "Override default $jobname.$jobnum.$filenum naming",
1614                 .def    = "$jobname.$jobnum.$filenum",
1615                 .category = FIO_OPT_C_FILE,
1616                 .group  = FIO_OPT_G_FILENAME,
1617         },
1618         {
1619                 .name   = "unique_filename",
1620                 .lname  = "Unique Filename",
1621                 .type   = FIO_OPT_BOOL,
1622                 .off1   = offsetof(struct thread_options, unique_filename),
1623                 .help   = "For network clients, prefix file with source IP",
1624                 .def    = "1",
1625                 .category = FIO_OPT_C_FILE,
1626                 .group  = FIO_OPT_G_FILENAME,
1627         },
1628         {
1629                 .name   = "lockfile",
1630                 .lname  = "Lockfile",
1631                 .type   = FIO_OPT_STR,
1632                 .off1   = offsetof(struct thread_options, file_lock_mode),
1633                 .help   = "Lock file when doing IO to it",
1634                 .prio   = 1,
1635                 .parent = "filename",
1636                 .hide   = 0,
1637                 .def    = "none",
1638                 .category = FIO_OPT_C_FILE,
1639                 .group  = FIO_OPT_G_FILENAME,
1640                 .posval = {
1641                           { .ival = "none",
1642                             .oval = FILE_LOCK_NONE,
1643                             .help = "No file locking",
1644                           },
1645                           { .ival = "exclusive",
1646                             .oval = FILE_LOCK_EXCLUSIVE,
1647                             .help = "Exclusive file lock",
1648                           },
1649                           {
1650                             .ival = "readwrite",
1651                             .oval = FILE_LOCK_READWRITE,
1652                             .help = "Read vs write lock",
1653                           },
1654                 },
1655         },
1656         {
1657                 .name   = "opendir",
1658                 .lname  = "Open directory",
1659                 .type   = FIO_OPT_STR_STORE,
1660                 .off1   = offsetof(struct thread_options, opendir),
1661                 .cb     = str_opendir_cb,
1662                 .help   = "Recursively add files from this directory and down",
1663                 .category = FIO_OPT_C_FILE,
1664                 .group  = FIO_OPT_G_FILENAME,
1665         },
1666         {
1667                 .name   = "rw",
1668                 .lname  = "Read/write",
1669                 .alias  = "readwrite",
1670                 .type   = FIO_OPT_STR,
1671                 .cb     = str_rw_cb,
1672                 .off1   = offsetof(struct thread_options, td_ddir),
1673                 .help   = "IO direction",
1674                 .def    = "read",
1675                 .verify = rw_verify,
1676                 .category = FIO_OPT_C_IO,
1677                 .group  = FIO_OPT_G_IO_BASIC,
1678                 .posval = {
1679                           { .ival = "read",
1680                             .oval = TD_DDIR_READ,
1681                             .help = "Sequential read",
1682                           },
1683                           { .ival = "write",
1684                             .oval = TD_DDIR_WRITE,
1685                             .help = "Sequential write",
1686                           },
1687                           { .ival = "trim",
1688                             .oval = TD_DDIR_TRIM,
1689                             .help = "Sequential trim",
1690                           },
1691                           { .ival = "randread",
1692                             .oval = TD_DDIR_RANDREAD,
1693                             .help = "Random read",
1694                           },
1695                           { .ival = "randwrite",
1696                             .oval = TD_DDIR_RANDWRITE,
1697                             .help = "Random write",
1698                           },
1699                           { .ival = "randtrim",
1700                             .oval = TD_DDIR_RANDTRIM,
1701                             .help = "Random trim",
1702                           },
1703                           { .ival = "rw",
1704                             .oval = TD_DDIR_RW,
1705                             .help = "Sequential read and write mix",
1706                           },
1707                           { .ival = "readwrite",
1708                             .oval = TD_DDIR_RW,
1709                             .help = "Sequential read and write mix",
1710                           },
1711                           { .ival = "randrw",
1712                             .oval = TD_DDIR_RANDRW,
1713                             .help = "Random read and write mix"
1714                           },
1715                           { .ival = "trimwrite",
1716                             .oval = TD_DDIR_TRIMWRITE,
1717                             .help = "Trim and write mix, trims preceding writes"
1718                           },
1719                 },
1720         },
1721         {
1722                 .name   = "rw_sequencer",
1723                 .lname  = "RW Sequencer",
1724                 .type   = FIO_OPT_STR,
1725                 .off1   = offsetof(struct thread_options, rw_seq),
1726                 .help   = "IO offset generator modifier",
1727                 .def    = "sequential",
1728                 .category = FIO_OPT_C_IO,
1729                 .group  = FIO_OPT_G_IO_BASIC,
1730                 .posval = {
1731                           { .ival = "sequential",
1732                             .oval = RW_SEQ_SEQ,
1733                             .help = "Generate sequential offsets",
1734                           },
1735                           { .ival = "identical",
1736                             .oval = RW_SEQ_IDENT,
1737                             .help = "Generate identical offsets",
1738                           },
1739                 },
1740         },
1741
1742         {
1743                 .name   = "ioengine",
1744                 .lname  = "IO Engine",
1745                 .type   = FIO_OPT_STR_STORE,
1746                 .off1   = offsetof(struct thread_options, ioengine),
1747                 .help   = "IO engine to use",
1748                 .def    = FIO_PREFERRED_ENGINE,
1749                 .category = FIO_OPT_C_IO,
1750                 .group  = FIO_OPT_G_IO_BASIC,
1751                 .posval = {
1752                           { .ival = "sync",
1753                             .help = "Use read/write",
1754                           },
1755                           { .ival = "psync",
1756                             .help = "Use pread/pwrite",
1757                           },
1758                           { .ival = "vsync",
1759                             .help = "Use readv/writev",
1760                           },
1761 #ifdef CONFIG_PWRITEV
1762                           { .ival = "pvsync",
1763                             .help = "Use preadv/pwritev",
1764                           },
1765 #endif
1766 #ifdef FIO_HAVE_PWRITEV2
1767                           { .ival = "pvsync2",
1768                             .help = "Use preadv2/pwritev2",
1769                           },
1770 #endif
1771 #ifdef CONFIG_LIBAIO
1772                           { .ival = "libaio",
1773                             .help = "Linux native asynchronous IO",
1774                           },
1775 #endif
1776 #ifdef CONFIG_POSIXAIO
1777                           { .ival = "posixaio",
1778                             .help = "POSIX asynchronous IO",
1779                           },
1780 #endif
1781 #ifdef CONFIG_SOLARISAIO
1782                           { .ival = "solarisaio",
1783                             .help = "Solaris native asynchronous IO",
1784                           },
1785 #endif
1786 #ifdef CONFIG_WINDOWSAIO
1787                           { .ival = "windowsaio",
1788                             .help = "Windows native asynchronous IO"
1789                           },
1790 #endif
1791 #ifdef CONFIG_RBD
1792                           { .ival = "rbd",
1793                             .help = "Rados Block Device asynchronous IO"
1794                           },
1795 #endif
1796                           { .ival = "mmap",
1797                             .help = "Memory mapped IO"
1798                           },
1799 #ifdef CONFIG_LINUX_SPLICE
1800                           { .ival = "splice",
1801                             .help = "splice/vmsplice based IO",
1802                           },
1803                           { .ival = "netsplice",
1804                             .help = "splice/vmsplice to/from the network",
1805                           },
1806 #endif
1807 #ifdef FIO_HAVE_SGIO
1808                           { .ival = "sg",
1809                             .help = "SCSI generic v3 IO",
1810                           },
1811 #endif
1812                           { .ival = "null",
1813                             .help = "Testing engine (no data transfer)",
1814                           },
1815                           { .ival = "net",
1816                             .help = "Network IO",
1817                           },
1818                           { .ival = "cpuio",
1819                             .help = "CPU cycle burner engine",
1820                           },
1821 #ifdef CONFIG_GUASI
1822                           { .ival = "guasi",
1823                             .help = "GUASI IO engine",
1824                           },
1825 #endif
1826 #ifdef CONFIG_RDMA
1827                           { .ival = "rdma",
1828                             .help = "RDMA IO engine",
1829                           },
1830 #endif
1831 #ifdef CONFIG_FUSION_AW
1832                           { .ival = "fusion-aw-sync",
1833                             .help = "Fusion-io atomic write engine",
1834                           },
1835 #endif
1836 #ifdef CONFIG_LINUX_EXT4_MOVE_EXTENT
1837                           { .ival = "e4defrag",
1838                             .help = "ext4 defrag engine",
1839                           },
1840 #endif
1841 #ifdef CONFIG_LINUX_FALLOCATE
1842                           { .ival = "falloc",
1843                             .help = "fallocate() file based engine",
1844                           },
1845 #endif
1846 #ifdef CONFIG_GFAPI
1847                           { .ival = "gfapi",
1848                             .help = "Glusterfs libgfapi(sync) based engine"
1849                           },
1850                           { .ival = "gfapi_async",
1851                             .help = "Glusterfs libgfapi(async) based engine"
1852                           },
1853 #endif
1854 #ifdef CONFIG_LIBHDFS
1855                           { .ival = "libhdfs",
1856                             .help = "Hadoop Distributed Filesystem (HDFS) engine"
1857                           },
1858 #endif
1859 #ifdef CONFIG_PMEMBLK
1860                           { .ival = "pmemblk",
1861                             .help = "PMDK libpmemblk based IO engine",
1862                           },
1863
1864 #endif
1865 #ifdef CONFIG_IME
1866                           { .ival = "ime_psync",
1867                             .help = "DDN's IME synchronous IO engine",
1868                           },
1869                           { .ival = "ime_psyncv",
1870                             .help = "DDN's IME synchronous IO engine using iovecs",
1871                           },
1872                           { .ival = "ime_aio",
1873                             .help = "DDN's IME asynchronous IO engine",
1874                           },
1875 #endif
1876 #ifdef CONFIG_LINUX_DEVDAX
1877                           { .ival = "dev-dax",
1878                             .help = "DAX Device based IO engine",
1879                           },
1880 #endif
1881                           {
1882                             .ival = "filecreate",
1883                             .help = "File creation engine",
1884                           },
1885                           { .ival = "external",
1886                             .help = "Load external engine (append name)",
1887                             .cb = str_ioengine_external_cb,
1888                           },
1889 #ifdef CONFIG_LIBPMEM
1890                           { .ival = "libpmem",
1891                             .help = "PMDK libpmem based IO engine",
1892                           },
1893 #endif
1894 #ifdef CONFIG_HTTP
1895                           { .ival = "http",
1896                             .help = "HTTP (WebDAV/S3) IO engine",
1897                           },
1898 #endif
1899                 },
1900         },
1901         {
1902                 .name   = "iodepth",
1903                 .lname  = "IO Depth",
1904                 .type   = FIO_OPT_INT,
1905                 .off1   = offsetof(struct thread_options, iodepth),
1906                 .help   = "Number of IO buffers to keep in flight",
1907                 .minval = 1,
1908                 .interval = 1,
1909                 .def    = "1",
1910                 .category = FIO_OPT_C_IO,
1911                 .group  = FIO_OPT_G_IO_BASIC,
1912         },
1913         {
1914                 .name   = "iodepth_batch",
1915                 .lname  = "IO Depth batch",
1916                 .alias  = "iodepth_batch_submit",
1917                 .type   = FIO_OPT_INT,
1918                 .off1   = offsetof(struct thread_options, iodepth_batch),
1919                 .help   = "Number of IO buffers to submit in one go",
1920                 .parent = "iodepth",
1921                 .hide   = 1,
1922                 .interval = 1,
1923                 .def    = "1",
1924                 .category = FIO_OPT_C_IO,
1925                 .group  = FIO_OPT_G_IO_BASIC,
1926         },
1927         {
1928                 .name   = "iodepth_batch_complete_min",
1929                 .lname  = "Min IO depth batch complete",
1930                 .alias  = "iodepth_batch_complete",
1931                 .type   = FIO_OPT_INT,
1932                 .off1   = offsetof(struct thread_options, iodepth_batch_complete_min),
1933                 .help   = "Min number of IO buffers to retrieve in one go",
1934                 .parent = "iodepth",
1935                 .hide   = 1,
1936                 .minval = 0,
1937                 .interval = 1,
1938                 .def    = "1",
1939                 .category = FIO_OPT_C_IO,
1940                 .group  = FIO_OPT_G_IO_BASIC,
1941         },
1942         {
1943                 .name   = "iodepth_batch_complete_max",
1944                 .lname  = "Max IO depth batch complete",
1945                 .type   = FIO_OPT_INT,
1946                 .off1   = offsetof(struct thread_options, iodepth_batch_complete_max),
1947                 .help   = "Max number of IO buffers to retrieve in one go",
1948                 .parent = "iodepth",
1949                 .hide   = 1,
1950                 .minval = 0,
1951                 .interval = 1,
1952                 .category = FIO_OPT_C_IO,
1953                 .group  = FIO_OPT_G_IO_BASIC,
1954         },
1955         {
1956                 .name   = "iodepth_low",
1957                 .lname  = "IO Depth batch low",
1958                 .type   = FIO_OPT_INT,
1959                 .off1   = offsetof(struct thread_options, iodepth_low),
1960                 .help   = "Low water mark for queuing depth",
1961                 .parent = "iodepth",
1962                 .hide   = 1,
1963                 .interval = 1,
1964                 .category = FIO_OPT_C_IO,
1965                 .group  = FIO_OPT_G_IO_BASIC,
1966         },
1967         {
1968                 .name   = "serialize_overlap",
1969                 .lname  = "Serialize overlap",
1970                 .off1   = offsetof(struct thread_options, serialize_overlap),
1971                 .type   = FIO_OPT_BOOL,
1972                 .help   = "Wait for in-flight IOs that collide to complete",
1973                 .parent = "iodepth",
1974                 .def    = "0",
1975                 .category = FIO_OPT_C_IO,
1976                 .group  = FIO_OPT_G_IO_BASIC,
1977         },
1978         {
1979                 .name   = "io_submit_mode",
1980                 .lname  = "IO submit mode",
1981                 .type   = FIO_OPT_STR,
1982                 .off1   = offsetof(struct thread_options, io_submit_mode),
1983                 .help   = "How IO submissions and completions are done",
1984                 .def    = "inline",
1985                 .category = FIO_OPT_C_IO,
1986                 .group  = FIO_OPT_G_IO_BASIC,
1987                 .posval = {
1988                           { .ival = "inline",
1989                             .oval = IO_MODE_INLINE,
1990                             .help = "Submit and complete IO inline",
1991                           },
1992                           { .ival = "offload",
1993                             .oval = IO_MODE_OFFLOAD,
1994                             .help = "Offload submit and complete to threads",
1995                           },
1996                 },
1997         },
1998         {
1999                 .name   = "size",
2000                 .lname  = "Size",
2001                 .type   = FIO_OPT_STR_VAL,
2002                 .cb     = str_size_cb,
2003                 .off1   = offsetof(struct thread_options, size),
2004                 .help   = "Total size of device or files",
2005                 .interval = 1024 * 1024,
2006                 .category = FIO_OPT_C_IO,
2007                 .group  = FIO_OPT_G_INVALID,
2008         },
2009         {
2010                 .name   = "io_size",
2011                 .alias  = "io_limit",
2012                 .lname  = "IO Size",
2013                 .type   = FIO_OPT_STR_VAL,
2014                 .off1   = offsetof(struct thread_options, io_size),
2015                 .help   = "Total size of I/O to be performed",
2016                 .interval = 1024 * 1024,
2017                 .category = FIO_OPT_C_IO,
2018                 .group  = FIO_OPT_G_INVALID,
2019         },
2020         {
2021                 .name   = "fill_device",
2022                 .lname  = "Fill device",
2023                 .alias  = "fill_fs",
2024                 .type   = FIO_OPT_BOOL,
2025                 .off1   = offsetof(struct thread_options, fill_device),
2026                 .help   = "Write until an ENOSPC error occurs",
2027                 .def    = "0",
2028                 .category = FIO_OPT_C_FILE,
2029                 .group  = FIO_OPT_G_INVALID,
2030         },
2031         {
2032                 .name   = "filesize",
2033                 .lname  = "File size",
2034                 .type   = FIO_OPT_STR_VAL,
2035                 .off1   = offsetof(struct thread_options, file_size_low),
2036                 .off2   = offsetof(struct thread_options, file_size_high),
2037                 .minval = 1,
2038                 .help   = "Size of individual files",
2039                 .interval = 1024 * 1024,
2040                 .category = FIO_OPT_C_FILE,
2041                 .group  = FIO_OPT_G_INVALID,
2042         },
2043         {
2044                 .name   = "file_append",
2045                 .lname  = "File append",
2046                 .type   = FIO_OPT_BOOL,
2047                 .off1   = offsetof(struct thread_options, file_append),
2048                 .help   = "IO will start at the end of the file(s)",
2049                 .def    = "0",
2050                 .category = FIO_OPT_C_FILE,
2051                 .group  = FIO_OPT_G_INVALID,
2052         },
2053         {
2054                 .name   = "offset",
2055                 .lname  = "IO offset",
2056                 .alias  = "fileoffset",
2057                 .type   = FIO_OPT_STR_VAL,
2058                 .cb     = str_offset_cb,
2059                 .off1   = offsetof(struct thread_options, start_offset),
2060                 .help   = "Start IO from this offset",
2061                 .def    = "0",
2062                 .interval = 1024 * 1024,
2063                 .category = FIO_OPT_C_IO,
2064                 .group  = FIO_OPT_G_INVALID,
2065         },
2066         {
2067                 .name   = "offset_align",
2068                 .lname  = "IO offset alignment",
2069                 .type   = FIO_OPT_INT,
2070                 .off1   = offsetof(struct thread_options, start_offset_align),
2071                 .help   = "Start IO from this offset alignment",
2072                 .def    = "0",
2073                 .interval = 512,
2074                 .category = FIO_OPT_C_IO,
2075                 .group  = FIO_OPT_G_INVALID,
2076         },
2077         {
2078                 .name   = "offset_increment",
2079                 .lname  = "IO offset increment",
2080                 .type   = FIO_OPT_STR_VAL,
2081                 .off1   = offsetof(struct thread_options, offset_increment),
2082                 .help   = "What is the increment from one offset to the next",
2083                 .parent = "offset",
2084                 .hide   = 1,
2085                 .def    = "0",
2086                 .interval = 1024 * 1024,
2087                 .category = FIO_OPT_C_IO,
2088                 .group  = FIO_OPT_G_INVALID,
2089         },
2090         {
2091                 .name   = "number_ios",
2092                 .lname  = "Number of IOs to perform",
2093                 .type   = FIO_OPT_STR_VAL,
2094                 .off1   = offsetof(struct thread_options, number_ios),
2095                 .help   = "Force job completion after this number of IOs",
2096                 .def    = "0",
2097                 .category = FIO_OPT_C_IO,
2098                 .group  = FIO_OPT_G_INVALID,
2099         },
2100         {
2101                 .name   = "bs",
2102                 .lname  = "Block size",
2103                 .alias  = "blocksize",
2104                 .type   = FIO_OPT_ULL,
2105                 .off1   = offsetof(struct thread_options, bs[DDIR_READ]),
2106                 .off2   = offsetof(struct thread_options, bs[DDIR_WRITE]),
2107                 .off3   = offsetof(struct thread_options, bs[DDIR_TRIM]),
2108                 .minval = 1,
2109                 .help   = "Block size unit",
2110                 .def    = "4096",
2111                 .parent = "rw",
2112                 .hide   = 1,
2113                 .interval = 512,
2114                 .category = FIO_OPT_C_IO,
2115                 .group  = FIO_OPT_G_INVALID,
2116         },
2117         {
2118                 .name   = "ba",
2119                 .lname  = "Block size align",
2120                 .alias  = "blockalign",
2121                 .type   = FIO_OPT_ULL,
2122                 .off1   = offsetof(struct thread_options, ba[DDIR_READ]),
2123                 .off2   = offsetof(struct thread_options, ba[DDIR_WRITE]),
2124                 .off3   = offsetof(struct thread_options, ba[DDIR_TRIM]),
2125                 .minval = 1,
2126                 .help   = "IO block offset alignment",
2127                 .parent = "rw",
2128                 .hide   = 1,
2129                 .interval = 512,
2130                 .category = FIO_OPT_C_IO,
2131                 .group  = FIO_OPT_G_INVALID,
2132         },
2133         {
2134                 .name   = "bsrange",
2135                 .lname  = "Block size range",
2136                 .alias  = "blocksize_range",
2137                 .type   = FIO_OPT_RANGE,
2138                 .off1   = offsetof(struct thread_options, min_bs[DDIR_READ]),
2139                 .off2   = offsetof(struct thread_options, max_bs[DDIR_READ]),
2140                 .off3   = offsetof(struct thread_options, min_bs[DDIR_WRITE]),
2141                 .off4   = offsetof(struct thread_options, max_bs[DDIR_WRITE]),
2142                 .off5   = offsetof(struct thread_options, min_bs[DDIR_TRIM]),
2143                 .off6   = offsetof(struct thread_options, max_bs[DDIR_TRIM]),
2144                 .minval = 1,
2145                 .help   = "Set block size range (in more detail than bs)",
2146                 .parent = "rw",
2147                 .hide   = 1,
2148                 .interval = 4096,
2149                 .category = FIO_OPT_C_IO,
2150                 .group  = FIO_OPT_G_INVALID,
2151         },
2152         {
2153                 .name   = "bssplit",
2154                 .lname  = "Block size split",
2155                 .type   = FIO_OPT_STR_ULL,
2156                 .cb     = str_bssplit_cb,
2157                 .off1   = offsetof(struct thread_options, bssplit),
2158                 .help   = "Set a specific mix of block sizes",
2159                 .parent = "rw",
2160                 .hide   = 1,
2161                 .category = FIO_OPT_C_IO,
2162                 .group  = FIO_OPT_G_INVALID,
2163         },
2164         {
2165                 .name   = "bs_unaligned",
2166                 .lname  = "Block size unaligned",
2167                 .alias  = "blocksize_unaligned",
2168                 .type   = FIO_OPT_STR_SET,
2169                 .off1   = offsetof(struct thread_options, bs_unaligned),
2170                 .help   = "Don't sector align IO buffer sizes",
2171                 .parent = "rw",
2172                 .hide   = 1,
2173                 .category = FIO_OPT_C_IO,
2174                 .group  = FIO_OPT_G_INVALID,
2175         },
2176         {
2177                 .name   = "bs_is_seq_rand",
2178                 .lname  = "Block size division is seq/random (not read/write)",
2179                 .type   = FIO_OPT_BOOL,
2180                 .off1   = offsetof(struct thread_options, bs_is_seq_rand),
2181                 .help   = "Consider any blocksize setting to be sequential,random",
2182                 .def    = "0",
2183                 .parent = "blocksize",
2184                 .category = FIO_OPT_C_IO,
2185                 .group  = FIO_OPT_G_INVALID,
2186         },
2187         {
2188                 .name   = "randrepeat",
2189                 .lname  = "Random repeatable",
2190                 .type   = FIO_OPT_BOOL,
2191                 .off1   = offsetof(struct thread_options, rand_repeatable),
2192                 .help   = "Use repeatable random IO pattern",
2193                 .def    = "1",
2194                 .parent = "rw",
2195                 .hide   = 1,
2196                 .category = FIO_OPT_C_IO,
2197                 .group  = FIO_OPT_G_RANDOM,
2198         },
2199         {
2200                 .name   = "randseed",
2201                 .lname  = "The random generator seed",
2202                 .type   = FIO_OPT_STR_VAL,
2203                 .off1   = offsetof(struct thread_options, rand_seed),
2204                 .help   = "Set the random generator seed value",
2205                 .def    = "0x89",
2206                 .parent = "rw",
2207                 .category = FIO_OPT_C_IO,
2208                 .group  = FIO_OPT_G_RANDOM,
2209         },
2210         {
2211                 .name   = "use_os_rand",
2212                 .lname  = "Use OS random",
2213                 .type   = FIO_OPT_DEPRECATED,
2214                 .off1   = offsetof(struct thread_options, dep_use_os_rand),
2215                 .category = FIO_OPT_C_IO,
2216                 .group  = FIO_OPT_G_RANDOM,
2217         },
2218         {
2219                 .name   = "norandommap",
2220                 .lname  = "No randommap",
2221                 .type   = FIO_OPT_STR_SET,
2222                 .off1   = offsetof(struct thread_options, norandommap),
2223                 .help   = "Accept potential duplicate random blocks",
2224                 .parent = "rw",
2225                 .hide   = 1,
2226                 .hide_on_set = 1,
2227                 .category = FIO_OPT_C_IO,
2228                 .group  = FIO_OPT_G_RANDOM,
2229         },
2230         {
2231                 .name   = "softrandommap",
2232                 .lname  = "Soft randommap",
2233                 .type   = FIO_OPT_BOOL,
2234                 .off1   = offsetof(struct thread_options, softrandommap),
2235                 .help   = "Set norandommap if randommap allocation fails",
2236                 .parent = "norandommap",
2237                 .hide   = 1,
2238                 .def    = "0",
2239                 .category = FIO_OPT_C_IO,
2240                 .group  = FIO_OPT_G_RANDOM,
2241         },
2242         {
2243                 .name   = "random_generator",
2244                 .lname  = "Random Generator",
2245                 .type   = FIO_OPT_STR,
2246                 .off1   = offsetof(struct thread_options, random_generator),
2247                 .help   = "Type of random number generator to use",
2248                 .def    = "tausworthe",
2249                 .posval = {
2250                           { .ival = "tausworthe",
2251                             .oval = FIO_RAND_GEN_TAUSWORTHE,
2252                             .help = "Strong Tausworthe generator",
2253                           },
2254                           { .ival = "lfsr",
2255                             .oval = FIO_RAND_GEN_LFSR,
2256                             .help = "Variable length LFSR",
2257                           },
2258                           {
2259                             .ival = "tausworthe64",
2260                             .oval = FIO_RAND_GEN_TAUSWORTHE64,
2261                             .help = "64-bit Tausworthe variant",
2262                           },
2263                 },
2264                 .category = FIO_OPT_C_IO,
2265                 .group  = FIO_OPT_G_RANDOM,
2266         },
2267         {
2268                 .name   = "random_distribution",
2269                 .lname  = "Random Distribution",
2270                 .type   = FIO_OPT_STR,
2271                 .off1   = offsetof(struct thread_options, random_distribution),
2272                 .cb     = str_random_distribution_cb,
2273                 .help   = "Random offset distribution generator",
2274                 .def    = "random",
2275                 .posval = {
2276                           { .ival = "random",
2277                             .oval = FIO_RAND_DIST_RANDOM,
2278                             .help = "Completely random",
2279                           },
2280                           { .ival = "zipf",
2281                             .oval = FIO_RAND_DIST_ZIPF,
2282                             .help = "Zipf distribution",
2283                           },
2284                           { .ival = "pareto",
2285                             .oval = FIO_RAND_DIST_PARETO,
2286                             .help = "Pareto distribution",
2287                           },
2288                           { .ival = "normal",
2289                             .oval = FIO_RAND_DIST_GAUSS,
2290                             .help = "Normal (Gaussian) distribution",
2291                           },
2292                           { .ival = "zoned",
2293                             .oval = FIO_RAND_DIST_ZONED,
2294                             .help = "Zoned random distribution",
2295                           },
2296                           { .ival = "zoned_abs",
2297                             .oval = FIO_RAND_DIST_ZONED_ABS,
2298                             .help = "Zoned absolute random distribution",
2299                           },
2300                 },
2301                 .category = FIO_OPT_C_IO,
2302                 .group  = FIO_OPT_G_RANDOM,
2303         },
2304         {
2305                 .name   = "percentage_random",
2306                 .lname  = "Percentage Random",
2307                 .type   = FIO_OPT_INT,
2308                 .off1   = offsetof(struct thread_options, perc_rand[DDIR_READ]),
2309                 .off2   = offsetof(struct thread_options, perc_rand[DDIR_WRITE]),
2310                 .off3   = offsetof(struct thread_options, perc_rand[DDIR_TRIM]),
2311                 .maxval = 100,
2312                 .help   = "Percentage of seq/random mix that should be random",
2313                 .def    = "100,100,100",
2314                 .interval = 5,
2315                 .inverse = "percentage_sequential",
2316                 .category = FIO_OPT_C_IO,
2317                 .group  = FIO_OPT_G_RANDOM,
2318         },
2319         {
2320                 .name   = "percentage_sequential",
2321                 .lname  = "Percentage Sequential",
2322                 .type   = FIO_OPT_DEPRECATED,
2323                 .category = FIO_OPT_C_IO,
2324                 .group  = FIO_OPT_G_RANDOM,
2325         },
2326         {
2327                 .name   = "allrandrepeat",
2328                 .lname  = "All Random Repeat",
2329                 .type   = FIO_OPT_BOOL,
2330                 .off1   = offsetof(struct thread_options, allrand_repeatable),
2331                 .help   = "Use repeatable random numbers for everything",
2332                 .def    = "0",
2333                 .category = FIO_OPT_C_IO,
2334                 .group  = FIO_OPT_G_RANDOM,
2335         },
2336         {
2337                 .name   = "nrfiles",
2338                 .lname  = "Number of files",
2339                 .alias  = "nr_files",
2340                 .type   = FIO_OPT_INT,
2341                 .off1   = offsetof(struct thread_options, nr_files),
2342                 .help   = "Split job workload between this number of files",
2343                 .def    = "1",
2344                 .interval = 1,
2345                 .category = FIO_OPT_C_FILE,
2346                 .group  = FIO_OPT_G_INVALID,
2347         },
2348         {
2349                 .name   = "openfiles",
2350                 .lname  = "Number of open files",
2351                 .type   = FIO_OPT_INT,
2352                 .off1   = offsetof(struct thread_options, open_files),
2353                 .help   = "Number of files to keep open at the same time",
2354                 .category = FIO_OPT_C_FILE,
2355                 .group  = FIO_OPT_G_INVALID,
2356         },
2357         {
2358                 .name   = "file_service_type",
2359                 .lname  = "File service type",
2360                 .type   = FIO_OPT_STR,
2361                 .cb     = str_fst_cb,
2362                 .off1   = offsetof(struct thread_options, file_service_type),
2363                 .help   = "How to select which file to service next",
2364                 .def    = "roundrobin",
2365                 .category = FIO_OPT_C_FILE,
2366                 .group  = FIO_OPT_G_INVALID,
2367                 .posval = {
2368                           { .ival = "random",
2369                             .oval = FIO_FSERVICE_RANDOM,
2370                             .help = "Choose a file at random (uniform)",
2371                           },
2372                           { .ival = "zipf",
2373                             .oval = FIO_FSERVICE_ZIPF,
2374                             .help = "Zipf randomized",
2375                           },
2376                           { .ival = "pareto",
2377                             .oval = FIO_FSERVICE_PARETO,
2378                             .help = "Pareto randomized",
2379                           },
2380                           { .ival = "normal",
2381                             .oval = FIO_FSERVICE_GAUSS,
2382                             .help = "Normal (Gaussian) randomized",
2383                           },
2384                           { .ival = "gauss",
2385                             .oval = FIO_FSERVICE_GAUSS,
2386                             .help = "Alias for normal",
2387                           },
2388                           { .ival = "roundrobin",
2389                             .oval = FIO_FSERVICE_RR,
2390                             .help = "Round robin select files",
2391                           },
2392                           { .ival = "sequential",
2393                             .oval = FIO_FSERVICE_SEQ,
2394                             .help = "Finish one file before moving to the next",
2395                           },
2396                 },
2397                 .parent = "nrfiles",
2398                 .hide   = 1,
2399         },
2400 #ifdef FIO_HAVE_ANY_FALLOCATE
2401         {
2402                 .name   = "fallocate",
2403                 .lname  = "Fallocate",
2404                 .type   = FIO_OPT_STR,
2405                 .off1   = offsetof(struct thread_options, fallocate_mode),
2406                 .help   = "Whether pre-allocation is performed when laying out files",
2407                 .def    = "native",
2408                 .category = FIO_OPT_C_FILE,
2409                 .group  = FIO_OPT_G_INVALID,
2410                 .posval = {
2411                           { .ival = "none",
2412                             .oval = FIO_FALLOCATE_NONE,
2413                             .help = "Do not pre-allocate space",
2414                           },
2415                           { .ival = "native",
2416                             .oval = FIO_FALLOCATE_NATIVE,
2417                             .help = "Use native pre-allocation if possible",
2418                           },
2419 #ifdef CONFIG_POSIX_FALLOCATE
2420                           { .ival = "posix",
2421                             .oval = FIO_FALLOCATE_POSIX,
2422                             .help = "Use posix_fallocate()",
2423                           },
2424 #endif
2425 #ifdef CONFIG_LINUX_FALLOCATE
2426                           { .ival = "keep",
2427                             .oval = FIO_FALLOCATE_KEEP_SIZE,
2428                             .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
2429                           },
2430 #endif
2431                           /* Compatibility with former boolean values */
2432                           { .ival = "0",
2433                             .oval = FIO_FALLOCATE_NONE,
2434                             .help = "Alias for 'none'",
2435                           },
2436 #ifdef CONFIG_POSIX_FALLOCATE
2437                           { .ival = "1",
2438                             .oval = FIO_FALLOCATE_POSIX,
2439                             .help = "Alias for 'posix'",
2440                           },
2441 #endif
2442                 },
2443         },
2444 #else   /* FIO_HAVE_ANY_FALLOCATE */
2445         {
2446                 .name   = "fallocate",
2447                 .lname  = "Fallocate",
2448                 .type   = FIO_OPT_UNSUPPORTED,
2449                 .help   = "Your platform does not support fallocate",
2450         },
2451 #endif /* FIO_HAVE_ANY_FALLOCATE */
2452         {
2453                 .name   = "fadvise_hint",
2454                 .lname  = "Fadvise hint",
2455                 .type   = FIO_OPT_STR,
2456                 .off1   = offsetof(struct thread_options, fadvise_hint),
2457                 .posval = {
2458                           { .ival = "0",
2459                             .oval = F_ADV_NONE,
2460                             .help = "Don't issue fadvise/madvise",
2461                           },
2462                           { .ival = "1",
2463                             .oval = F_ADV_TYPE,
2464                             .help = "Advise using fio IO pattern",
2465                           },
2466                           { .ival = "random",
2467                             .oval = F_ADV_RANDOM,
2468                             .help = "Advise using FADV_RANDOM",
2469                           },
2470                           { .ival = "sequential",
2471                             .oval = F_ADV_SEQUENTIAL,
2472                             .help = "Advise using FADV_SEQUENTIAL",
2473                           },
2474                 },
2475                 .help   = "Use fadvise() to advise the kernel on IO pattern",
2476                 .def    = "1",
2477                 .category = FIO_OPT_C_FILE,
2478                 .group  = FIO_OPT_G_INVALID,
2479         },
2480         {
2481                 .name   = "fsync",
2482                 .lname  = "Fsync",
2483                 .type   = FIO_OPT_INT,
2484                 .off1   = offsetof(struct thread_options, fsync_blocks),
2485                 .help   = "Issue fsync for writes every given number of blocks",
2486                 .def    = "0",
2487                 .interval = 1,
2488                 .category = FIO_OPT_C_FILE,
2489                 .group  = FIO_OPT_G_INVALID,
2490         },
2491         {
2492                 .name   = "fdatasync",
2493                 .lname  = "Fdatasync",
2494                 .type   = FIO_OPT_INT,
2495                 .off1   = offsetof(struct thread_options, fdatasync_blocks),
2496                 .help   = "Issue fdatasync for writes every given number of blocks",
2497                 .def    = "0",
2498                 .interval = 1,
2499                 .category = FIO_OPT_C_FILE,
2500                 .group  = FIO_OPT_G_INVALID,
2501         },
2502         {
2503                 .name   = "write_barrier",
2504                 .lname  = "Write barrier",
2505                 .type   = FIO_OPT_INT,
2506                 .off1   = offsetof(struct thread_options, barrier_blocks),
2507                 .help   = "Make every Nth write a barrier write",
2508                 .def    = "0",
2509                 .interval = 1,
2510                 .category = FIO_OPT_C_IO,
2511                 .group  = FIO_OPT_G_INVALID,
2512         },
2513 #ifdef CONFIG_SYNC_FILE_RANGE
2514         {
2515                 .name   = "sync_file_range",
2516                 .lname  = "Sync file range",
2517                 .posval = {
2518                           { .ival = "wait_before",
2519                             .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
2520                             .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
2521                             .orval  = 1,
2522                           },
2523                           { .ival = "write",
2524                             .oval = SYNC_FILE_RANGE_WRITE,
2525                             .help = "SYNC_FILE_RANGE_WRITE",
2526                             .orval  = 1,
2527                           },
2528                           {
2529                             .ival = "wait_after",
2530                             .oval = SYNC_FILE_RANGE_WAIT_AFTER,
2531                             .help = "SYNC_FILE_RANGE_WAIT_AFTER",
2532                             .orval  = 1,
2533                           },
2534                 },
2535                 .type   = FIO_OPT_STR_MULTI,
2536                 .cb     = str_sfr_cb,
2537                 .off1   = offsetof(struct thread_options, sync_file_range),
2538                 .help   = "Use sync_file_range()",
2539                 .category = FIO_OPT_C_FILE,
2540                 .group  = FIO_OPT_G_INVALID,
2541         },
2542 #else
2543         {
2544                 .name   = "sync_file_range",
2545                 .lname  = "Sync file range",
2546                 .type   = FIO_OPT_UNSUPPORTED,
2547                 .help   = "Your platform does not support sync_file_range",
2548         },
2549 #endif
2550         {
2551                 .name   = "direct",
2552                 .lname  = "Direct I/O",
2553                 .type   = FIO_OPT_BOOL,
2554                 .off1   = offsetof(struct thread_options, odirect),
2555                 .help   = "Use O_DIRECT IO (negates buffered)",
2556                 .def    = "0",
2557                 .inverse = "buffered",
2558                 .category = FIO_OPT_C_IO,
2559                 .group  = FIO_OPT_G_IO_TYPE,
2560         },
2561         {
2562                 .name   = "atomic",
2563                 .lname  = "Atomic I/O",
2564                 .type   = FIO_OPT_BOOL,
2565                 .off1   = offsetof(struct thread_options, oatomic),
2566                 .help   = "Use Atomic IO with O_DIRECT (implies O_DIRECT)",
2567                 .def    = "0",
2568                 .category = FIO_OPT_C_IO,
2569                 .group  = FIO_OPT_G_IO_TYPE,
2570         },
2571         {
2572                 .name   = "buffered",
2573                 .lname  = "Buffered I/O",
2574                 .type   = FIO_OPT_BOOL,
2575                 .off1   = offsetof(struct thread_options, odirect),
2576                 .neg    = 1,
2577                 .help   = "Use buffered IO (negates direct)",
2578                 .def    = "1",
2579                 .inverse = "direct",
2580                 .category = FIO_OPT_C_IO,
2581                 .group  = FIO_OPT_G_IO_TYPE,
2582         },
2583         {
2584                 .name   = "overwrite",
2585                 .lname  = "Overwrite",
2586                 .type   = FIO_OPT_BOOL,
2587                 .off1   = offsetof(struct thread_options, overwrite),
2588                 .help   = "When writing, set whether to overwrite current data",
2589                 .def    = "0",
2590                 .category = FIO_OPT_C_FILE,
2591                 .group  = FIO_OPT_G_INVALID,
2592         },
2593         {
2594                 .name   = "loops",
2595                 .lname  = "Loops",
2596                 .type   = FIO_OPT_INT,
2597                 .off1   = offsetof(struct thread_options, loops),
2598                 .help   = "Number of times to run the job",
2599                 .def    = "1",
2600                 .interval = 1,
2601                 .category = FIO_OPT_C_GENERAL,
2602                 .group  = FIO_OPT_G_RUNTIME,
2603         },
2604         {
2605                 .name   = "numjobs",
2606                 .lname  = "Number of jobs",
2607                 .type   = FIO_OPT_INT,
2608                 .off1   = offsetof(struct thread_options, numjobs),
2609                 .help   = "Duplicate this job this many times",
2610                 .def    = "1",
2611                 .interval = 1,
2612                 .category = FIO_OPT_C_GENERAL,
2613                 .group  = FIO_OPT_G_RUNTIME,
2614         },
2615         {
2616                 .name   = "startdelay",
2617                 .lname  = "Start delay",
2618                 .type   = FIO_OPT_STR_VAL_TIME,
2619                 .off1   = offsetof(struct thread_options, start_delay),
2620                 .off2   = offsetof(struct thread_options, start_delay_high),
2621                 .help   = "Only start job when this period has passed",
2622                 .def    = "0",
2623                 .is_seconds = 1,
2624                 .is_time = 1,
2625                 .category = FIO_OPT_C_GENERAL,
2626                 .group  = FIO_OPT_G_RUNTIME,
2627         },
2628         {
2629                 .name   = "runtime",
2630                 .lname  = "Runtime",
2631                 .alias  = "timeout",
2632                 .type   = FIO_OPT_STR_VAL_TIME,
2633                 .off1   = offsetof(struct thread_options, timeout),
2634                 .help   = "Stop workload when this amount of time has passed",
2635                 .def    = "0",
2636                 .is_seconds = 1,
2637                 .is_time = 1,
2638                 .category = FIO_OPT_C_GENERAL,
2639                 .group  = FIO_OPT_G_RUNTIME,
2640         },
2641         {
2642                 .name   = "time_based",
2643                 .lname  = "Time based",
2644                 .type   = FIO_OPT_STR_SET,
2645                 .off1   = offsetof(struct thread_options, time_based),
2646                 .help   = "Keep running until runtime/timeout is met",
2647                 .category = FIO_OPT_C_GENERAL,
2648                 .group  = FIO_OPT_G_RUNTIME,
2649         },
2650         {
2651                 .name   = "verify_only",
2652                 .lname  = "Verify only",
2653                 .type   = FIO_OPT_STR_SET,
2654                 .off1   = offsetof(struct thread_options, verify_only),
2655                 .help   = "Verifies previously written data is still valid",
2656                 .category = FIO_OPT_C_GENERAL,
2657                 .group  = FIO_OPT_G_RUNTIME,
2658         },
2659         {
2660                 .name   = "ramp_time",
2661                 .lname  = "Ramp time",
2662                 .type   = FIO_OPT_STR_VAL_TIME,
2663                 .off1   = offsetof(struct thread_options, ramp_time),
2664                 .help   = "Ramp up time before measuring performance",
2665                 .is_seconds = 1,
2666                 .is_time = 1,
2667                 .category = FIO_OPT_C_GENERAL,
2668                 .group  = FIO_OPT_G_RUNTIME,
2669         },
2670         {
2671                 .name   = "clocksource",
2672                 .lname  = "Clock source",
2673                 .type   = FIO_OPT_STR,
2674                 .cb     = fio_clock_source_cb,
2675                 .off1   = offsetof(struct thread_options, clocksource),
2676                 .help   = "What type of timing source to use",
2677                 .category = FIO_OPT_C_GENERAL,
2678                 .group  = FIO_OPT_G_CLOCK,
2679                 .posval = {
2680 #ifdef CONFIG_GETTIMEOFDAY
2681                           { .ival = "gettimeofday",
2682                             .oval = CS_GTOD,
2683                             .help = "Use gettimeofday(2) for timing",
2684                           },
2685 #endif
2686 #ifdef CONFIG_CLOCK_GETTIME
2687                           { .ival = "clock_gettime",
2688                             .oval = CS_CGETTIME,
2689                             .help = "Use clock_gettime(2) for timing",
2690                           },
2691 #endif
2692 #ifdef ARCH_HAVE_CPU_CLOCK
2693                           { .ival = "cpu",
2694                             .oval = CS_CPUCLOCK,
2695                             .help = "Use CPU private clock",
2696                           },
2697 #endif
2698                 },
2699         },
2700         {
2701                 .name   = "mem",
2702                 .alias  = "iomem",
2703                 .lname  = "I/O Memory",
2704                 .type   = FIO_OPT_STR,
2705                 .cb     = str_mem_cb,
2706                 .off1   = offsetof(struct thread_options, mem_type),
2707                 .help   = "Backing type for IO buffers",
2708                 .def    = "malloc",
2709                 .category = FIO_OPT_C_IO,
2710                 .group  = FIO_OPT_G_INVALID,
2711                 .posval = {
2712                           { .ival = "malloc",
2713                             .oval = MEM_MALLOC,
2714                             .help = "Use malloc(3) for IO buffers",
2715                           },
2716 #ifndef CONFIG_NO_SHM
2717                           { .ival = "shm",
2718                             .oval = MEM_SHM,
2719                             .help = "Use shared memory segments for IO buffers",
2720                           },
2721 #ifdef FIO_HAVE_HUGETLB
2722                           { .ival = "shmhuge",
2723                             .oval = MEM_SHMHUGE,
2724                             .help = "Like shm, but use huge pages",
2725                           },
2726 #endif
2727 #endif
2728                           { .ival = "mmap",
2729                             .oval = MEM_MMAP,
2730                             .help = "Use mmap(2) (file or anon) for IO buffers",
2731                           },
2732                           { .ival = "mmapshared",
2733                             .oval = MEM_MMAPSHARED,
2734                             .help = "Like mmap, but use the shared flag",
2735                           },
2736 #ifdef FIO_HAVE_HUGETLB
2737                           { .ival = "mmaphuge",
2738                             .oval = MEM_MMAPHUGE,
2739                             .help = "Like mmap, but use huge pages",
2740                           },
2741 #endif
2742 #ifdef CONFIG_CUDA
2743                           { .ival = "cudamalloc",
2744                             .oval = MEM_CUDA_MALLOC,
2745                             .help = "Allocate GPU device memory for GPUDirect RDMA",
2746                           },
2747 #endif
2748                   },
2749         },
2750         {
2751                 .name   = "iomem_align",
2752                 .alias  = "mem_align",
2753                 .lname  = "I/O memory alignment",
2754                 .type   = FIO_OPT_INT,
2755                 .off1   = offsetof(struct thread_options, mem_align),
2756                 .minval = 0,
2757                 .help   = "IO memory buffer offset alignment",
2758                 .def    = "0",
2759                 .parent = "iomem",
2760                 .hide   = 1,
2761                 .category = FIO_OPT_C_IO,
2762                 .group  = FIO_OPT_G_INVALID,
2763         },
2764         {
2765                 .name   = "verify",
2766                 .lname  = "Verify",
2767                 .type   = FIO_OPT_STR,
2768                 .off1   = offsetof(struct thread_options, verify),
2769                 .help   = "Verify data written",
2770                 .def    = "0",
2771                 .category = FIO_OPT_C_IO,
2772                 .group  = FIO_OPT_G_VERIFY,
2773                 .posval = {
2774                           { .ival = "0",
2775                             .oval = VERIFY_NONE,
2776                             .help = "Don't do IO verification",
2777                           },
2778                           { .ival = "md5",
2779                             .oval = VERIFY_MD5,
2780                             .help = "Use md5 checksums for verification",
2781                           },
2782                           { .ival = "crc64",
2783                             .oval = VERIFY_CRC64,
2784                             .help = "Use crc64 checksums for verification",
2785                           },
2786                           { .ival = "crc32",
2787                             .oval = VERIFY_CRC32,
2788                             .help = "Use crc32 checksums for verification",
2789                           },
2790                           { .ival = "crc32c-intel",
2791                             .oval = VERIFY_CRC32C,
2792                             .help = "Use crc32c checksums for verification (hw assisted, if available)",
2793                           },
2794                           { .ival = "crc32c",
2795                             .oval = VERIFY_CRC32C,
2796                             .help = "Use crc32c checksums for verification (hw assisted, if available)",
2797                           },
2798                           { .ival = "crc16",
2799                             .oval = VERIFY_CRC16,
2800                             .help = "Use crc16 checksums for verification",
2801                           },
2802                           { .ival = "crc7",
2803                             .oval = VERIFY_CRC7,
2804                             .help = "Use crc7 checksums for verification",
2805                           },
2806                           { .ival = "sha1",
2807                             .oval = VERIFY_SHA1,
2808                             .help = "Use sha1 checksums for verification",
2809                           },
2810                           { .ival = "sha256",
2811                             .oval = VERIFY_SHA256,
2812                             .help = "Use sha256 checksums for verification",
2813                           },
2814                           { .ival = "sha512",
2815                             .oval = VERIFY_SHA512,
2816                             .help = "Use sha512 checksums for verification",
2817                           },
2818                           { .ival = "sha3-224",
2819                             .oval = VERIFY_SHA3_224,
2820                             .help = "Use sha3-224 checksums for verification",
2821                           },
2822                           { .ival = "sha3-256",
2823                             .oval = VERIFY_SHA3_256,
2824                             .help = "Use sha3-256 checksums for verification",
2825                           },
2826                           { .ival = "sha3-384",
2827                             .oval = VERIFY_SHA3_384,
2828                             .help = "Use sha3-384 checksums for verification",
2829                           },
2830                           { .ival = "sha3-512",
2831                             .oval = VERIFY_SHA3_512,
2832                             .help = "Use sha3-512 checksums for verification",
2833                           },
2834                           { .ival = "xxhash",
2835                             .oval = VERIFY_XXHASH,
2836                             .help = "Use xxhash checksums for verification",
2837                           },
2838                           /* Meta information was included into verify_header,
2839                            * 'meta' verification is implied by default. */
2840                           { .ival = "meta",
2841                             .oval = VERIFY_HDR_ONLY,
2842                             .help = "Use io information for verification. "
2843                                     "Now is implied by default, thus option is obsolete, "
2844                                     "don't use it",
2845                           },
2846                           { .ival = "pattern",
2847                             .oval = VERIFY_PATTERN_NO_HDR,
2848                             .help = "Verify strict pattern",
2849                           },
2850                           {
2851                             .ival = "null",
2852                             .oval = VERIFY_NULL,
2853                             .help = "Pretend to verify",
2854                           },
2855                 },
2856         },
2857         {
2858                 .name   = "do_verify",
2859                 .lname  = "Perform verify step",
2860                 .type   = FIO_OPT_BOOL,
2861                 .off1   = offsetof(struct thread_options, do_verify),
2862                 .help   = "Run verification stage after write",
2863                 .def    = "1",
2864                 .parent = "verify",
2865                 .hide   = 1,
2866                 .category = FIO_OPT_C_IO,
2867                 .group  = FIO_OPT_G_VERIFY,
2868         },
2869         {
2870                 .name   = "verifysort",
2871                 .lname  = "Verify sort",
2872                 .type   = FIO_OPT_SOFT_DEPRECATED,
2873                 .category = FIO_OPT_C_IO,
2874                 .group  = FIO_OPT_G_VERIFY,
2875         },
2876         {
2877                 .name   = "verifysort_nr",
2878                 .lname  = "Verify Sort Nr",
2879                 .type   = FIO_OPT_SOFT_DEPRECATED,
2880                 .category = FIO_OPT_C_IO,
2881                 .group  = FIO_OPT_G_VERIFY,
2882         },
2883         {
2884                 .name   = "verify_interval",
2885                 .lname  = "Verify interval",
2886                 .type   = FIO_OPT_INT,
2887                 .off1   = offsetof(struct thread_options, verify_interval),
2888                 .minval = 2 * sizeof(struct verify_header),
2889                 .help   = "Store verify buffer header every N bytes",
2890                 .parent = "verify",
2891                 .hide   = 1,
2892                 .interval = 2 * sizeof(struct verify_header),
2893                 .category = FIO_OPT_C_IO,
2894                 .group  = FIO_OPT_G_VERIFY,
2895         },
2896         {
2897                 .name   = "verify_offset",
2898                 .lname  = "Verify offset",
2899                 .type   = FIO_OPT_INT,
2900                 .help   = "Offset verify header location by N bytes",
2901                 .off1   = offsetof(struct thread_options, verify_offset),
2902                 .minval = sizeof(struct verify_header),
2903                 .parent = "verify",
2904                 .hide   = 1,
2905                 .category = FIO_OPT_C_IO,
2906                 .group  = FIO_OPT_G_VERIFY,
2907         },
2908         {
2909                 .name   = "verify_pattern",
2910                 .lname  = "Verify pattern",
2911                 .type   = FIO_OPT_STR,
2912                 .cb     = str_verify_pattern_cb,
2913                 .off1   = offsetof(struct thread_options, verify_pattern),
2914                 .help   = "Fill pattern for IO buffers",
2915                 .parent = "verify",
2916                 .hide   = 1,
2917                 .category = FIO_OPT_C_IO,
2918                 .group  = FIO_OPT_G_VERIFY,
2919         },
2920         {
2921                 .name   = "verify_fatal",
2922                 .lname  = "Verify fatal",
2923                 .type   = FIO_OPT_BOOL,
2924                 .off1   = offsetof(struct thread_options, verify_fatal),
2925                 .def    = "0",
2926                 .help   = "Exit on a single verify failure, don't continue",
2927                 .parent = "verify",
2928                 .hide   = 1,
2929                 .category = FIO_OPT_C_IO,
2930                 .group  = FIO_OPT_G_VERIFY,
2931         },
2932         {
2933                 .name   = "verify_dump",
2934                 .lname  = "Verify dump",
2935                 .type   = FIO_OPT_BOOL,
2936                 .off1   = offsetof(struct thread_options, verify_dump),
2937                 .def    = "0",
2938                 .help   = "Dump contents of good and bad blocks on failure",
2939                 .parent = "verify",
2940                 .hide   = 1,
2941                 .category = FIO_OPT_C_IO,
2942                 .group  = FIO_OPT_G_VERIFY,
2943         },
2944         {
2945                 .name   = "verify_async",
2946                 .lname  = "Verify asynchronously",
2947                 .type   = FIO_OPT_INT,
2948                 .off1   = offsetof(struct thread_options, verify_async),
2949                 .def    = "0",
2950                 .help   = "Number of async verifier threads to use",
2951                 .parent = "verify",
2952                 .hide   = 1,
2953                 .category = FIO_OPT_C_IO,
2954                 .group  = FIO_OPT_G_VERIFY,
2955         },
2956         {
2957                 .name   = "verify_backlog",
2958                 .lname  = "Verify backlog",
2959                 .type   = FIO_OPT_STR_VAL,
2960                 .off1   = offsetof(struct thread_options, verify_backlog),
2961                 .help   = "Verify after this number of blocks are written",
2962                 .parent = "verify",
2963                 .hide   = 1,
2964                 .category = FIO_OPT_C_IO,
2965                 .group  = FIO_OPT_G_VERIFY,
2966         },
2967         {
2968                 .name   = "verify_backlog_batch",
2969                 .lname  = "Verify backlog batch",
2970                 .type   = FIO_OPT_INT,
2971                 .off1   = offsetof(struct thread_options, verify_batch),
2972                 .help   = "Verify this number of IO blocks",
2973                 .parent = "verify",
2974                 .hide   = 1,
2975                 .category = FIO_OPT_C_IO,
2976                 .group  = FIO_OPT_G_VERIFY,
2977         },
2978 #ifdef FIO_HAVE_CPU_AFFINITY
2979         {
2980                 .name   = "verify_async_cpus",
2981                 .lname  = "Async verify CPUs",
2982                 .type   = FIO_OPT_STR,
2983                 .cb     = str_verify_cpus_allowed_cb,
2984                 .off1   = offsetof(struct thread_options, verify_cpumask),
2985                 .help   = "Set CPUs allowed for async verify threads",
2986                 .parent = "verify_async",
2987                 .hide   = 1,
2988                 .category = FIO_OPT_C_IO,
2989                 .group  = FIO_OPT_G_VERIFY,
2990         },
2991 #else
2992         {
2993                 .name   = "verify_async_cpus",
2994                 .lname  = "Async verify CPUs",
2995                 .type   = FIO_OPT_UNSUPPORTED,
2996                 .help   = "Your platform does not support CPU affinities",
2997         },
2998 #endif
2999         {
3000                 .name   = "experimental_verify",
3001                 .lname  = "Experimental Verify",
3002                 .off1   = offsetof(struct thread_options, experimental_verify),
3003                 .type   = FIO_OPT_BOOL,
3004                 .help   = "Enable experimental verification",
3005                 .parent = "verify",
3006                 .category = FIO_OPT_C_IO,
3007                 .group  = FIO_OPT_G_VERIFY,
3008         },
3009         {
3010                 .name   = "verify_state_load",
3011                 .lname  = "Load verify state",
3012                 .off1   = offsetof(struct thread_options, verify_state),
3013                 .type   = FIO_OPT_BOOL,
3014                 .help   = "Load verify termination state",
3015                 .parent = "verify",
3016                 .category = FIO_OPT_C_IO,
3017                 .group  = FIO_OPT_G_VERIFY,
3018         },
3019         {
3020                 .name   = "verify_state_save",
3021                 .lname  = "Save verify state",
3022                 .off1   = offsetof(struct thread_options, verify_state_save),
3023                 .type   = FIO_OPT_BOOL,
3024                 .def    = "1",
3025                 .help   = "Save verify state on termination",
3026                 .parent = "verify",
3027                 .category = FIO_OPT_C_IO,
3028                 .group  = FIO_OPT_G_VERIFY,
3029         },
3030 #ifdef FIO_HAVE_TRIM
3031         {
3032                 .name   = "trim_percentage",
3033                 .lname  = "Trim percentage",
3034                 .type   = FIO_OPT_INT,
3035                 .off1   = offsetof(struct thread_options, trim_percentage),
3036                 .minval = 0,
3037                 .maxval = 100,
3038                 .help   = "Number of verify blocks to trim (i.e., discard)",
3039                 .parent = "verify",
3040                 .def    = "0",
3041                 .interval = 1,
3042                 .hide   = 1,
3043                 .category = FIO_OPT_C_IO,
3044                 .group  = FIO_OPT_G_TRIM,
3045         },
3046         {
3047                 .name   = "trim_verify_zero",
3048                 .lname  = "Verify trim zero",
3049                 .type   = FIO_OPT_BOOL,
3050                 .help   = "Verify that trimmed (i.e., discarded) blocks are returned as zeroes",
3051                 .off1   = offsetof(struct thread_options, trim_zero),
3052                 .parent = "trim_percentage",
3053                 .hide   = 1,
3054                 .def    = "1",
3055                 .category = FIO_OPT_C_IO,
3056                 .group  = FIO_OPT_G_TRIM,
3057         },
3058         {
3059                 .name   = "trim_backlog",
3060                 .lname  = "Trim backlog",
3061                 .type   = FIO_OPT_STR_VAL,
3062                 .off1   = offsetof(struct thread_options, trim_backlog),
3063                 .help   = "Trim after this number of blocks are written",
3064                 .parent = "trim_percentage",
3065                 .hide   = 1,
3066                 .interval = 1,
3067                 .category = FIO_OPT_C_IO,
3068                 .group  = FIO_OPT_G_TRIM,
3069         },
3070         {
3071                 .name   = "trim_backlog_batch",
3072                 .lname  = "Trim backlog batch",
3073                 .type   = FIO_OPT_INT,
3074                 .off1   = offsetof(struct thread_options, trim_batch),
3075                 .help   = "Trim this number of IO blocks",
3076                 .parent = "trim_percentage",
3077                 .hide   = 1,
3078                 .interval = 1,
3079                 .category = FIO_OPT_C_IO,
3080                 .group  = FIO_OPT_G_TRIM,
3081         },
3082 #else
3083         {
3084                 .name   = "trim_percentage",
3085                 .lname  = "Trim percentage",
3086                 .type   = FIO_OPT_UNSUPPORTED,
3087                 .help   = "Fio does not support TRIM on your platform",
3088         },
3089         {
3090                 .name   = "trim_verify_zero",
3091                 .lname  = "Verify trim zero",
3092                 .type   = FIO_OPT_UNSUPPORTED,
3093                 .help   = "Fio does not support TRIM on your platform",
3094         },
3095         {
3096                 .name   = "trim_backlog",
3097                 .lname  = "Trim backlog",
3098                 .type   = FIO_OPT_UNSUPPORTED,
3099                 .help   = "Fio does not support TRIM on your platform",
3100         },
3101         {
3102                 .name   = "trim_backlog_batch",
3103                 .lname  = "Trim backlog batch",
3104                 .type   = FIO_OPT_UNSUPPORTED,
3105                 .help   = "Fio does not support TRIM on your platform",
3106         },
3107 #endif
3108         {
3109                 .name   = "write_iolog",
3110                 .lname  = "Write I/O log",
3111                 .type   = FIO_OPT_STR_STORE,
3112                 .off1   = offsetof(struct thread_options, write_iolog_file),
3113                 .help   = "Store IO pattern to file",
3114                 .category = FIO_OPT_C_IO,
3115                 .group  = FIO_OPT_G_IOLOG,
3116         },
3117         {
3118                 .name   = "read_iolog",
3119                 .lname  = "Read I/O log",
3120                 .type   = FIO_OPT_STR_STORE,
3121                 .off1   = offsetof(struct thread_options, read_iolog_file),
3122                 .help   = "Playback IO pattern from file",
3123                 .category = FIO_OPT_C_IO,
3124                 .group  = FIO_OPT_G_IOLOG,
3125         },
3126         {
3127                 .name   = "read_iolog_chunked",
3128                 .lname  = "Read I/O log in parts",
3129                 .type   = FIO_OPT_BOOL,
3130                 .off1   = offsetof(struct thread_options, read_iolog_chunked),
3131                 .def    = "0",
3132                 .parent = "read_iolog",
3133                 .help   = "Parse IO pattern in chunks",
3134                 .category = FIO_OPT_C_IO,
3135                 .group  = FIO_OPT_G_IOLOG,
3136         },
3137         {
3138                 .name   = "replay_no_stall",
3139                 .lname  = "Don't stall on replay",
3140                 .type   = FIO_OPT_BOOL,
3141                 .off1   = offsetof(struct thread_options, no_stall),
3142                 .def    = "0",
3143                 .parent = "read_iolog",
3144                 .hide   = 1,
3145                 .help   = "Playback IO pattern file as fast as possible without stalls",
3146                 .category = FIO_OPT_C_IO,
3147                 .group  = FIO_OPT_G_IOLOG,
3148         },
3149         {
3150                 .name   = "replay_redirect",
3151                 .lname  = "Redirect device for replay",
3152                 .type   = FIO_OPT_STR_STORE,
3153                 .off1   = offsetof(struct thread_options, replay_redirect),
3154                 .parent = "read_iolog",
3155                 .hide   = 1,
3156                 .help   = "Replay all I/O onto this device, regardless of trace device",
3157                 .category = FIO_OPT_C_IO,
3158                 .group  = FIO_OPT_G_IOLOG,
3159         },
3160         {
3161                 .name   = "replay_scale",
3162                 .lname  = "Replace offset scale factor",
3163                 .type   = FIO_OPT_INT,
3164                 .off1   = offsetof(struct thread_options, replay_scale),
3165                 .parent = "read_iolog",
3166                 .def    = "1",
3167                 .help   = "Align offsets to this blocksize",
3168                 .category = FIO_OPT_C_IO,
3169                 .group  = FIO_OPT_G_IOLOG,
3170         },
3171         {
3172                 .name   = "replay_align",
3173                 .lname  = "Replace alignment",
3174                 .type   = FIO_OPT_INT,
3175                 .off1   = offsetof(struct thread_options, replay_align),
3176                 .parent = "read_iolog",
3177                 .help   = "Scale offset down by this factor",
3178                 .category = FIO_OPT_C_IO,
3179                 .group  = FIO_OPT_G_IOLOG,
3180                 .pow2   = 1,
3181         },
3182         {
3183                 .name   = "replay_time_scale",
3184                 .lname  = "Replay Time Scale",
3185                 .type   = FIO_OPT_INT,
3186                 .off1   = offsetof(struct thread_options, replay_time_scale),
3187                 .def    = "100",
3188                 .minval = 1,
3189                 .parent = "read_iolog",
3190                 .hide   = 1,
3191                 .help   = "Scale time for replay events",
3192                 .category = FIO_OPT_C_IO,
3193                 .group  = FIO_OPT_G_IOLOG,
3194         },
3195         {
3196                 .name   = "replay_skip",
3197                 .lname  = "Replay Skip",
3198                 .type   = FIO_OPT_STR,
3199                 .cb     = str_replay_skip_cb,
3200                 .off1   = offsetof(struct thread_options, replay_skip),
3201                 .parent = "read_iolog",
3202                 .help   = "Skip certain IO types (read,write,trim,flush)",
3203                 .category = FIO_OPT_C_IO,
3204                 .group  = FIO_OPT_G_IOLOG,
3205         },
3206         {
3207                 .name   = "exec_prerun",
3208                 .lname  = "Pre-execute runnable",
3209                 .type   = FIO_OPT_STR_STORE,
3210                 .off1   = offsetof(struct thread_options, exec_prerun),
3211                 .help   = "Execute this file prior to running job",
3212                 .category = FIO_OPT_C_GENERAL,
3213                 .group  = FIO_OPT_G_INVALID,
3214         },
3215         {
3216                 .name   = "exec_postrun",
3217                 .lname  = "Post-execute runnable",
3218                 .type   = FIO_OPT_STR_STORE,
3219                 .off1   = offsetof(struct thread_options, exec_postrun),
3220                 .help   = "Execute this file after running job",
3221                 .category = FIO_OPT_C_GENERAL,
3222                 .group  = FIO_OPT_G_INVALID,
3223         },
3224 #ifdef FIO_HAVE_IOSCHED_SWITCH
3225         {
3226                 .name   = "ioscheduler",
3227                 .lname  = "I/O scheduler",
3228                 .type   = FIO_OPT_STR_STORE,
3229                 .off1   = offsetof(struct thread_options, ioscheduler),
3230                 .help   = "Use this IO scheduler on the backing device",
3231                 .category = FIO_OPT_C_FILE,
3232                 .group  = FIO_OPT_G_INVALID,
3233         },
3234 #else
3235         {
3236                 .name   = "ioscheduler",
3237                 .lname  = "I/O scheduler",
3238                 .type   = FIO_OPT_UNSUPPORTED,
3239                 .help   = "Your platform does not support IO scheduler switching",
3240         },
3241 #endif
3242         {
3243                 .name   = "zonemode",
3244                 .lname  = "Zone mode",
3245                 .help   = "Mode for the zonesize, zonerange and zoneskip parameters",
3246                 .type   = FIO_OPT_STR,
3247                 .off1   = offsetof(struct thread_options, zone_mode),
3248                 .def    = "none",
3249                 .category = FIO_OPT_C_IO,
3250                 .group  = FIO_OPT_G_ZONE,
3251                 .posval = {
3252                            { .ival = "none",
3253                              .oval = ZONE_MODE_NONE,
3254                              .help = "no zoning",
3255                            },
3256                            { .ival = "strided",
3257                              .oval = ZONE_MODE_STRIDED,
3258                              .help = "strided mode - random I/O is restricted to a single zone",
3259                            },
3260                            { .ival = "zbd",
3261                              .oval = ZONE_MODE_ZBD,
3262                              .help = "zoned block device mode - random I/O selects one of multiple zones randomly",
3263                            },
3264                 },
3265         },
3266         {
3267                 .name   = "zonesize",
3268                 .lname  = "Zone size",
3269                 .type   = FIO_OPT_STR_VAL,
3270                 .off1   = offsetof(struct thread_options, zone_size),
3271                 .help   = "Amount of data to read per zone",
3272                 .def    = "0",
3273                 .interval = 1024 * 1024,
3274                 .category = FIO_OPT_C_IO,
3275                 .group  = FIO_OPT_G_ZONE,
3276         },
3277         {
3278                 .name   = "zonerange",
3279                 .lname  = "Zone range",
3280                 .type   = FIO_OPT_STR_VAL,
3281                 .off1   = offsetof(struct thread_options, zone_range),
3282                 .help   = "Give size of an IO zone",
3283                 .def    = "0",
3284                 .interval = 1024 * 1024,
3285                 .category = FIO_OPT_C_IO,
3286                 .group  = FIO_OPT_G_ZONE,
3287         },
3288         {
3289                 .name   = "zoneskip",
3290                 .lname  = "Zone skip",
3291                 .type   = FIO_OPT_STR_VAL,
3292                 .off1   = offsetof(struct thread_options, zone_skip),
3293                 .help   = "Space between IO zones",
3294                 .def    = "0",
3295                 .interval = 1024 * 1024,
3296                 .category = FIO_OPT_C_IO,
3297                 .group  = FIO_OPT_G_ZONE,
3298         },
3299         {
3300                 .name   = "read_beyond_wp",
3301                 .lname  = "Allow reads beyond the zone write pointer",
3302                 .type   = FIO_OPT_BOOL,
3303                 .off1   = offsetof(struct thread_options, read_beyond_wp),
3304                 .help   = "Allow reads beyond the zone write pointer",
3305                 .def    = "0",
3306                 .category = FIO_OPT_C_IO,
3307                 .group  = FIO_OPT_G_INVALID,
3308         },
3309         {
3310                 .name   = "max_open_zones",
3311                 .lname  = "Maximum number of open zones",
3312                 .type   = FIO_OPT_INT,
3313                 .off1   = offsetof(struct thread_options, max_open_zones),
3314                 .maxval = FIO_MAX_OPEN_ZBD_ZONES,
3315                 .help   = "Limit random writes to SMR drives to the specified"
3316                           " number of sequential zones",
3317                 .def    = "0",
3318                 .category = FIO_OPT_C_IO,
3319                 .group  = FIO_OPT_G_INVALID,
3320         },
3321         {
3322                 .name   = "zone_reset_threshold",
3323                 .lname  = "Zone reset threshold",
3324                 .help   = "Zoned block device reset threshold",
3325                 .type   = FIO_OPT_FLOAT_LIST,
3326                 .maxlen = 1,
3327                 .off1   = offsetof(struct thread_options, zrt),
3328                 .minfp  = 0,
3329                 .maxfp  = 1,
3330                 .category = FIO_OPT_C_IO,
3331                 .group  = FIO_OPT_G_ZONE,
3332         },
3333         {
3334                 .name   = "zone_reset_frequency",
3335                 .lname  = "Zone reset frequency",
3336                 .help   = "Zoned block device zone reset frequency in HZ",
3337                 .type   = FIO_OPT_FLOAT_LIST,
3338                 .maxlen = 1,
3339                 .off1   = offsetof(struct thread_options, zrf),
3340                 .minfp  = 0,
3341                 .maxfp  = 1,
3342                 .category = FIO_OPT_C_IO,
3343                 .group  = FIO_OPT_G_ZONE,
3344         },
3345         {
3346                 .name   = "lockmem",
3347                 .lname  = "Lock memory",
3348                 .type   = FIO_OPT_STR_VAL,
3349                 .off1   = offsetof(struct thread_options, lockmem),
3350                 .help   = "Lock down this amount of memory (per worker)",
3351                 .def    = "0",
3352                 .interval = 1024 * 1024,
3353                 .category = FIO_OPT_C_GENERAL,
3354                 .group  = FIO_OPT_G_INVALID,
3355         },
3356         {
3357                 .name   = "rwmixread",
3358                 .lname  = "Read/write mix read",
3359                 .type   = FIO_OPT_INT,
3360                 .cb     = str_rwmix_read_cb,
3361                 .off1   = offsetof(struct thread_options, rwmix[DDIR_READ]),
3362                 .maxval = 100,
3363                 .help   = "Percentage of mixed workload that is reads",
3364                 .def    = "50",
3365                 .interval = 5,
3366                 .inverse = "rwmixwrite",
3367                 .category = FIO_OPT_C_IO,
3368                 .group  = FIO_OPT_G_RWMIX,
3369         },
3370         {
3371                 .name   = "rwmixwrite",
3372                 .lname  = "Read/write mix write",
3373                 .type   = FIO_OPT_INT,
3374                 .cb     = str_rwmix_write_cb,
3375                 .off1   = offsetof(struct thread_options, rwmix[DDIR_WRITE]),
3376                 .maxval = 100,
3377                 .help   = "Percentage of mixed workload that is writes",
3378                 .def    = "50",
3379                 .interval = 5,
3380                 .inverse = "rwmixread",
3381                 .category = FIO_OPT_C_IO,
3382                 .group  = FIO_OPT_G_RWMIX,
3383         },
3384         {
3385                 .name   = "rwmixcycle",
3386                 .lname  = "Read/write mix cycle",
3387                 .type   = FIO_OPT_DEPRECATED,
3388                 .category = FIO_OPT_C_IO,
3389                 .group  = FIO_OPT_G_RWMIX,
3390         },
3391         {
3392                 .name   = "nice",
3393                 .lname  = "Nice",
3394                 .type   = FIO_OPT_INT,
3395                 .off1   = offsetof(struct thread_options, nice),
3396                 .help   = "Set job CPU nice value",
3397                 .minval = -20,
3398                 .maxval = 19,
3399                 .def    = "0",
3400                 .interval = 1,
3401                 .category = FIO_OPT_C_GENERAL,
3402                 .group  = FIO_OPT_G_CRED,
3403         },
3404 #ifdef FIO_HAVE_IOPRIO
3405         {
3406                 .name   = "prio",
3407                 .lname  = "I/O nice priority",
3408                 .type   = FIO_OPT_INT,
3409                 .off1   = offsetof(struct thread_options, ioprio),
3410                 .help   = "Set job IO priority value",
3411                 .minval = IOPRIO_MIN_PRIO,
3412                 .maxval = IOPRIO_MAX_PRIO,
3413                 .interval = 1,
3414                 .category = FIO_OPT_C_GENERAL,
3415                 .group  = FIO_OPT_G_CRED,
3416         },
3417 #else
3418         {
3419                 .name   = "prio",
3420                 .lname  = "I/O nice priority",
3421                 .type   = FIO_OPT_UNSUPPORTED,
3422                 .help   = "Your platform does not support IO priorities",
3423         },
3424 #endif
3425 #ifdef FIO_HAVE_IOPRIO_CLASS
3426 #ifndef FIO_HAVE_IOPRIO
3427 #error "FIO_HAVE_IOPRIO_CLASS requires FIO_HAVE_IOPRIO"
3428 #endif
3429         {
3430                 .name   = "prioclass",
3431                 .lname  = "I/O nice priority class",
3432                 .type   = FIO_OPT_INT,
3433                 .off1   = offsetof(struct thread_options, ioprio_class),
3434                 .help   = "Set job IO priority class",
3435                 .minval = IOPRIO_MIN_PRIO_CLASS,
3436                 .maxval = IOPRIO_MAX_PRIO_CLASS,
3437                 .interval = 1,
3438                 .category = FIO_OPT_C_GENERAL,
3439                 .group  = FIO_OPT_G_CRED,
3440         },
3441 #else
3442         {
3443                 .name   = "prioclass",
3444                 .lname  = "I/O nice priority class",
3445                 .type   = FIO_OPT_UNSUPPORTED,
3446                 .help   = "Your platform does not support IO priority classes",
3447         },
3448 #endif
3449         {
3450                 .name   = "thinktime",
3451                 .lname  = "Thinktime",
3452                 .type   = FIO_OPT_INT,
3453                 .off1   = offsetof(struct thread_options, thinktime),
3454                 .help   = "Idle time between IO buffers (usec)",
3455                 .def    = "0",
3456                 .is_time = 1,
3457                 .category = FIO_OPT_C_IO,
3458                 .group  = FIO_OPT_G_THINKTIME,
3459         },
3460         {
3461                 .name   = "thinktime_spin",
3462                 .lname  = "Thinktime spin",
3463                 .type   = FIO_OPT_INT,
3464                 .off1   = offsetof(struct thread_options, thinktime_spin),
3465                 .help   = "Start think time by spinning this amount (usec)",
3466                 .def    = "0",
3467                 .is_time = 1,
3468                 .parent = "thinktime",
3469                 .hide   = 1,
3470                 .category = FIO_OPT_C_IO,
3471                 .group  = FIO_OPT_G_THINKTIME,
3472         },
3473         {
3474                 .name   = "thinktime_blocks",
3475                 .lname  = "Thinktime blocks",
3476                 .type   = FIO_OPT_INT,
3477                 .off1   = offsetof(struct thread_options, thinktime_blocks),
3478                 .help   = "IO buffer period between 'thinktime'",
3479                 .def    = "1",
3480                 .parent = "thinktime",
3481                 .hide   = 1,
3482                 .category = FIO_OPT_C_IO,
3483                 .group  = FIO_OPT_G_THINKTIME,
3484         },
3485         {
3486                 .name   = "rate",
3487                 .lname  = "I/O rate",
3488                 .type   = FIO_OPT_INT,
3489                 .off1   = offsetof(struct thread_options, rate[DDIR_READ]),
3490                 .off2   = offsetof(struct thread_options, rate[DDIR_WRITE]),
3491                 .off3   = offsetof(struct thread_options, rate[DDIR_TRIM]),
3492                 .help   = "Set bandwidth rate",
3493                 .category = FIO_OPT_C_IO,
3494                 .group  = FIO_OPT_G_RATE,
3495         },
3496         {
3497                 .name   = "rate_min",
3498                 .alias  = "ratemin",
3499                 .lname  = "I/O min rate",
3500                 .type   = FIO_OPT_INT,
3501                 .off1   = offsetof(struct thread_options, ratemin[DDIR_READ]),
3502                 .off2   = offsetof(struct thread_options, ratemin[DDIR_WRITE]),
3503                 .off3   = offsetof(struct thread_options, ratemin[DDIR_TRIM]),
3504                 .help   = "Job must meet this rate or it will be shutdown",
3505                 .parent = "rate",
3506                 .hide   = 1,
3507                 .category = FIO_OPT_C_IO,
3508                 .group  = FIO_OPT_G_RATE,
3509         },
3510         {
3511                 .name   = "rate_iops",
3512                 .lname  = "I/O rate IOPS",
3513                 .type   = FIO_OPT_INT,
3514                 .off1   = offsetof(struct thread_options, rate_iops[DDIR_READ]),
3515                 .off2   = offsetof(struct thread_options, rate_iops[DDIR_WRITE]),
3516                 .off3   = offsetof(struct thread_options, rate_iops[DDIR_TRIM]),
3517                 .help   = "Limit IO used to this number of IO operations/sec",
3518                 .hide   = 1,
3519                 .category = FIO_OPT_C_IO,
3520                 .group  = FIO_OPT_G_RATE,
3521         },
3522         {
3523                 .name   = "rate_iops_min",
3524                 .lname  = "I/O min rate IOPS",
3525                 .type   = FIO_OPT_INT,
3526                 .off1   = offsetof(struct thread_options, rate_iops_min[DDIR_READ]),
3527                 .off2   = offsetof(struct thread_options, rate_iops_min[DDIR_WRITE]),
3528                 .off3   = offsetof(struct thread_options, rate_iops_min[DDIR_TRIM]),
3529                 .help   = "Job must meet this rate or it will be shut down",
3530                 .parent = "rate_iops",
3531                 .hide   = 1,
3532                 .category = FIO_OPT_C_IO,
3533                 .group  = FIO_OPT_G_RATE,
3534         },
3535         {
3536                 .name   = "rate_process",
3537                 .lname  = "Rate Process",
3538                 .type   = FIO_OPT_STR,
3539                 .off1   = offsetof(struct thread_options, rate_process),
3540                 .help   = "What process controls how rated IO is managed",
3541                 .def    = "linear",
3542                 .category = FIO_OPT_C_IO,
3543                 .group  = FIO_OPT_G_RATE,
3544                 .posval = {
3545                           { .ival = "linear",
3546                             .oval = RATE_PROCESS_LINEAR,
3547                             .help = "Linear rate of IO",
3548                           },
3549                           {
3550                             .ival = "poisson",
3551                             .oval = RATE_PROCESS_POISSON,
3552                             .help = "Rate follows Poisson process",
3553                           },
3554                 },
3555                 .parent = "rate",
3556         },
3557         {
3558                 .name   = "rate_cycle",
3559                 .alias  = "ratecycle",
3560                 .lname  = "I/O rate cycle",
3561                 .type   = FIO_OPT_INT,
3562                 .off1   = offsetof(struct thread_options, ratecycle),
3563                 .help   = "Window average for rate limits (msec)",
3564                 .def    = "1000",
3565                 .parent = "rate",
3566                 .hide   = 1,
3567                 .category = FIO_OPT_C_IO,
3568                 .group  = FIO_OPT_G_RATE,
3569         },
3570         {
3571                 .name   = "rate_ignore_thinktime",
3572                 .lname  = "Rate ignore thinktime",
3573                 .type   = FIO_OPT_BOOL,
3574                 .off1   = offsetof(struct thread_options, rate_ign_think),
3575                 .help   = "Rated IO ignores thinktime settings",
3576                 .parent = "rate",
3577                 .category = FIO_OPT_C_IO,
3578                 .group  = FIO_OPT_G_RATE,
3579         },
3580         {
3581                 .name   = "max_latency",
3582                 .lname  = "Max Latency (usec)",
3583                 .type   = FIO_OPT_STR_VAL_TIME,
3584                 .off1   = offsetof(struct thread_options, max_latency),
3585                 .help   = "Maximum tolerated IO latency (usec)",
3586                 .is_time = 1,
3587                 .category = FIO_OPT_C_IO,
3588                 .group = FIO_OPT_G_LATPROF,
3589         },
3590         {
3591                 .name   = "latency_target",
3592                 .lname  = "Latency Target (usec)",
3593                 .type   = FIO_OPT_STR_VAL_TIME,
3594                 .off1   = offsetof(struct thread_options, latency_target),
3595                 .help   = "Ramp to max queue depth supporting this latency",
3596                 .is_time = 1,
3597                 .category = FIO_OPT_C_IO,
3598                 .group  = FIO_OPT_G_LATPROF,
3599         },
3600         {
3601                 .name   = "latency_window",
3602                 .lname  = "Latency Window (usec)",
3603                 .type   = FIO_OPT_STR_VAL_TIME,
3604                 .off1   = offsetof(struct thread_options, latency_window),
3605                 .help   = "Time to sustain latency_target",
3606                 .is_time = 1,
3607                 .category = FIO_OPT_C_IO,
3608                 .group  = FIO_OPT_G_LATPROF,
3609         },
3610         {
3611                 .name   = "latency_percentile",
3612                 .lname  = "Latency Percentile",
3613                 .type   = FIO_OPT_FLOAT_LIST,
3614                 .off1   = offsetof(struct thread_options, latency_percentile),
3615                 .help   = "Percentile of IOs must be below latency_target",
3616                 .def    = "100",
3617                 .maxlen = 1,
3618                 .minfp  = 0.0,
3619                 .maxfp  = 100.0,
3620                 .category = FIO_OPT_C_IO,
3621                 .group  = FIO_OPT_G_LATPROF,
3622         },
3623         {
3624                 .name   = "invalidate",
3625                 .lname  = "Cache invalidate",
3626                 .type   = FIO_OPT_BOOL,
3627                 .off1   = offsetof(struct thread_options, invalidate_cache),
3628                 .help   = "Invalidate buffer/page cache prior to running job",
3629                 .def    = "1",
3630                 .category = FIO_OPT_C_IO,
3631                 .group  = FIO_OPT_G_IO_TYPE,
3632         },
3633         {
3634                 .name   = "sync",
3635                 .lname  = "Synchronous I/O",
3636                 .type   = FIO_OPT_BOOL,
3637                 .off1   = offsetof(struct thread_options, sync_io),
3638                 .help   = "Use O_SYNC for buffered writes",
3639                 .def    = "0",
3640                 .parent = "buffered",
3641                 .hide   = 1,
3642                 .category = FIO_OPT_C_IO,
3643                 .group  = FIO_OPT_G_IO_TYPE,
3644         },
3645 #ifdef FIO_HAVE_WRITE_HINT
3646         {
3647                 .name   = "write_hint",
3648                 .lname  = "Write hint",
3649                 .type   = FIO_OPT_STR,
3650                 .off1   = offsetof(struct thread_options, write_hint),
3651                 .help   = "Set expected write life time",
3652                 .category = FIO_OPT_C_ENGINE,
3653                 .group  = FIO_OPT_G_INVALID,
3654                 .posval = {
3655                           { .ival = "none",
3656                             .oval = RWH_WRITE_LIFE_NONE,
3657                           },
3658                           { .ival = "short",
3659                             .oval = RWH_WRITE_LIFE_SHORT,
3660                           },
3661                           { .ival = "medium",
3662                             .oval = RWH_WRITE_LIFE_MEDIUM,
3663                           },
3664                           { .ival = "long",
3665                             .oval = RWH_WRITE_LIFE_LONG,
3666                           },
3667                           { .ival = "extreme",
3668                             .oval = RWH_WRITE_LIFE_EXTREME,
3669                           },
3670                 },
3671         },
3672 #endif
3673         {
3674                 .name   = "create_serialize",
3675                 .lname  = "Create serialize",
3676                 .type   = FIO_OPT_BOOL,
3677                 .off1   = offsetof(struct thread_options, create_serialize),
3678                 .help   = "Serialize creation of job files",
3679                 .def    = "1",
3680                 .category = FIO_OPT_C_FILE,
3681                 .group  = FIO_OPT_G_INVALID,
3682         },
3683         {
3684                 .name   = "create_fsync",
3685                 .lname  = "Create fsync",
3686                 .type   = FIO_OPT_BOOL,
3687                 .off1   = offsetof(struct thread_options, create_fsync),
3688                 .help   = "fsync file after creation",
3689                 .def    = "1",
3690                 .category = FIO_OPT_C_FILE,
3691                 .group  = FIO_OPT_G_INVALID,
3692         },
3693         {
3694                 .name   = "create_on_open",
3695                 .lname  = "Create on open",
3696                 .type   = FIO_OPT_BOOL,
3697                 .off1   = offsetof(struct thread_options, create_on_open),
3698                 .help   = "Create files when they are opened for IO",
3699                 .def    = "0",
3700                 .category = FIO_OPT_C_FILE,
3701                 .group  = FIO_OPT_G_INVALID,
3702         },
3703         {
3704                 .name   = "create_only",
3705                 .lname  = "Create Only",
3706                 .type   = FIO_OPT_BOOL,
3707                 .off1   = offsetof(struct thread_options, create_only),
3708                 .help   = "Only perform file creation phase",
3709                 .category = FIO_OPT_C_FILE,
3710                 .def    = "0",
3711         },
3712         {
3713                 .name   = "allow_file_create",
3714                 .lname  = "Allow file create",
3715                 .type   = FIO_OPT_BOOL,
3716                 .off1   = offsetof(struct thread_options, allow_create),
3717                 .help   = "Permit fio to create files, if they don't exist",
3718                 .def    = "1",
3719                 .category = FIO_OPT_C_FILE,
3720                 .group  = FIO_OPT_G_FILENAME,
3721         },
3722         {
3723                 .name   = "allow_mounted_write",
3724                 .lname  = "Allow mounted write",
3725                 .type   = FIO_OPT_BOOL,
3726                 .off1   = offsetof(struct thread_options, allow_mounted_write),
3727                 .help   = "Allow writes to a mounted partition",
3728                 .def    = "0",
3729                 .category = FIO_OPT_C_FILE,
3730                 .group  = FIO_OPT_G_FILENAME,
3731         },
3732         {
3733                 .name   = "pre_read",
3734                 .lname  = "Pre-read files",
3735                 .type   = FIO_OPT_BOOL,
3736                 .off1   = offsetof(struct thread_options, pre_read),
3737                 .help   = "Pre-read files before starting official testing",
3738                 .def    = "0",
3739                 .category = FIO_OPT_C_FILE,
3740                 .group  = FIO_OPT_G_INVALID,
3741         },
3742 #ifdef FIO_HAVE_CPU_AFFINITY
3743         {
3744                 .name   = "cpumask",
3745                 .lname  = "CPU mask",
3746                 .type   = FIO_OPT_INT,
3747                 .cb     = str_cpumask_cb,
3748                 .off1   = offsetof(struct thread_options, cpumask),
3749                 .help   = "CPU affinity mask",
3750                 .category = FIO_OPT_C_GENERAL,
3751                 .group  = FIO_OPT_G_CRED,
3752         },
3753         {
3754                 .name   = "cpus_allowed",
3755                 .lname  = "CPUs allowed",
3756                 .type   = FIO_OPT_STR,
3757                 .cb     = str_cpus_allowed_cb,
3758                 .off1   = offsetof(struct thread_options, cpumask),
3759                 .help   = "Set CPUs allowed",
3760                 .category = FIO_OPT_C_GENERAL,
3761                 .group  = FIO_OPT_G_CRED,
3762         },
3763         {
3764                 .name   = "cpus_allowed_policy",
3765                 .lname  = "CPUs allowed distribution policy",
3766                 .type   = FIO_OPT_STR,
3767                 .off1   = offsetof(struct thread_options, cpus_allowed_policy),
3768                 .help   = "Distribution policy for cpus_allowed",
3769                 .parent = "cpus_allowed",
3770                 .prio   = 1,
3771                 .posval = {
3772                           { .ival = "shared",
3773                             .oval = FIO_CPUS_SHARED,
3774                             .help = "Mask shared between threads",
3775                           },
3776                           { .ival = "split",
3777                             .oval = FIO_CPUS_SPLIT,
3778                             .help = "Mask split between threads",
3779                           },
3780                 },
3781                 .category = FIO_OPT_C_GENERAL,
3782                 .group  = FIO_OPT_G_CRED,
3783         },
3784 #else
3785         {
3786                 .name   = "cpumask",
3787                 .lname  = "CPU mask",
3788                 .type   = FIO_OPT_UNSUPPORTED,
3789                 .help   = "Your platform does not support CPU affinities",
3790         },
3791         {
3792                 .name   = "cpus_allowed",
3793                 .lname  = "CPUs allowed",
3794                 .type   = FIO_OPT_UNSUPPORTED,
3795                 .help   = "Your platform does not support CPU affinities",
3796         },
3797         {
3798                 .name   = "cpus_allowed_policy",
3799                 .lname  = "CPUs allowed distribution policy",
3800                 .type   = FIO_OPT_UNSUPPORTED,
3801                 .help   = "Your platform does not support CPU affinities",
3802         },
3803 #endif
3804 #ifdef CONFIG_LIBNUMA
3805         {
3806                 .name   = "numa_cpu_nodes",
3807                 .lname  = "NUMA CPU Nodes",
3808                 .type   = FIO_OPT_STR,
3809                 .cb     = str_numa_cpunodes_cb,
3810                 .off1   = offsetof(struct thread_options, numa_cpunodes),
3811                 .help   = "NUMA CPU nodes bind",
3812                 .category = FIO_OPT_C_GENERAL,
3813                 .group  = FIO_OPT_G_INVALID,
3814         },
3815         {
3816                 .name   = "numa_mem_policy",
3817                 .lname  = "NUMA Memory Policy",
3818                 .type   = FIO_OPT_STR,
3819                 .cb     = str_numa_mpol_cb,
3820                 .off1   = offsetof(struct thread_options, numa_memnodes),
3821                 .help   = "NUMA memory policy setup",
3822                 .category = FIO_OPT_C_GENERAL,
3823                 .group  = FIO_OPT_G_INVALID,
3824         },
3825 #else
3826         {
3827                 .name   = "numa_cpu_nodes",
3828                 .lname  = "NUMA CPU Nodes",
3829                 .type   = FIO_OPT_UNSUPPORTED,
3830                 .help   = "Build fio with libnuma-dev(el) to enable this option",
3831         },
3832         {
3833                 .name   = "numa_mem_policy",
3834                 .lname  = "NUMA Memory Policy",
3835                 .type   = FIO_OPT_UNSUPPORTED,
3836                 .help   = "Build fio with libnuma-dev(el) to enable this option",
3837         },
3838 #endif
3839 #ifdef CONFIG_CUDA
3840         {
3841                 .name   = "gpu_dev_id",
3842                 .lname  = "GPU device ID",
3843                 .type   = FIO_OPT_INT,
3844                 .off1   = offsetof(struct thread_options, gpu_dev_id),
3845                 .help   = "Set GPU device ID for GPUDirect RDMA",
3846                 .def    = "0",
3847                 .category = FIO_OPT_C_GENERAL,
3848                 .group  = FIO_OPT_G_INVALID,
3849         },
3850 #endif
3851         {
3852                 .name   = "end_fsync",
3853                 .lname  = "End fsync",
3854                 .type   = FIO_OPT_BOOL,
3855                 .off1   = offsetof(struct thread_options, end_fsync),
3856                 .help   = "Include fsync at the end of job",
3857                 .def    = "0",
3858                 .category = FIO_OPT_C_FILE,
3859                 .group  = FIO_OPT_G_INVALID,
3860         },
3861         {
3862                 .name   = "fsync_on_close",
3863                 .lname  = "Fsync on close",
3864                 .type   = FIO_OPT_BOOL,
3865                 .off1   = offsetof(struct thread_options, fsync_on_close),
3866                 .help   = "fsync files on close",
3867                 .def    = "0",
3868                 .category = FIO_OPT_C_FILE,
3869                 .group  = FIO_OPT_G_INVALID,
3870         },
3871         {
3872                 .name   = "unlink",
3873                 .lname  = "Unlink file",
3874                 .type   = FIO_OPT_BOOL,
3875                 .off1   = offsetof(struct thread_options, unlink),
3876                 .help   = "Unlink created files after job has completed",
3877                 .def    = "0",
3878                 .category = FIO_OPT_C_FILE,
3879                 .group  = FIO_OPT_G_INVALID,
3880         },
3881         {
3882                 .name   = "unlink_each_loop",
3883                 .lname  = "Unlink file after each loop of a job",
3884                 .type   = FIO_OPT_BOOL,
3885                 .off1   = offsetof(struct thread_options, unlink_each_loop),
3886                 .help   = "Unlink created files after each loop in a job has completed",
3887                 .def    = "0",
3888                 .category = FIO_OPT_C_FILE,
3889                 .group  = FIO_OPT_G_INVALID,
3890         },
3891         {
3892                 .name   = "exitall",
3893                 .lname  = "Exit-all on terminate",
3894                 .type   = FIO_OPT_STR_SET,
3895                 .cb     = str_exitall_cb,
3896                 .help   = "Terminate all jobs when one exits",
3897                 .category = FIO_OPT_C_GENERAL,
3898                 .group  = FIO_OPT_G_PROCESS,
3899         },
3900         {
3901                 .name   = "exitall_on_error",
3902                 .lname  = "Exit-all on terminate in error",
3903                 .type   = FIO_OPT_STR_SET,
3904                 .off1   = offsetof(struct thread_options, exitall_error),
3905                 .help   = "Terminate all jobs when one exits in error",
3906                 .category = FIO_OPT_C_GENERAL,
3907                 .group  = FIO_OPT_G_PROCESS,
3908         },
3909         {
3910                 .name   = "stonewall",
3911                 .lname  = "Wait for previous",
3912                 .alias  = "wait_for_previous",
3913                 .type   = FIO_OPT_STR_SET,
3914                 .off1   = offsetof(struct thread_options, stonewall),
3915                 .help   = "Insert a hard barrier between this job and previous",
3916                 .category = FIO_OPT_C_GENERAL,
3917                 .group  = FIO_OPT_G_PROCESS,
3918         },
3919         {
3920                 .name   = "new_group",
3921                 .lname  = "New group",
3922                 .type   = FIO_OPT_STR_SET,
3923                 .off1   = offsetof(struct thread_options, new_group),
3924                 .help   = "Mark the start of a new group (for reporting)",
3925                 .category = FIO_OPT_C_GENERAL,
3926                 .group  = FIO_OPT_G_PROCESS,
3927         },
3928         {
3929                 .name   = "thread",
3930                 .lname  = "Thread",
3931                 .type   = FIO_OPT_STR_SET,
3932                 .off1   = offsetof(struct thread_options, use_thread),
3933                 .help   = "Use threads instead of processes",
3934 #ifdef CONFIG_NO_SHM
3935                 .def    = "1",
3936                 .no_warn_def = 1,
3937 #endif
3938                 .category = FIO_OPT_C_GENERAL,
3939                 .group  = FIO_OPT_G_PROCESS,
3940         },
3941         {
3942                 .name   = "per_job_logs",
3943                 .lname  = "Per Job Logs",
3944                 .type   = FIO_OPT_BOOL,
3945                 .off1   = offsetof(struct thread_options, per_job_logs),
3946                 .help   = "Include job number in generated log files or not",
3947                 .def    = "1",
3948                 .category = FIO_OPT_C_LOG,
3949                 .group  = FIO_OPT_G_INVALID,
3950         },
3951         {
3952                 .name   = "write_bw_log",
3953                 .lname  = "Write bandwidth log",
3954                 .type   = FIO_OPT_STR,
3955                 .off1   = offsetof(struct thread_options, bw_log_file),
3956                 .cb     = str_write_bw_log_cb,
3957                 .help   = "Write log of bandwidth during run",
3958                 .category = FIO_OPT_C_LOG,
3959                 .group  = FIO_OPT_G_INVALID,
3960         },
3961         {
3962                 .name   = "write_lat_log",
3963                 .lname  = "Write latency log",
3964                 .type   = FIO_OPT_STR,
3965                 .off1   = offsetof(struct thread_options, lat_log_file),
3966                 .cb     = str_write_lat_log_cb,
3967                 .help   = "Write log of latency during run",
3968                 .category = FIO_OPT_C_LOG,
3969                 .group  = FIO_OPT_G_INVALID,
3970         },
3971         {
3972                 .name   = "write_iops_log",
3973                 .lname  = "Write IOPS log",
3974                 .type   = FIO_OPT_STR,
3975                 .off1   = offsetof(struct thread_options, iops_log_file),
3976                 .cb     = str_write_iops_log_cb,
3977                 .help   = "Write log of IOPS during run",
3978                 .category = FIO_OPT_C_LOG,
3979                 .group  = FIO_OPT_G_INVALID,
3980         },
3981         {
3982                 .name   = "log_avg_msec",
3983                 .lname  = "Log averaging (msec)",
3984                 .type   = FIO_OPT_INT,
3985                 .off1   = offsetof(struct thread_options, log_avg_msec),
3986                 .help   = "Average bw/iops/lat logs over this period of time",
3987                 .def    = "0",
3988                 .category = FIO_OPT_C_LOG,
3989                 .group  = FIO_OPT_G_INVALID,
3990         },
3991         {
3992                 .name   = "log_hist_msec",
3993                 .lname  = "Log histograms (msec)",
3994                 .type   = FIO_OPT_INT,
3995                 .off1   = offsetof(struct thread_options, log_hist_msec),
3996                 .help   = "Dump completion latency histograms at frequency of this time value",
3997                 .def    = "0",
3998                 .category = FIO_OPT_C_LOG,
3999                 .group  = FIO_OPT_G_INVALID,
4000         },
4001         {
4002                 .name   = "log_hist_coarseness",
4003                 .lname  = "Histogram logs coarseness",
4004                 .type   = FIO_OPT_INT,
4005                 .off1   = offsetof(struct thread_options, log_hist_coarseness),
4006                 .help   = "Integer in range [0,6]. Higher coarseness outputs"
4007                         " fewer histogram bins per sample. The number of bins for"
4008                         " these are [1216, 608, 304, 152, 76, 38, 19] respectively.",
4009                 .def    = "0",
4010                 .category = FIO_OPT_C_LOG,
4011                 .group  = FIO_OPT_G_INVALID,
4012         },
4013         {
4014                 .name   = "write_hist_log",
4015                 .lname  = "Write latency histogram logs",
4016                 .type   = FIO_OPT_STR,
4017                 .off1   = offsetof(struct thread_options, hist_log_file),
4018                 .cb     = str_write_hist_log_cb,
4019                 .help   = "Write log of latency histograms during run",
4020                 .category = FIO_OPT_C_LOG,
4021                 .group  = FIO_OPT_G_INVALID,
4022         },
4023         {
4024                 .name   = "log_max_value",
4025                 .lname  = "Log maximum instead of average",
4026                 .type   = FIO_OPT_BOOL,
4027                 .off1   = offsetof(struct thread_options, log_max),
4028                 .help   = "Log max sample in a window instead of average",
4029                 .def    = "0",
4030                 .category = FIO_OPT_C_LOG,
4031                 .group  = FIO_OPT_G_INVALID,
4032         },
4033         {
4034                 .name   = "log_offset",
4035                 .lname  = "Log offset of IO",
4036                 .type   = FIO_OPT_BOOL,
4037                 .off1   = offsetof(struct thread_options, log_offset),
4038                 .help   = "Include offset of IO for each log entry",
4039                 .def    = "0",
4040                 .category = FIO_OPT_C_LOG,
4041                 .group  = FIO_OPT_G_INVALID,
4042         },
4043 #ifdef CONFIG_ZLIB
4044         {
4045                 .name   = "log_compression",
4046                 .lname  = "Log compression",
4047                 .type   = FIO_OPT_INT,
4048                 .off1   = offsetof(struct thread_options, log_gz),
4049                 .help   = "Log in compressed chunks of this size",
4050                 .minval = 1024ULL,
4051                 .maxval = 512 * 1024 * 1024ULL,
4052                 .category = FIO_OPT_C_LOG,
4053                 .group  = FIO_OPT_G_INVALID,
4054         },
4055 #ifdef FIO_HAVE_CPU_AFFINITY
4056         {
4057                 .name   = "log_compression_cpus",
4058                 .lname  = "Log Compression CPUs",
4059                 .type   = FIO_OPT_STR,
4060                 .cb     = str_log_cpus_allowed_cb,
4061                 .off1   = offsetof(struct thread_options, log_gz_cpumask),
4062                 .parent = "log_compression",
4063                 .help   = "Limit log compression to these CPUs",
4064                 .category = FIO_OPT_C_LOG,
4065                 .group  = FIO_OPT_G_INVALID,
4066         },
4067 #else
4068         {
4069                 .name   = "log_compression_cpus",
4070                 .lname  = "Log Compression CPUs",
4071                 .type   = FIO_OPT_UNSUPPORTED,
4072                 .help   = "Your platform does not support CPU affinities",
4073         },
4074 #endif
4075         {
4076                 .name   = "log_store_compressed",
4077                 .lname  = "Log store compressed",
4078                 .type   = FIO_OPT_BOOL,
4079                 .off1   = offsetof(struct thread_options, log_gz_store),
4080                 .help   = "Store logs in a compressed format",
4081                 .category = FIO_OPT_C_LOG,
4082                 .group  = FIO_OPT_G_INVALID,
4083         },
4084 #else
4085         {
4086                 .name   = "log_compression",
4087                 .lname  = "Log compression",
4088                 .type   = FIO_OPT_UNSUPPORTED,
4089                 .help   = "Install libz-dev(el) to get compression support",
4090         },
4091         {
4092                 .name   = "log_store_compressed",
4093                 .lname  = "Log store compressed",
4094                 .type   = FIO_OPT_UNSUPPORTED,
4095                 .help   = "Install libz-dev(el) to get compression support",
4096         },
4097 #endif
4098         {
4099                 .name = "log_unix_epoch",
4100                 .lname = "Log epoch unix",
4101                 .type = FIO_OPT_BOOL,
4102                 .off1 = offsetof(struct thread_options, log_unix_epoch),
4103                 .help = "Use Unix time in log files",
4104                 .category = FIO_OPT_C_LOG,
4105                 .group = FIO_OPT_G_INVALID,
4106         },
4107         {
4108                 .name   = "block_error_percentiles",
4109                 .lname  = "Block error percentiles",
4110                 .type   = FIO_OPT_BOOL,
4111                 .off1   = offsetof(struct thread_options, block_error_hist),
4112                 .help   = "Record trim block errors and make a histogram",
4113                 .def    = "0",
4114                 .category = FIO_OPT_C_LOG,
4115                 .group  = FIO_OPT_G_INVALID,
4116         },
4117         {
4118                 .name   = "bwavgtime",
4119                 .lname  = "Bandwidth average time",
4120                 .type   = FIO_OPT_INT,
4121                 .off1   = offsetof(struct thread_options, bw_avg_time),
4122                 .help   = "Time window over which to calculate bandwidth"
4123                           " (msec)",
4124                 .def    = "500",
4125                 .parent = "write_bw_log",
4126                 .hide   = 1,
4127                 .interval = 100,
4128                 .category = FIO_OPT_C_LOG,
4129                 .group  = FIO_OPT_G_INVALID,
4130         },
4131         {
4132                 .name   = "iopsavgtime",
4133                 .lname  = "IOPS average time",
4134                 .type   = FIO_OPT_INT,
4135                 .off1   = offsetof(struct thread_options, iops_avg_time),
4136                 .help   = "Time window over which to calculate IOPS (msec)",
4137                 .def    = "500",
4138                 .parent = "write_iops_log",
4139                 .hide   = 1,
4140                 .interval = 100,
4141                 .category = FIO_OPT_C_LOG,
4142                 .group  = FIO_OPT_G_INVALID,
4143         },
4144         {
4145                 .name   = "group_reporting",
4146                 .lname  = "Group reporting",
4147                 .type   = FIO_OPT_STR_SET,
4148                 .off1   = offsetof(struct thread_options, group_reporting),
4149                 .help   = "Do reporting on a per-group basis",
4150                 .category = FIO_OPT_C_STAT,
4151                 .group  = FIO_OPT_G_INVALID,
4152         },
4153         {
4154                 .name   = "stats",
4155                 .lname  = "Stats",
4156                 .type   = FIO_OPT_BOOL,
4157                 .off1   = offsetof(struct thread_options, stats),
4158                 .help   = "Enable collection of stats",
4159                 .def    = "1",
4160                 .category = FIO_OPT_C_STAT,
4161                 .group  = FIO_OPT_G_INVALID,
4162         },
4163         {
4164                 .name   = "zero_buffers",
4165                 .lname  = "Zero I/O buffers",
4166                 .type   = FIO_OPT_STR_SET,
4167                 .off1   = offsetof(struct thread_options, zero_buffers),
4168                 .help   = "Init IO buffers to all zeroes",
4169                 .category = FIO_OPT_C_IO,
4170                 .group  = FIO_OPT_G_IO_BUF,
4171         },
4172         {
4173                 .name   = "refill_buffers",
4174                 .lname  = "Refill I/O buffers",
4175                 .type   = FIO_OPT_STR_SET,
4176                 .off1   = offsetof(struct thread_options, refill_buffers),
4177                 .help   = "Refill IO buffers on every IO submit",
4178                 .category = FIO_OPT_C_IO,
4179                 .group  = FIO_OPT_G_IO_BUF,
4180         },
4181         {
4182                 .name   = "scramble_buffers",
4183                 .lname  = "Scramble I/O buffers",
4184                 .type   = FIO_OPT_BOOL,
4185                 .off1   = offsetof(struct thread_options, scramble_buffers),
4186                 .help   = "Slightly scramble buffers on every IO submit",
4187                 .def    = "1",
4188                 .category = FIO_OPT_C_IO,
4189                 .group  = FIO_OPT_G_IO_BUF,
4190         },
4191         {
4192                 .name   = "buffer_pattern",
4193                 .lname  = "Buffer pattern",
4194                 .type   = FIO_OPT_STR,
4195                 .cb     = str_buffer_pattern_cb,
4196                 .off1   = offsetof(struct thread_options, buffer_pattern),
4197                 .help   = "Fill pattern for IO buffers",
4198                 .category = FIO_OPT_C_IO,
4199                 .group  = FIO_OPT_G_IO_BUF,
4200         },
4201         {
4202                 .name   = "buffer_compress_percentage",
4203                 .lname  = "Buffer compression percentage",
4204                 .type   = FIO_OPT_INT,
4205                 .cb     = str_buffer_compress_cb,
4206                 .off1   = offsetof(struct thread_options, compress_percentage),
4207                 .maxval = 100,
4208                 .minval = 0,
4209                 .help   = "How compressible the buffer is (approximately)",
4210                 .interval = 5,
4211                 .category = FIO_OPT_C_IO,
4212                 .group  = FIO_OPT_G_IO_BUF,
4213         },
4214         {
4215                 .name   = "buffer_compress_chunk",
4216                 .lname  = "Buffer compression chunk size",
4217                 .type   = FIO_OPT_INT,
4218                 .off1   = offsetof(struct thread_options, compress_chunk),
4219                 .parent = "buffer_compress_percentage",
4220                 .hide   = 1,
4221                 .help   = "Size of compressible region in buffer",
4222                 .def    = "512",
4223                 .interval = 256,
4224                 .category = FIO_OPT_C_IO,
4225                 .group  = FIO_OPT_G_IO_BUF,
4226         },
4227         {
4228                 .name   = "dedupe_percentage",
4229                 .lname  = "Dedupe percentage",
4230                 .type   = FIO_OPT_INT,
4231                 .cb     = str_dedupe_cb,
4232                 .off1   = offsetof(struct thread_options, dedupe_percentage),
4233                 .maxval = 100,
4234                 .minval = 0,
4235                 .help   = "Percentage of buffers that are dedupable",
4236                 .interval = 1,
4237                 .category = FIO_OPT_C_IO,
4238                 .group  = FIO_OPT_G_IO_BUF,
4239         },
4240         {
4241                 .name   = "clat_percentiles",
4242                 .lname  = "Completion latency percentiles",
4243                 .type   = FIO_OPT_BOOL,
4244                 .off1   = offsetof(struct thread_options, clat_percentiles),
4245                 .help   = "Enable the reporting of completion latency percentiles",
4246                 .def    = "1",
4247                 .inverse = "lat_percentiles",
4248                 .category = FIO_OPT_C_STAT,
4249                 .group  = FIO_OPT_G_INVALID,
4250         },
4251         {
4252                 .name   = "lat_percentiles",
4253                 .lname  = "IO latency percentiles",
4254                 .type   = FIO_OPT_BOOL,
4255                 .off1   = offsetof(struct thread_options, lat_percentiles),
4256                 .help   = "Enable the reporting of IO latency percentiles",
4257                 .def    = "0",
4258                 .inverse = "clat_percentiles",
4259                 .category = FIO_OPT_C_STAT,
4260                 .group  = FIO_OPT_G_INVALID,
4261         },
4262         {
4263                 .name   = "percentile_list",
4264                 .lname  = "Percentile list",
4265                 .type   = FIO_OPT_FLOAT_LIST,
4266                 .off1   = offsetof(struct thread_options, percentile_list),
4267                 .off2   = offsetof(struct thread_options, percentile_precision),
4268                 .help   = "Specify a custom list of percentiles to report for "
4269                           "completion latency and block errors",
4270                 .def    = "1:5:10:20:30:40:50:60:70:80:90:95:99:99.5:99.9:99.95:99.99",
4271                 .maxlen = FIO_IO_U_LIST_MAX_LEN,
4272                 .minfp  = 0.0,
4273                 .maxfp  = 100.0,
4274                 .category = FIO_OPT_C_STAT,
4275                 .group  = FIO_OPT_G_INVALID,
4276         },
4277         {
4278                 .name   = "significant_figures",
4279                 .lname  = "Significant figures",
4280                 .type   = FIO_OPT_INT,
4281                 .off1   = offsetof(struct thread_options, sig_figs),
4282                 .maxval = 10,
4283                 .minval = 1,
4284                 .help   = "Significant figures for output-format set to normal",
4285                 .def    = "4",
4286                 .interval = 1,
4287                 .category = FIO_OPT_C_STAT,
4288                 .group  = FIO_OPT_G_INVALID,
4289         },
4290
4291 #ifdef FIO_HAVE_DISK_UTIL
4292         {
4293                 .name   = "disk_util",
4294                 .lname  = "Disk utilization",
4295                 .type   = FIO_OPT_BOOL,
4296                 .off1   = offsetof(struct thread_options, do_disk_util),
4297                 .help   = "Log disk utilization statistics",
4298                 .def    = "1",
4299                 .category = FIO_OPT_C_STAT,
4300                 .group  = FIO_OPT_G_INVALID,
4301         },
4302 #else
4303         {
4304                 .name   = "disk_util",
4305                 .lname  = "Disk utilization",
4306                 .type   = FIO_OPT_UNSUPPORTED,
4307                 .help   = "Your platform does not support disk utilization",
4308         },
4309 #endif
4310         {
4311                 .name   = "gtod_reduce",
4312                 .lname  = "Reduce gettimeofday() calls",
4313                 .type   = FIO_OPT_BOOL,
4314                 .help   = "Greatly reduce number of gettimeofday() calls",
4315                 .cb     = str_gtod_reduce_cb,
4316                 .def    = "0",
4317                 .hide_on_set = 1,
4318                 .category = FIO_OPT_C_STAT,
4319                 .group  = FIO_OPT_G_INVALID,
4320         },
4321         {
4322                 .name   = "disable_lat",
4323                 .lname  = "Disable all latency stats",
4324                 .type   = FIO_OPT_BOOL,
4325                 .off1   = offsetof(struct thread_options, disable_lat),
4326                 .help   = "Disable latency numbers",
4327                 .parent = "gtod_reduce",
4328                 .hide   = 1,
4329                 .def    = "0",
4330                 .category = FIO_OPT_C_STAT,
4331                 .group  = FIO_OPT_G_INVALID,
4332         },
4333         {
4334                 .name   = "disable_clat",
4335                 .lname  = "Disable completion latency stats",
4336                 .type   = FIO_OPT_BOOL,
4337                 .off1   = offsetof(struct thread_options, disable_clat),
4338                 .help   = "Disable completion latency numbers",
4339                 .parent = "gtod_reduce",
4340                 .hide   = 1,
4341                 .def    = "0",
4342                 .category = FIO_OPT_C_STAT,
4343                 .group  = FIO_OPT_G_INVALID,
4344         },
4345         {
4346                 .name   = "disable_slat",
4347                 .lname  = "Disable submission latency stats",
4348                 .type   = FIO_OPT_BOOL,
4349                 .off1   = offsetof(struct thread_options, disable_slat),
4350                 .help   = "Disable submission latency numbers",
4351                 .parent = "gtod_reduce",
4352                 .hide   = 1,
4353                 .def    = "0",
4354                 .category = FIO_OPT_C_STAT,
4355                 .group  = FIO_OPT_G_INVALID,
4356         },
4357         {
4358                 .name   = "disable_bw_measurement",
4359                 .alias  = "disable_bw",
4360                 .lname  = "Disable bandwidth stats",
4361                 .type   = FIO_OPT_BOOL,
4362                 .off1   = offsetof(struct thread_options, disable_bw),
4363                 .help   = "Disable bandwidth logging",
4364                 .parent = "gtod_reduce",
4365                 .hide   = 1,
4366                 .def    = "0",
4367                 .category = FIO_OPT_C_STAT,
4368                 .group  = FIO_OPT_G_INVALID,
4369         },
4370         {
4371                 .name   = "gtod_cpu",
4372                 .lname  = "Dedicated gettimeofday() CPU",
4373                 .type   = FIO_OPT_INT,
4374                 .off1   = offsetof(struct thread_options, gtod_cpu),
4375                 .help   = "Set up dedicated gettimeofday() thread on this CPU",
4376                 .verify = gtod_cpu_verify,
4377                 .category = FIO_OPT_C_GENERAL,
4378                 .group  = FIO_OPT_G_CLOCK,
4379         },
4380         {
4381                 .name   = "unified_rw_reporting",
4382                 .lname  = "Unified RW Reporting",
4383                 .type   = FIO_OPT_BOOL,
4384                 .off1   = offsetof(struct thread_options, unified_rw_rep),
4385                 .help   = "Unify reporting across data direction",
4386                 .def    = "0",
4387                 .category = FIO_OPT_C_GENERAL,
4388                 .group  = FIO_OPT_G_INVALID,
4389         },
4390         {
4391                 .name   = "continue_on_error",
4392                 .lname  = "Continue on error",
4393                 .type   = FIO_OPT_STR,
4394                 .off1   = offsetof(struct thread_options, continue_on_error),
4395                 .help   = "Continue on non-fatal errors during IO",
4396                 .def    = "none",
4397                 .category = FIO_OPT_C_GENERAL,
4398                 .group  = FIO_OPT_G_ERR,
4399                 .posval = {
4400                           { .ival = "none",
4401                             .oval = ERROR_TYPE_NONE,
4402                             .help = "Exit when an error is encountered",
4403                           },
4404                           { .ival = "read",
4405                             .oval = ERROR_TYPE_READ,
4406                             .help = "Continue on read errors only",
4407                           },
4408                           { .ival = "write",
4409                             .oval = ERROR_TYPE_WRITE,
4410                             .help = "Continue on write errors only",
4411                           },
4412                           { .ival = "io",
4413                             .oval = ERROR_TYPE_READ | ERROR_TYPE_WRITE,
4414                             .help = "Continue on any IO errors",
4415                           },
4416                           { .ival = "verify",
4417                             .oval = ERROR_TYPE_VERIFY,
4418                             .help = "Continue on verify errors only",
4419                           },
4420                           { .ival = "all",
4421                             .oval = ERROR_TYPE_ANY,
4422                             .help = "Continue on all io and verify errors",
4423                           },
4424                           { .ival = "0",
4425                             .oval = ERROR_TYPE_NONE,
4426                             .help = "Alias for 'none'",
4427                           },
4428                           { .ival = "1",
4429                             .oval = ERROR_TYPE_ANY,
4430                             .help = "Alias for 'all'",
4431                           },
4432                 },
4433         },
4434         {
4435                 .name   = "ignore_error",
4436                 .lname  = "Ignore Error",
4437                 .type   = FIO_OPT_STR,
4438                 .cb     = str_ignore_error_cb,
4439                 .off1   = offsetof(struct thread_options, ignore_error_nr),
4440                 .help   = "Set a specific list of errors to ignore",
4441                 .parent = "rw",
4442                 .category = FIO_OPT_C_GENERAL,
4443                 .group  = FIO_OPT_G_ERR,
4444         },
4445         {
4446                 .name   = "error_dump",
4447                 .lname  = "Error Dump",
4448                 .type   = FIO_OPT_BOOL,
4449                 .off1   = offsetof(struct thread_options, error_dump),
4450                 .def    = "0",
4451                 .help   = "Dump info on each error",
4452                 .category = FIO_OPT_C_GENERAL,
4453                 .group  = FIO_OPT_G_ERR,
4454         },
4455         {
4456                 .name   = "profile",
4457                 .lname  = "Profile",
4458                 .type   = FIO_OPT_STR_STORE,
4459                 .off1   = offsetof(struct thread_options, profile),
4460                 .help   = "Select a specific builtin performance test",
4461                 .category = FIO_OPT_C_PROFILE,
4462                 .group  = FIO_OPT_G_INVALID,
4463         },
4464         {
4465                 .name   = "cgroup",
4466                 .lname  = "Cgroup",
4467                 .type   = FIO_OPT_STR_STORE,
4468                 .off1   = offsetof(struct thread_options, cgroup),
4469                 .help   = "Add job to cgroup of this name",
4470                 .category = FIO_OPT_C_GENERAL,
4471                 .group  = FIO_OPT_G_CGROUP,
4472         },
4473         {
4474                 .name   = "cgroup_nodelete",
4475                 .lname  = "Cgroup no-delete",
4476                 .type   = FIO_OPT_BOOL,
4477                 .off1   = offsetof(struct thread_options, cgroup_nodelete),
4478                 .help   = "Do not delete cgroups after job completion",
4479                 .def    = "0",
4480                 .parent = "cgroup",
4481                 .category = FIO_OPT_C_GENERAL,
4482                 .group  = FIO_OPT_G_CGROUP,
4483         },
4484         {
4485                 .name   = "cgroup_weight",
4486                 .lname  = "Cgroup weight",
4487                 .type   = FIO_OPT_INT,
4488                 .off1   = offsetof(struct thread_options, cgroup_weight),
4489                 .help   = "Use given weight for cgroup",
4490                 .minval = 100,
4491                 .maxval = 1000,
4492                 .parent = "cgroup",
4493                 .category = FIO_OPT_C_GENERAL,
4494                 .group  = FIO_OPT_G_CGROUP,
4495         },
4496         {
4497                 .name   = "uid",
4498                 .lname  = "User ID",
4499                 .type   = FIO_OPT_INT,
4500                 .off1   = offsetof(struct thread_options, uid),
4501                 .help   = "Run job with this user ID",
4502                 .category = FIO_OPT_C_GENERAL,
4503                 .group  = FIO_OPT_G_CRED,
4504         },
4505         {
4506                 .name   = "gid",
4507                 .lname  = "Group ID",
4508                 .type   = FIO_OPT_INT,
4509                 .off1   = offsetof(struct thread_options, gid),
4510                 .help   = "Run job with this group ID",
4511                 .category = FIO_OPT_C_GENERAL,
4512                 .group  = FIO_OPT_G_CRED,
4513         },
4514         {
4515                 .name   = "kb_base",
4516                 .lname  = "KB Base",
4517                 .type   = FIO_OPT_INT,
4518                 .off1   = offsetof(struct thread_options, kb_base),
4519                 .prio   = 1,
4520                 .def    = "1024",
4521                 .posval = {
4522                           { .ival = "1024",
4523                             .oval = 1024,
4524                             .help = "Inputs invert IEC and SI prefixes (for compatibility); outputs prefer binary",
4525                           },
4526                           { .ival = "1000",
4527                             .oval = 1000,
4528                             .help = "Inputs use IEC and SI prefixes; outputs prefer SI",
4529                           },
4530                 },
4531                 .help   = "Unit prefix interpretation for quantities of data (IEC and SI)",
4532                 .category = FIO_OPT_C_GENERAL,
4533                 .group  = FIO_OPT_G_INVALID,
4534         },
4535         {
4536                 .name   = "unit_base",
4537                 .lname  = "Unit for quantities of data (Bits or Bytes)",
4538                 .type   = FIO_OPT_INT,
4539                 .off1   = offsetof(struct thread_options, unit_base),
4540                 .prio   = 1,
4541                 .posval = {
4542                           { .ival = "0",
4543                             .oval = N2S_NONE,
4544                             .help = "Auto-detect",
4545                           },
4546                           { .ival = "8",
4547                             .oval = N2S_BYTEPERSEC,
4548                             .help = "Normal (byte based)",
4549                           },
4550                           { .ival = "1",
4551                             .oval = N2S_BITPERSEC,
4552                             .help = "Bit based",
4553                           },
4554                 },
4555                 .help   = "Bit multiple of result summary data (8 for byte, 1 for bit)",
4556                 .category = FIO_OPT_C_GENERAL,
4557                 .group  = FIO_OPT_G_INVALID,
4558         },
4559         {
4560                 .name   = "hugepage-size",
4561                 .lname  = "Hugepage size",
4562                 .type   = FIO_OPT_INT,
4563                 .off1   = offsetof(struct thread_options, hugepage_size),
4564                 .help   = "When using hugepages, specify size of each page",
4565                 .def    = __fio_stringify(FIO_HUGE_PAGE),
4566                 .interval = 1024 * 1024,
4567                 .category = FIO_OPT_C_GENERAL,
4568                 .group  = FIO_OPT_G_INVALID,
4569         },
4570         {
4571                 .name   = "flow_id",
4572                 .lname  = "I/O flow ID",
4573                 .type   = FIO_OPT_INT,
4574                 .off1   = offsetof(struct thread_options, flow_id),
4575                 .help   = "The flow index ID to use",
4576                 .def    = "0",
4577                 .category = FIO_OPT_C_IO,
4578                 .group  = FIO_OPT_G_IO_FLOW,
4579         },
4580         {
4581                 .name   = "flow",
4582                 .lname  = "I/O flow weight",
4583                 .type   = FIO_OPT_INT,
4584                 .off1   = offsetof(struct thread_options, flow),
4585                 .help   = "Weight for flow control of this job",
4586                 .parent = "flow_id",
4587                 .hide   = 1,
4588                 .def    = "0",
4589                 .category = FIO_OPT_C_IO,
4590                 .group  = FIO_OPT_G_IO_FLOW,
4591         },
4592         {
4593                 .name   = "flow_watermark",
4594                 .lname  = "I/O flow watermark",
4595                 .type   = FIO_OPT_INT,
4596                 .off1   = offsetof(struct thread_options, flow_watermark),
4597                 .help   = "High watermark for flow control. This option"
4598                         " should be set to the same value for all threads"
4599                         " with non-zero flow.",
4600                 .parent = "flow_id",
4601                 .hide   = 1,
4602                 .def    = "1024",
4603                 .category = FIO_OPT_C_IO,
4604                 .group  = FIO_OPT_G_IO_FLOW,
4605         },
4606         {
4607                 .name   = "flow_sleep",
4608                 .lname  = "I/O flow sleep",
4609                 .type   = FIO_OPT_INT,
4610                 .off1   = offsetof(struct thread_options, flow_sleep),
4611                 .help   = "How many microseconds to sleep after being held"
4612                         " back by the flow control mechanism",
4613                 .parent = "flow_id",
4614                 .hide   = 1,
4615                 .def    = "0",
4616                 .category = FIO_OPT_C_IO,
4617                 .group  = FIO_OPT_G_IO_FLOW,
4618         },
4619         {
4620                 .name   = "steadystate",
4621                 .lname  = "Steady state threshold",
4622                 .alias  = "ss",
4623                 .type   = FIO_OPT_STR,
4624                 .off1   = offsetof(struct thread_options, ss_state),
4625                 .cb     = str_steadystate_cb,
4626                 .help   = "Define the criterion and limit to judge when a job has reached steady state",
4627                 .def    = "iops_slope:0.01%",
4628                 .posval = {
4629                           { .ival = "iops",
4630                             .oval = FIO_SS_IOPS,
4631                             .help = "maximum mean deviation of IOPS measurements",
4632                           },
4633                           { .ival = "iops_slope",
4634                             .oval = FIO_SS_IOPS_SLOPE,
4635                             .help = "slope calculated from IOPS measurements",
4636                           },
4637                           { .ival = "bw",
4638                             .oval = FIO_SS_BW,
4639                             .help = "maximum mean deviation of bandwidth measurements",
4640                           },
4641                           {
4642                             .ival = "bw_slope",
4643                             .oval = FIO_SS_BW_SLOPE,
4644                             .help = "slope calculated from bandwidth measurements",
4645                           },
4646                 },
4647                 .category = FIO_OPT_C_GENERAL,
4648                 .group  = FIO_OPT_G_RUNTIME,
4649         },
4650         {
4651                 .name   = "steadystate_duration",
4652                 .lname  = "Steady state duration",
4653                 .alias  = "ss_dur",
4654                 .parent = "steadystate",
4655                 .type   = FIO_OPT_STR_VAL_TIME,
4656                 .off1   = offsetof(struct thread_options, ss_dur),
4657                 .help   = "Stop workload upon attaining steady state for specified duration",
4658                 .def    = "0",
4659                 .is_seconds = 1,
4660                 .is_time = 1,
4661                 .category = FIO_OPT_C_GENERAL,
4662                 .group  = FIO_OPT_G_RUNTIME,
4663         },
4664         {
4665                 .name   = "steadystate_ramp_time",
4666                 .lname  = "Steady state ramp time",
4667                 .alias  = "ss_ramp",
4668                 .parent = "steadystate",
4669                 .type   = FIO_OPT_STR_VAL_TIME,
4670                 .off1   = offsetof(struct thread_options, ss_ramp_time),
4671                 .help   = "Delay before initiation of data collection for steady state job termination testing",
4672                 .def    = "0",
4673                 .is_seconds = 1,
4674                 .is_time = 1,
4675                 .category = FIO_OPT_C_GENERAL,
4676                 .group  = FIO_OPT_G_RUNTIME,
4677         },
4678         {
4679                 .name = NULL,
4680         },
4681 };
4682
4683 static void add_to_lopt(struct option *lopt, struct fio_option *o,
4684                         const char *name, int val)
4685 {
4686         lopt->name = (char *) name;
4687         lopt->val = val;
4688         if (o->type == FIO_OPT_STR_SET)
4689                 lopt->has_arg = optional_argument;
4690         else
4691                 lopt->has_arg = required_argument;
4692 }
4693
4694 static void options_to_lopts(struct fio_option *opts,
4695                               struct option *long_options,
4696                               int i, int option_type)
4697 {
4698         struct fio_option *o = &opts[0];
4699         while (o->name) {
4700                 add_to_lopt(&long_options[i], o, o->name, option_type);
4701                 if (o->alias) {
4702                         i++;
4703                         add_to_lopt(&long_options[i], o, o->alias, option_type);
4704                 }
4705
4706                 i++;
4707                 o++;
4708                 assert(i < FIO_NR_OPTIONS);
4709         }
4710 }
4711
4712 void fio_options_set_ioengine_opts(struct option *long_options,
4713                                    struct thread_data *td)
4714 {
4715         unsigned int i;
4716
4717         i = 0;
4718         while (long_options[i].name) {
4719                 if (long_options[i].val == FIO_GETOPT_IOENGINE) {
4720                         memset(&long_options[i], 0, sizeof(*long_options));
4721                         break;
4722                 }
4723                 i++;
4724         }
4725
4726         /*
4727          * Just clear out the prior ioengine options.
4728          */
4729         if (!td || !td->eo)
4730                 return;
4731
4732         options_to_lopts(td->io_ops->options, long_options, i,
4733                          FIO_GETOPT_IOENGINE);
4734 }
4735
4736 void fio_options_dup_and_init(struct option *long_options)
4737 {
4738         unsigned int i;
4739
4740         options_init(fio_options);
4741
4742         i = 0;
4743         while (long_options[i].name)
4744                 i++;
4745
4746         options_to_lopts(fio_options, long_options, i, FIO_GETOPT_JOB);
4747 }
4748
4749 struct fio_keyword {
4750         const char *word;
4751         const char *desc;
4752         char *replace;
4753 };
4754
4755 static struct fio_keyword fio_keywords[] = {
4756         {
4757                 .word   = "$pagesize",
4758                 .desc   = "Page size in the system",
4759         },
4760         {
4761                 .word   = "$mb_memory",
4762                 .desc   = "Megabytes of memory online",
4763         },
4764         {
4765                 .word   = "$ncpus",
4766                 .desc   = "Number of CPUs online in the system",
4767         },
4768         {
4769                 .word   = NULL,
4770         },
4771 };
4772
4773 void fio_keywords_exit(void)
4774 {
4775         struct fio_keyword *kw;
4776
4777         kw = &fio_keywords[0];
4778         while (kw->word) {
4779                 free(kw->replace);
4780                 kw->replace = NULL;
4781                 kw++;
4782         }
4783 }
4784
4785 void fio_keywords_init(void)
4786 {
4787         unsigned long long mb_memory;
4788         char buf[128];
4789         long l;
4790
4791         sprintf(buf, "%lu", (unsigned long) page_size);
4792         fio_keywords[0].replace = strdup(buf);
4793
4794         mb_memory = os_phys_mem() / (1024 * 1024);
4795         sprintf(buf, "%llu", mb_memory);
4796         fio_keywords[1].replace = strdup(buf);
4797
4798         l = cpus_online();
4799         sprintf(buf, "%lu", l);
4800         fio_keywords[2].replace = strdup(buf);
4801 }
4802
4803 #define BC_APP          "bc"
4804
4805 static char *bc_calc(char *str)
4806 {
4807         char buf[128], *tmp;
4808         FILE *f;
4809         int ret;
4810
4811         /*
4812          * No math, just return string
4813          */
4814         if ((!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
4815              !strchr(str, '/')) || strchr(str, '\''))
4816                 return str;
4817
4818         /*
4819          * Split option from value, we only need to calculate the value
4820          */
4821         tmp = strchr(str, '=');
4822         if (!tmp)
4823                 return str;
4824
4825         tmp++;
4826
4827         /*
4828          * Prevent buffer overflows; such a case isn't reasonable anyway
4829          */
4830         if (strlen(str) >= 128 || strlen(tmp) > 100)
4831                 return str;
4832
4833         sprintf(buf, "which %s > /dev/null", BC_APP);
4834         if (system(buf)) {
4835                 log_err("fio: bc is needed for performing math\n");
4836                 return NULL;
4837         }
4838
4839         sprintf(buf, "echo '%s' | %s", tmp, BC_APP);
4840         f = popen(buf, "r");
4841         if (!f)
4842                 return NULL;
4843
4844         ret = fread(&buf[tmp - str], 1, 128 - (tmp - str), f);
4845         if (ret <= 0) {
4846                 pclose(f);
4847                 return NULL;
4848         }
4849
4850         pclose(f);
4851         buf[(tmp - str) + ret - 1] = '\0';
4852         memcpy(buf, str, tmp - str);
4853         free(str);
4854         return strdup(buf);
4855 }
4856
4857 /*
4858  * Return a copy of the input string with substrings of the form ${VARNAME}
4859  * substituted with the value of the environment variable VARNAME.  The
4860  * substitution always occurs, even if VARNAME is empty or the corresponding
4861  * environment variable undefined.
4862  */
4863 char *fio_option_dup_subs(const char *opt)
4864 {
4865         char out[OPT_LEN_MAX+1];
4866         char in[OPT_LEN_MAX+1];
4867         char *outptr = out;
4868         char *inptr = in;
4869         char *ch1, *ch2, *env;
4870         ssize_t nchr = OPT_LEN_MAX;
4871         size_t envlen;
4872
4873         if (strlen(opt) + 1 > OPT_LEN_MAX) {
4874                 log_err("OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
4875                 return NULL;
4876         }
4877
4878         in[OPT_LEN_MAX] = '\0';
4879         strncpy(in, opt, OPT_LEN_MAX);
4880
4881         while (*inptr && nchr > 0) {
4882                 if (inptr[0] == '$' && inptr[1] == '{') {
4883                         ch2 = strchr(inptr, '}');
4884                         if (ch2 && inptr+1 < ch2) {
4885                                 ch1 = inptr+2;
4886                                 inptr = ch2+1;
4887                                 *ch2 = '\0';
4888
4889                                 env = getenv(ch1);
4890                                 if (env) {
4891                                         envlen = strlen(env);
4892                                         if (envlen <= nchr) {
4893                                                 memcpy(outptr, env, envlen);
4894                                                 outptr += envlen;
4895                                                 nchr -= envlen;
4896                                         }
4897                                 }
4898
4899                                 continue;
4900                         }
4901                 }
4902
4903                 *outptr++ = *inptr++;
4904                 --nchr;
4905         }
4906
4907         *outptr = '\0';
4908         return strdup(out);
4909 }
4910
4911 /*
4912  * Look for reserved variable names and replace them with real values
4913  */
4914 static char *fio_keyword_replace(char *opt)
4915 {
4916         char *s;
4917         int i;
4918         int docalc = 0;
4919
4920         for (i = 0; fio_keywords[i].word != NULL; i++) {
4921                 struct fio_keyword *kw = &fio_keywords[i];
4922
4923                 while ((s = strstr(opt, kw->word)) != NULL) {
4924                         char *new = malloc(strlen(opt) + 1);
4925                         char *o_org = opt;
4926                         int olen = s - opt;
4927                         int len;
4928
4929                         /*
4930                          * Copy part of the string before the keyword and
4931                          * sprintf() the replacement after it.
4932                          */
4933                         memcpy(new, opt, olen);
4934                         len = sprintf(new + olen, "%s", kw->replace);
4935
4936                         /*
4937                          * If there's more in the original string, copy that
4938                          * in too
4939                          */
4940                         opt += strlen(kw->word) + olen;
4941                         if (strlen(opt))
4942                                 memcpy(new + olen + len, opt, opt - o_org - 1);
4943
4944                         /*
4945                          * replace opt and free the old opt
4946                          */
4947                         opt = new;
4948                         free(o_org);
4949
4950                         docalc = 1;
4951                 }
4952         }
4953
4954         /*
4955          * Check for potential math and invoke bc, if possible
4956          */
4957         if (docalc)
4958                 opt = bc_calc(opt);
4959
4960         return opt;
4961 }
4962
4963 static char **dup_and_sub_options(char **opts, int num_opts)
4964 {
4965         int i;
4966         char **opts_copy = malloc(num_opts * sizeof(*opts));
4967         for (i = 0; i < num_opts; i++) {
4968                 opts_copy[i] = fio_option_dup_subs(opts[i]);
4969                 if (!opts_copy[i])
4970                         continue;
4971                 opts_copy[i] = fio_keyword_replace(opts_copy[i]);
4972         }
4973         return opts_copy;
4974 }
4975
4976 static void show_closest_option(const char *opt)
4977 {
4978         int best_option, best_distance;
4979         int i, distance;
4980         char *name;
4981
4982         if (!strlen(opt))
4983                 return;
4984
4985         name = strdup(opt);
4986         i = 0;
4987         while (name[i] != '\0' && name[i] != '=')
4988                 i++;
4989         name[i] = '\0';
4990
4991         best_option = -1;
4992         best_distance = INT_MAX;
4993         i = 0;
4994         while (fio_options[i].name) {
4995                 distance = string_distance(name, fio_options[i].name);
4996                 if (distance < best_distance) {
4997                         best_distance = distance;
4998                         best_option = i;
4999                 }
5000                 i++;
5001         }
5002
5003         if (best_option != -1 && string_distance_ok(name, best_distance) &&
5004             fio_options[best_option].type != FIO_OPT_UNSUPPORTED)
5005                 log_err("Did you mean %s?\n", fio_options[best_option].name);
5006
5007         free(name);
5008 }
5009
5010 int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
5011 {
5012         int i, ret, unknown;
5013         char **opts_copy;
5014
5015         sort_options(opts, fio_options, num_opts);
5016         opts_copy = dup_and_sub_options(opts, num_opts);
5017
5018         for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
5019                 const struct fio_option *o;
5020                 int newret = parse_option(opts_copy[i], opts[i], fio_options,
5021                                                 &o, &td->o, &td->opt_list);
5022
5023                 if (!newret && o)
5024                         fio_option_mark_set(&td->o, o);
5025
5026                 if (opts_copy[i]) {
5027                         if (newret && !o) {
5028                                 unknown++;
5029                                 continue;
5030                         }
5031                         free(opts_copy[i]);
5032                         opts_copy[i] = NULL;
5033                 }
5034
5035                 ret |= newret;
5036         }
5037
5038         if (unknown) {
5039                 ret |= ioengine_load(td);
5040                 if (td->eo) {
5041                         sort_options(opts_copy, td->io_ops->options, num_opts);
5042                         opts = opts_copy;
5043                 }
5044                 for (i = 0; i < num_opts; i++) {
5045                         const struct fio_option *o = NULL;
5046                         int newret = 1;
5047
5048                         if (!opts_copy[i])
5049                                 continue;
5050
5051                         if (td->eo)
5052                                 newret = parse_option(opts_copy[i], opts[i],
5053                                                       td->io_ops->options, &o,
5054                                                       td->eo, &td->opt_list);
5055
5056                         ret |= newret;
5057                         if (!o) {
5058                                 log_err("Bad option <%s>\n", opts[i]);
5059                                 show_closest_option(opts[i]);
5060                         }
5061                         free(opts_copy[i]);
5062                         opts_copy[i] = NULL;
5063                 }
5064         }
5065
5066         free(opts_copy);
5067         return ret;
5068 }
5069
5070 int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
5071 {
5072         int ret;
5073
5074         ret = parse_cmd_option(opt, val, fio_options, &td->o, &td->opt_list);
5075         if (!ret) {
5076                 const struct fio_option *o;
5077
5078                 o = find_option_c(fio_options, opt);
5079                 if (o)
5080                         fio_option_mark_set(&td->o, o);
5081         }
5082
5083         return ret;
5084 }
5085
5086 int fio_cmd_ioengine_option_parse(struct thread_data *td, const char *opt,
5087                                 char *val)
5088 {
5089         return parse_cmd_option(opt, val, td->io_ops->options, td->eo,
5090                                         &td->opt_list);
5091 }
5092
5093 void fio_fill_default_options(struct thread_data *td)
5094 {
5095         td->o.magic = OPT_MAGIC;
5096         fill_default_options(&td->o, fio_options);
5097 }
5098
5099 int fio_show_option_help(const char *opt)
5100 {
5101         return show_cmd_help(fio_options, opt);
5102 }
5103
5104 /*
5105  * dupe FIO_OPT_STR_STORE options
5106  */
5107 void fio_options_mem_dupe(struct thread_data *td)
5108 {
5109         options_mem_dupe(fio_options, &td->o);
5110
5111         if (td->eo && td->io_ops) {
5112                 void *oldeo = td->eo;
5113
5114                 td->eo = malloc(td->io_ops->option_struct_size);
5115                 memcpy(td->eo, oldeo, td->io_ops->option_struct_size);
5116                 options_mem_dupe(td->io_ops->options, td->eo);
5117         }
5118 }
5119
5120 unsigned int fio_get_kb_base(void *data)
5121 {
5122         struct thread_data *td = cb_data_to_td(data);
5123         struct thread_options *o = &td->o;
5124         unsigned int kb_base = 0;
5125
5126         /*
5127          * This is a hack... For private options, *data is not holding
5128          * a pointer to the thread_options, but to private data. This means
5129          * we can't safely dereference it, but magic is first so mem wise
5130          * it is valid. But this also means that if the job first sets
5131          * kb_base and expects that to be honored by private options,
5132          * it will be disappointed. We will return the global default
5133          * for this.
5134          */
5135         if (o && o->magic == OPT_MAGIC)
5136                 kb_base = o->kb_base;
5137         if (!kb_base)
5138                 kb_base = 1024;
5139
5140         return kb_base;
5141 }
5142
5143 int add_option(const struct fio_option *o)
5144 {
5145         struct fio_option *__o;
5146         int opt_index = 0;
5147
5148         __o = fio_options;
5149         while (__o->name) {
5150                 opt_index++;
5151                 __o++;
5152         }
5153
5154         if (opt_index + 1 == FIO_MAX_OPTS) {
5155                 log_err("fio: FIO_MAX_OPTS is too small\n");
5156                 return 1;
5157         }
5158
5159         memcpy(&fio_options[opt_index], o, sizeof(*o));
5160         fio_options[opt_index + 1].name = NULL;
5161         return 0;
5162 }
5163
5164 void invalidate_profile_options(const char *prof_name)
5165 {
5166         struct fio_option *o;
5167
5168         o = fio_options;
5169         while (o->name) {
5170                 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
5171                         o->type = FIO_OPT_INVALID;
5172                         o->prof_name = NULL;
5173                 }
5174                 o++;
5175         }
5176 }
5177
5178 void add_opt_posval(const char *optname, const char *ival, const char *help)
5179 {
5180         struct fio_option *o;
5181         unsigned int i;
5182
5183         o = find_option(fio_options, optname);
5184         if (!o)
5185                 return;
5186
5187         for (i = 0; i < PARSE_MAX_VP; i++) {
5188                 if (o->posval[i].ival)
5189                         continue;
5190
5191                 o->posval[i].ival = ival;
5192                 o->posval[i].help = help;
5193                 break;
5194         }
5195 }
5196
5197 void del_opt_posval(const char *optname, const char *ival)
5198 {
5199         struct fio_option *o;
5200         unsigned int i;
5201
5202         o = find_option(fio_options, optname);
5203         if (!o)
5204                 return;
5205
5206         for (i = 0; i < PARSE_MAX_VP; i++) {
5207                 if (!o->posval[i].ival)
5208                         continue;
5209                 if (strcmp(o->posval[i].ival, ival))
5210                         continue;
5211
5212                 o->posval[i].ival = NULL;
5213                 o->posval[i].help = NULL;
5214         }
5215 }
5216
5217 void fio_options_free(struct thread_data *td)
5218 {
5219         options_free(fio_options, &td->o);
5220         if (td->eo && td->io_ops && td->io_ops->options) {
5221                 options_free(td->io_ops->options, td->eo);
5222                 free(td->eo);
5223                 td->eo = NULL;
5224         }
5225 }
5226
5227 struct fio_option *fio_option_find(const char *name)
5228 {
5229         return find_option(fio_options, name);
5230 }
5231
5232 static struct fio_option *find_next_opt(struct fio_option *from,
5233                                         unsigned int off1)
5234 {
5235         struct fio_option *opt;
5236
5237         if (!from)
5238                 from = &fio_options[0];
5239         else
5240                 from++;
5241
5242         opt = NULL;
5243         do {
5244                 if (off1 == from->off1) {
5245                         opt = from;
5246                         break;
5247                 }
5248                 from++;
5249         } while (from->name);
5250
5251         return opt;
5252 }
5253
5254 static int opt_is_set(struct thread_options *o, struct fio_option *opt)
5255 {
5256         unsigned int opt_off, index, offset;
5257
5258         opt_off = opt - &fio_options[0];
5259         index = opt_off / (8 * sizeof(uint64_t));
5260         offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5261         return (o->set_options[index] & ((uint64_t)1 << offset)) != 0;
5262 }
5263
5264 bool __fio_option_is_set(struct thread_options *o, unsigned int off1)
5265 {
5266         struct fio_option *opt, *next;
5267
5268         next = NULL;
5269         while ((opt = find_next_opt(next, off1)) != NULL) {
5270                 if (opt_is_set(o, opt))
5271                         return true;
5272
5273                 next = opt;
5274         }
5275
5276         return false;
5277 }
5278
5279 void fio_option_mark_set(struct thread_options *o, const struct fio_option *opt)
5280 {
5281         unsigned int opt_off, index, offset;
5282
5283         opt_off = opt - &fio_options[0];
5284         index = opt_off / (8 * sizeof(uint64_t));
5285         offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
5286         o->set_options[index] |= (uint64_t)1 << offset;
5287 }