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