Avoid using the rbtree if we don't have to
[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>
6#include <getopt.h>
7#include <assert.h>
8
9#include "fio.h"
10#include "parse.h"
11
2dc1bbeb 12#define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var)
214e1eca
JA
13
14/*
15 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
16 */
17static char *get_opt_postfix(const char *str)
18{
19 char *p = strstr(str, ":");
20
21 if (!p)
22 return NULL;
23
24 p++;
25 strip_blank_front(&p);
26 strip_blank_end(p);
27 return strdup(p);
28}
29
211097b2
JA
30static int str_rw_cb(void *data, const char *str)
31{
32 struct thread_data *td = data;
33 char *nr = get_opt_postfix(str);
34
fafdba3c 35 td->o.ddir_nr = 1;
211097b2
JA
36 if (nr)
37 td->o.ddir_nr = atoi(nr);
38
211097b2
JA
39 return 0;
40}
41
214e1eca
JA
42static int str_mem_cb(void *data, const char *mem)
43{
44 struct thread_data *td = data;
45
2dc1bbeb 46 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
214e1eca 47 td->mmapfile = get_opt_postfix(mem);
2dc1bbeb 48 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
214e1eca
JA
49 log_err("fio: mmaphuge:/path/to/file\n");
50 return 1;
51 }
52 }
53
54 return 0;
55}
56
57static int str_lockmem_cb(void fio_unused *data, unsigned long *val)
58{
59 mlock_size = *val;
60 return 0;
61}
62
63#ifdef FIO_HAVE_IOPRIO
64static int str_prioclass_cb(void *data, unsigned int *val)
65{
66 struct thread_data *td = data;
67
68 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
69 return 0;
70}
71
72static int str_prio_cb(void *data, unsigned int *val)
73{
74 struct thread_data *td = data;
75
76 td->ioprio |= *val;
77 return 0;
78}
79#endif
80
81static int str_exitall_cb(void)
82{
83 exitall_on_terminate = 1;
84 return 0;
85}
86
87static void fill_cpu_mask(os_cpu_mask_t cpumask, int cpu)
88{
89#ifdef FIO_HAVE_CPU_AFFINITY
90 unsigned int i;
91
92 CPU_ZERO(&cpumask);
93
94 for (i = 0; i < sizeof(int) * 8; i++) {
95 if ((1 << i) & cpu)
96 CPU_SET(i, &cpumask);
97 }
98#endif
99}
100
101static int str_cpumask_cb(void *data, unsigned int *val)
102{
103 struct thread_data *td = data;
104
2dc1bbeb 105 fill_cpu_mask(td->o.cpumask, *val);
214e1eca
JA
106 return 0;
107}
108
109static int str_fst_cb(void *data, const char *str)
110{
111 struct thread_data *td = data;
112 char *nr = get_opt_postfix(str);
113
114 td->file_service_nr = 1;
115 if (nr)
116 td->file_service_nr = atoi(nr);
117
118 return 0;
119}
120
121static int str_filename_cb(void *data, const char *input)
122{
123 struct thread_data *td = data;
124 char *fname, *str, *p;
125
126 p = str = strdup(input);
127
128 strip_blank_front(&str);
129 strip_blank_end(str);
130
131 if (!td->files_index)
2dc1bbeb 132 td->o.nr_files = 0;
214e1eca
JA
133
134 while ((fname = strsep(&str, ":")) != NULL) {
135 if (!strlen(fname))
136 break;
137 add_file(td, fname);
2dc1bbeb 138 td->o.nr_files++;
214e1eca
JA
139 }
140
141 free(p);
142 return 0;
143}
144
145static int str_directory_cb(void *data, const char fio_unused *str)
146{
147 struct thread_data *td = data;
148 struct stat sb;
149
2dc1bbeb
JA
150 if (lstat(td->o.directory, &sb) < 0) {
151 log_err("fio: %s is not a directory\n", td->o.directory);
214e1eca
JA
152 td_verror(td, errno, "lstat");
153 return 1;
154 }
155 if (!S_ISDIR(sb.st_mode)) {
2dc1bbeb 156 log_err("fio: %s is not a directory\n", td->o.directory);
214e1eca
JA
157 return 1;
158 }
159
160 return 0;
161}
162
163static int str_opendir_cb(void *data, const char fio_unused *str)
164{
165 struct thread_data *td = data;
166
167 if (!td->files_index)
2dc1bbeb 168 td->o.nr_files = 0;
214e1eca 169
2dc1bbeb 170 return add_dir_files(td, td->o.opendir);
214e1eca
JA
171}
172
173
174#define __stringify_1(x) #x
175#define __stringify(x) __stringify_1(x)
176
177/*
178 * Map of job/command line options
179 */
180static struct fio_option options[] = {
181 {
182 .name = "description",
183 .type = FIO_OPT_STR_STORE,
184 .off1 = td_var_offset(description),
185 .help = "Text job description",
186 },
187 {
188 .name = "name",
189 .type = FIO_OPT_STR_STORE,
190 .off1 = td_var_offset(name),
191 .help = "Name of this job",
192 },
193 {
194 .name = "directory",
195 .type = FIO_OPT_STR_STORE,
196 .off1 = td_var_offset(directory),
197 .cb = str_directory_cb,
198 .help = "Directory to store files in",
199 },
200 {
201 .name = "filename",
202 .type = FIO_OPT_STR_STORE,
203 .off1 = td_var_offset(filename),
204 .cb = str_filename_cb,
205 .help = "File(s) to use for the workload",
206 },
207 {
208 .name = "opendir",
209 .type = FIO_OPT_STR_STORE,
210 .off1 = td_var_offset(opendir),
211 .cb = str_opendir_cb,
212 .help = "Recursively add files from this directory and down",
213 },
214 {
215 .name = "rw",
d3aad8f2 216 .alias = "readwrite",
214e1eca 217 .type = FIO_OPT_STR,
211097b2 218 .cb = str_rw_cb,
214e1eca
JA
219 .off1 = td_var_offset(td_ddir),
220 .help = "IO direction",
221 .def = "read",
222 .posval = {
223 { .ival = "read",
224 .oval = TD_DDIR_READ,
225 .help = "Sequential read",
226 },
227 { .ival = "write",
228 .oval = TD_DDIR_WRITE,
229 .help = "Sequential write",
230 },
231 { .ival = "randread",
232 .oval = TD_DDIR_RANDREAD,
233 .help = "Random read",
234 },
235 { .ival = "randwrite",
236 .oval = TD_DDIR_RANDWRITE,
237 .help = "Random write",
238 },
239 { .ival = "rw",
240 .oval = TD_DDIR_RW,
241 .help = "Sequential read and write mix",
242 },
243 { .ival = "randrw",
244 .oval = TD_DDIR_RANDRW,
245 .help = "Random read and write mix"
246 },
247 },
248 },
d2f3ac35
JA
249 {
250 .name = "fadvise_hint",
251 .type = FIO_OPT_BOOL,
252 .off1 = td_var_offset(fadvise_hint),
253 .help = "Use fadvise() to advise the kernel on IO pattern",
254 .def = "1",
255 },
214e1eca
JA
256 {
257 .name = "ioengine",
258 .type = FIO_OPT_STR_STORE,
259 .off1 = td_var_offset(ioengine),
260 .help = "IO engine to use",
261 .def = "sync",
262 .posval = {
263 { .ival = "sync",
264 .help = "Use read/write",
265 },
266#ifdef FIO_HAVE_LIBAIO
267 { .ival = "libaio",
268 .help = "Linux native asynchronous IO",
269 },
270#endif
271#ifdef FIO_HAVE_POSIXAIO
272 { .ival = "posixaio",
273 .help = "POSIX asynchronous IO",
274 },
275#endif
276 { .ival = "mmap",
277 .help = "Memory mapped IO",
278 },
279#ifdef FIO_HAVE_SPLICE
280 { .ival = "splice",
281 .help = "splice/vmsplice based IO",
282 },
283#endif
284#ifdef FIO_HAVE_SGIO
285 { .ival = "sg",
286 .help = "SCSI generic v3 IO",
287 },
288#endif
289 { .ival = "null",
290 .help = "Testing engine (no data transfer)",
291 },
292 { .ival = "net",
293 .help = "Network IO",
294 },
295#ifdef FIO_HAVE_SYSLET
296 { .ival = "syslet-rw",
297 .help = "syslet enabled async pread/pwrite IO",
298 },
299#endif
300 { .ival = "cpuio",
301 .help = "CPU cycler burner engine",
302 },
b8c82a46
JA
303#ifdef FIO_HAVE_GUASI
304 { .ival = "guasi",
305 .help = "GUASI IO engine",
306 },
307#endif
214e1eca
JA
308 { .ival = "external",
309 .help = "Load external engine (append name)",
310 },
311 },
312 },
313 {
314 .name = "iodepth",
315 .type = FIO_OPT_INT,
316 .off1 = td_var_offset(iodepth),
317 .help = "Amount of IO buffers to keep in flight",
318 .def = "1",
319 },
320 {
321 .name = "iodepth_batch",
322 .type = FIO_OPT_INT,
323 .off1 = td_var_offset(iodepth_batch),
324 .help = "Number of IO to submit in one go",
325 },
326 {
327 .name = "iodepth_low",
328 .type = FIO_OPT_INT,
329 .off1 = td_var_offset(iodepth_low),
330 .help = "Low water mark for queuing depth",
331 },
332 {
333 .name = "size",
334 .type = FIO_OPT_STR_VAL,
2dc1bbeb 335 .off1 = td_var_offset(size),
214e1eca
JA
336 .help = "Total size of device or files",
337 },
338 {
339 .name = "filesize",
340 .type = FIO_OPT_STR_VAL,
341 .off1 = td_var_offset(file_size_low),
342 .off2 = td_var_offset(file_size_high),
343 .help = "Size of individual files",
344 },
345 {
346 .name = "bs",
d3aad8f2 347 .alias = "blocksize",
214e1eca
JA
348 .type = FIO_OPT_STR_VAL_INT,
349 .off1 = td_var_offset(bs[DDIR_READ]),
350 .off2 = td_var_offset(bs[DDIR_WRITE]),
351 .help = "Block size unit",
352 .def = "4k",
353 },
354 {
355 .name = "bsrange",
d3aad8f2 356 .alias = "blocksize_range",
214e1eca
JA
357 .type = FIO_OPT_RANGE,
358 .off1 = td_var_offset(min_bs[DDIR_READ]),
359 .off2 = td_var_offset(max_bs[DDIR_READ]),
360 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
361 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
362 .help = "Set block size range (in more detail than bs)",
363 },
364 {
365 .name = "bs_unaligned",
d3aad8f2 366 .alias = "blocksize_unaligned",
214e1eca
JA
367 .type = FIO_OPT_STR_SET,
368 .off1 = td_var_offset(bs_unaligned),
369 .help = "Don't sector align IO buffer sizes",
370 },
371 {
372 .name = "offset",
373 .type = FIO_OPT_STR_VAL,
374 .off1 = td_var_offset(start_offset),
375 .help = "Start IO from this offset",
376 .def = "0",
377 },
378 {
379 .name = "randrepeat",
380 .type = FIO_OPT_BOOL,
381 .off1 = td_var_offset(rand_repeatable),
382 .help = "Use repeatable random IO pattern",
383 .def = "1",
384 },
385 {
386 .name = "norandommap",
387 .type = FIO_OPT_STR_SET,
388 .off1 = td_var_offset(norandommap),
389 .help = "Accept potential duplicate random blocks",
390 },
391 {
392 .name = "nrfiles",
393 .type = FIO_OPT_INT,
394 .off1 = td_var_offset(nr_files),
395 .help = "Split job workload between this number of files",
396 .def = "1",
397 },
398 {
399 .name = "openfiles",
400 .type = FIO_OPT_INT,
401 .off1 = td_var_offset(open_files),
402 .help = "Number of files to keep open at the same time",
403 },
404 {
405 .name = "file_service_type",
406 .type = FIO_OPT_STR,
407 .cb = str_fst_cb,
408 .off1 = td_var_offset(file_service_type),
409 .help = "How to select which file to service next",
410 .def = "roundrobin",
411 .posval = {
412 { .ival = "random",
413 .oval = FIO_FSERVICE_RANDOM,
414 .help = "Choose a file at random",
415 },
416 { .ival = "roundrobin",
417 .oval = FIO_FSERVICE_RR,
418 .help = "Round robin select files",
419 },
420 },
421 },
422 {
423 .name = "fsync",
424 .type = FIO_OPT_INT,
425 .off1 = td_var_offset(fsync_blocks),
426 .help = "Issue fsync for writes every given number of blocks",
427 .def = "0",
428 },
429 {
430 .name = "direct",
431 .type = FIO_OPT_BOOL,
432 .off1 = td_var_offset(odirect),
433 .help = "Use O_DIRECT IO (negates buffered)",
434 .def = "0",
435 },
436 {
437 .name = "buffered",
438 .type = FIO_OPT_BOOL,
439 .off1 = td_var_offset(odirect),
440 .neg = 1,
441 .help = "Use buffered IO (negates direct)",
442 .def = "1",
443 },
444 {
445 .name = "overwrite",
446 .type = FIO_OPT_BOOL,
447 .off1 = td_var_offset(overwrite),
448 .help = "When writing, set whether to overwrite current data",
449 .def = "0",
450 },
451 {
452 .name = "loops",
453 .type = FIO_OPT_INT,
454 .off1 = td_var_offset(loops),
455 .help = "Number of times to run the job",
456 .def = "1",
457 },
458 {
459 .name = "numjobs",
460 .type = FIO_OPT_INT,
461 .off1 = td_var_offset(numjobs),
462 .help = "Duplicate this job this many times",
463 .def = "1",
464 },
465 {
466 .name = "startdelay",
467 .type = FIO_OPT_INT,
468 .off1 = td_var_offset(start_delay),
469 .help = "Only start job when this period has passed",
470 .def = "0",
471 },
472 {
473 .name = "runtime",
474 .alias = "timeout",
475 .type = FIO_OPT_STR_VAL_TIME,
476 .off1 = td_var_offset(timeout),
477 .help = "Stop workload when this amount of time has passed",
478 .def = "0",
479 },
480 {
481 .name = "mem",
d3aad8f2 482 .alias = "iomem",
214e1eca
JA
483 .type = FIO_OPT_STR,
484 .cb = str_mem_cb,
485 .off1 = td_var_offset(mem_type),
486 .help = "Backing type for IO buffers",
487 .def = "malloc",
488 .posval = {
489 { .ival = "malloc",
490 .oval = MEM_MALLOC,
491 .help = "Use malloc(3) for IO buffers",
492 },
37c8cdfe
JA
493 { .ival = "shm",
494 .oval = MEM_SHM,
495 .help = "Use shared memory segments for IO buffers",
496 },
214e1eca
JA
497#ifdef FIO_HAVE_HUGETLB
498 { .ival = "shmhuge",
499 .oval = MEM_SHMHUGE,
500 .help = "Like shm, but use huge pages",
501 },
b370e46a 502#endif
37c8cdfe
JA
503 { .ival = "mmap",
504 .oval = MEM_MMAP,
505 .help = "Use mmap(2) (file or anon) for IO buffers",
506 },
214e1eca
JA
507#ifdef FIO_HAVE_HUGETLB
508 { .ival = "mmaphuge",
509 .oval = MEM_MMAPHUGE,
510 .help = "Like mmap, but use huge pages",
511 },
512#endif
513 },
514 },
515 {
516 .name = "verify",
517 .type = FIO_OPT_STR,
518 .off1 = td_var_offset(verify),
519 .help = "Verify data written",
520 .def = "0",
521 .posval = {
522 { .ival = "0",
523 .oval = VERIFY_NONE,
524 .help = "Don't do IO verification",
525 },
526 { .ival = "crc32",
527 .oval = VERIFY_CRC32,
528 .help = "Use crc32 checksums for verification",
529 },
530 { .ival = "md5",
531 .oval = VERIFY_MD5,
532 .help = "Use md5 checksums for verification",
533 },
36690c9b
JA
534 {
535 .ival = "null",
536 .oval = VERIFY_NULL,
537 .help = "Pretend to verify",
538 },
214e1eca
JA
539 },
540 },
541 {
542 .name = "write_iolog",
543 .type = FIO_OPT_STR_STORE,
544 .off1 = td_var_offset(write_iolog_file),
545 .help = "Store IO pattern to file",
546 },
547 {
548 .name = "read_iolog",
549 .type = FIO_OPT_STR_STORE,
550 .off1 = td_var_offset(read_iolog_file),
551 .help = "Playback IO pattern from file",
552 },
553 {
554 .name = "exec_prerun",
555 .type = FIO_OPT_STR_STORE,
556 .off1 = td_var_offset(exec_prerun),
557 .help = "Execute this file prior to running job",
558 },
559 {
560 .name = "exec_postrun",
561 .type = FIO_OPT_STR_STORE,
562 .off1 = td_var_offset(exec_postrun),
563 .help = "Execute this file after running job",
564 },
565#ifdef FIO_HAVE_IOSCHED_SWITCH
566 {
567 .name = "ioscheduler",
568 .type = FIO_OPT_STR_STORE,
569 .off1 = td_var_offset(ioscheduler),
570 .help = "Use this IO scheduler on the backing device",
571 },
572#endif
573 {
574 .name = "zonesize",
575 .type = FIO_OPT_STR_VAL,
576 .off1 = td_var_offset(zone_size),
577 .help = "Give size of an IO zone",
578 .def = "0",
579 },
580 {
581 .name = "zoneskip",
582 .type = FIO_OPT_STR_VAL,
583 .off1 = td_var_offset(zone_skip),
584 .help = "Space between IO zones",
585 .def = "0",
586 },
587 {
588 .name = "lockmem",
589 .type = FIO_OPT_STR_VAL,
590 .cb = str_lockmem_cb,
591 .help = "Lock down this amount of memory",
592 .def = "0",
593 },
594 {
595 .name = "rwmixcycle",
596 .type = FIO_OPT_INT,
597 .off1 = td_var_offset(rwmixcycle),
598 .help = "Cycle period for mixed read/write workloads (msec)",
599 .def = "500",
600 },
601 {
602 .name = "rwmixread",
603 .type = FIO_OPT_INT,
e47f799f 604 .off1 = td_var_offset(rwmix[DDIR_READ]),
214e1eca
JA
605 .maxval = 100,
606 .help = "Percentage of mixed workload that is reads",
607 .def = "50",
608 },
609 {
610 .name = "rwmixwrite",
611 .type = FIO_OPT_INT,
e47f799f 612 .off1 = td_var_offset(rwmix[DDIR_WRITE]),
214e1eca
JA
613 .maxval = 100,
614 .help = "Percentage of mixed workload that is writes",
615 .def = "50",
616 },
617 {
618 .name = "nice",
619 .type = FIO_OPT_INT,
620 .off1 = td_var_offset(nice),
621 .help = "Set job CPU nice value",
622 .minval = -19,
623 .maxval = 20,
624 .def = "0",
625 },
626#ifdef FIO_HAVE_IOPRIO
627 {
628 .name = "prio",
629 .type = FIO_OPT_INT,
630 .cb = str_prio_cb,
631 .help = "Set job IO priority value",
632 .minval = 0,
633 .maxval = 7,
634 },
635 {
636 .name = "prioclass",
637 .type = FIO_OPT_INT,
638 .cb = str_prioclass_cb,
639 .help = "Set job IO priority class",
640 .minval = 0,
641 .maxval = 3,
642 },
643#endif
644 {
645 .name = "thinktime",
646 .type = FIO_OPT_INT,
647 .off1 = td_var_offset(thinktime),
648 .help = "Idle time between IO buffers (usec)",
649 .def = "0",
650 },
651 {
652 .name = "thinktime_spin",
653 .type = FIO_OPT_INT,
654 .off1 = td_var_offset(thinktime_spin),
655 .help = "Start think time by spinning this amount (usec)",
656 .def = "0",
657 },
658 {
659 .name = "thinktime_blocks",
660 .type = FIO_OPT_INT,
661 .off1 = td_var_offset(thinktime_blocks),
662 .help = "IO buffer period between 'thinktime'",
663 .def = "1",
664 },
665 {
666 .name = "rate",
667 .type = FIO_OPT_INT,
668 .off1 = td_var_offset(rate),
669 .help = "Set bandwidth rate",
670 },
671 {
672 .name = "ratemin",
673 .type = FIO_OPT_INT,
674 .off1 = td_var_offset(ratemin),
4e991c23
JA
675 .help = "Job must meet this rate or it will be shutdown",
676 },
677 {
678 .name = "rate_iops",
679 .type = FIO_OPT_INT,
680 .off1 = td_var_offset(rate_iops),
681 .help = "Limit IO used to this number of IO operations/sec",
682 },
683 {
684 .name = "rate_iops_min",
685 .type = FIO_OPT_INT,
686 .off1 = td_var_offset(rate_iops_min),
687 .help = "Job must meet this rate or it will be shutdown",
214e1eca
JA
688 },
689 {
690 .name = "ratecycle",
691 .type = FIO_OPT_INT,
692 .off1 = td_var_offset(ratecycle),
693 .help = "Window average for rate limits (msec)",
694 .def = "1000",
695 },
696 {
697 .name = "invalidate",
698 .type = FIO_OPT_BOOL,
699 .off1 = td_var_offset(invalidate_cache),
700 .help = "Invalidate buffer/page cache prior to running job",
701 .def = "1",
702 },
703 {
704 .name = "sync",
705 .type = FIO_OPT_BOOL,
706 .off1 = td_var_offset(sync_io),
707 .help = "Use O_SYNC for buffered writes",
708 .def = "0",
709 },
710 {
711 .name = "bwavgtime",
712 .type = FIO_OPT_INT,
713 .off1 = td_var_offset(bw_avg_time),
714 .help = "Time window over which to calculate bandwidth (msec)",
715 .def = "500",
716 },
717 {
718 .name = "create_serialize",
719 .type = FIO_OPT_BOOL,
720 .off1 = td_var_offset(create_serialize),
721 .help = "Serialize creating of job files",
722 .def = "1",
723 },
724 {
725 .name = "create_fsync",
726 .type = FIO_OPT_BOOL,
727 .off1 = td_var_offset(create_fsync),
728 .help = "Fsync file after creation",
729 .def = "1",
730 },
731 {
732 .name = "cpuload",
733 .type = FIO_OPT_INT,
734 .off1 = td_var_offset(cpuload),
735 .help = "Use this percentage of CPU",
736 },
737 {
738 .name = "cpuchunks",
739 .type = FIO_OPT_INT,
740 .off1 = td_var_offset(cpucycle),
741 .help = "Length of the CPU burn cycles (usecs)",
742 .def = "50000",
743 },
744#ifdef FIO_HAVE_CPU_AFFINITY
745 {
746 .name = "cpumask",
747 .type = FIO_OPT_INT,
748 .cb = str_cpumask_cb,
749 .help = "CPU affinity mask",
750 },
751#endif
752 {
753 .name = "end_fsync",
754 .type = FIO_OPT_BOOL,
755 .off1 = td_var_offset(end_fsync),
756 .help = "Include fsync at the end of job",
757 .def = "0",
758 },
759 {
760 .name = "fsync_on_close",
761 .type = FIO_OPT_BOOL,
762 .off1 = td_var_offset(fsync_on_close),
763 .help = "fsync files on close",
764 .def = "0",
765 },
766 {
767 .name = "unlink",
768 .type = FIO_OPT_BOOL,
769 .off1 = td_var_offset(unlink),
770 .help = "Unlink created files after job has completed",
771 .def = "0",
772 },
773 {
774 .name = "exitall",
775 .type = FIO_OPT_STR_SET,
776 .cb = str_exitall_cb,
777 .help = "Terminate all jobs when one exits",
778 },
779 {
780 .name = "stonewall",
781 .type = FIO_OPT_STR_SET,
782 .off1 = td_var_offset(stonewall),
783 .help = "Insert a hard barrier between this job and previous",
784 },
b3d62a75
JA
785 {
786 .name = "new_group",
787 .type = FIO_OPT_STR_SET,
788 .off1 = td_var_offset(new_group),
789 .help = "Mark the start of a new group (for reporting)",
790 },
214e1eca
JA
791 {
792 .name = "thread",
793 .type = FIO_OPT_STR_SET,
794 .off1 = td_var_offset(use_thread),
795 .help = "Use threads instead of forks",
796 },
797 {
798 .name = "write_bw_log",
799 .type = FIO_OPT_STR_SET,
800 .off1 = td_var_offset(write_bw_log),
801 .help = "Write log of bandwidth during run",
802 },
803 {
804 .name = "write_lat_log",
805 .type = FIO_OPT_STR_SET,
806 .off1 = td_var_offset(write_lat_log),
807 .help = "Write log of latency during run",
808 },
809 {
810 .name = "hugepage-size",
811 .type = FIO_OPT_STR_VAL,
812 .off1 = td_var_offset(hugepage_size),
813 .help = "When using hugepages, specify size of each page",
814 .def = __stringify(FIO_HUGE_PAGE),
815 },
816 {
817 .name = "group_reporting",
818 .type = FIO_OPT_STR_SET,
819 .off1 = td_var_offset(group_reporting),
820 .help = "Do reporting on a per-group basis",
821 },
822 {
823 .name = NULL,
824 },
825};
826
827void fio_options_dup_and_init(struct option *long_options)
828{
829 struct fio_option *o;
830 unsigned int i;
831
832 options_init(options);
833
834 i = 0;
835 while (long_options[i].name)
836 i++;
837
838 o = &options[0];
839 while (o->name) {
840 long_options[i].name = o->name;
841 long_options[i].val = FIO_GETOPT_JOB;
842 if (o->type == FIO_OPT_STR_SET)
843 long_options[i].has_arg = no_argument;
844 else
845 long_options[i].has_arg = required_argument;
846
847 i++;
848 o++;
849 assert(i < FIO_NR_OPTIONS);
850 }
851}
852
853int fio_option_parse(struct thread_data *td, const char *opt)
854{
855 return parse_option(opt, options, td);
856}
857
858int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
859{
860 return parse_cmd_option(opt, val, options, td);
861}
862
863void fio_fill_default_options(struct thread_data *td)
864{
865 fill_default_options(td, options);
866}
867
868int fio_show_option_help(const char *opt)
869{
870 return show_cmd_help(options, opt);
871}
d23bb327
JA
872
873static void __options_mem(struct thread_data *td, int alloc)
874{
875 struct thread_options *o = &td->o;
876 struct fio_option *opt;
877 char **ptr;
878 int i;
879
880 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
881 if (opt->type != FIO_OPT_STR_STORE)
882 continue;
883
884 ptr = (void *) o + opt->off1;
885 if (*ptr) {
886 if (alloc)
887 *ptr = strdup(*ptr);
888 else {
889 free(*ptr);
890 *ptr = NULL;
891 }
892 }
893 }
894}
895
896/*
897 * dupe FIO_OPT_STR_STORE options
898 */
899void options_mem_dupe(struct thread_data *td)
900{
901 __options_mem(td, 1);
902}
903
904void options_mem_free(struct thread_data *td)
905{
906 __options_mem(td, 0);
907}