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