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