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