2 * This file contains job initialization and setup functions.
11 #include <sys/types.h>
13 #ifdef CONFIG_VALGRIND_DEV
14 #include <valgrind/drd.h>
16 #define DRD_IGNORE_VAR(x) do { } while (0)
20 #ifndef FIO_NO_HAVE_SHM_H
32 #include "steadystate.h"
35 #include "oslib/asprintf.h"
36 #include "oslib/getopt.h"
37 #include "oslib/strcasestr.h"
41 #include "lib/memcpy.h"
43 const char fio_version_string[] = FIO_VERSION;
45 #define FIO_RANDSEED (0xb1899bedUL)
47 static char **ini_file;
48 static bool dump_cmdline;
49 static bool parse_only;
50 static bool merge_blktrace_only;
52 static struct thread_data def_thread;
53 struct thread_segment segments[REAL_MAX_SEG];
54 static char **job_sections;
55 static int nr_job_sections;
57 bool exitall_on_terminate = false;
58 int output_format = FIO_OUTPUT_NORMAL;
59 int eta_print = FIO_ETA_AUTO;
60 unsigned int eta_interval_msec = 1000;
64 char *exec_profile = NULL;
65 int warnings_fatal = 0;
66 int terse_version = 3;
67 bool is_backend = false;
68 bool is_local_backend = false;
70 bool log_syslog = false;
72 bool write_bw_log = false;
73 bool read_only = false;
74 int status_interval = 0;
76 char *trigger_file = NULL;
77 long long trigger_timeout = 0;
78 char *trigger_cmd = NULL;
79 char *trigger_remote_cmd = NULL;
81 char *aux_path = NULL;
83 static int prev_group_jobs;
85 unsigned long fio_debug = 0;
86 unsigned int fio_debug_jobno = -1;
87 unsigned int *fio_debug_jobp = NULL;
88 unsigned int *fio_warned = NULL;
90 static char cmd_optstr[256];
93 #define FIO_CLIENT_FLAG (1 << 16)
96 * Command line options. These will contain the above, plus a few
97 * extra that only pertain to fio itself and not jobs.
99 static struct option l_opts[FIO_NR_OPTIONS] = {
101 .name = (char *) "output",
102 .has_arg = required_argument,
103 .val = 'o' | FIO_CLIENT_FLAG,
106 .name = (char *) "latency-log",
107 .has_arg = required_argument,
108 .val = 'l' | FIO_CLIENT_FLAG,
111 .name = (char *) "bandwidth-log",
112 .has_arg = no_argument,
113 .val = 'b' | FIO_CLIENT_FLAG,
116 .name = (char *) "minimal",
117 .has_arg = no_argument,
118 .val = 'm' | FIO_CLIENT_FLAG,
121 .name = (char *) "output-format",
122 .has_arg = required_argument,
123 .val = 'F' | FIO_CLIENT_FLAG,
126 .name = (char *) "append-terse",
127 .has_arg = optional_argument,
131 .name = (char *) "version",
132 .has_arg = no_argument,
133 .val = 'v' | FIO_CLIENT_FLAG,
136 .name = (char *) "help",
137 .has_arg = no_argument,
138 .val = 'h' | FIO_CLIENT_FLAG,
141 .name = (char *) "cmdhelp",
142 .has_arg = optional_argument,
143 .val = 'c' | FIO_CLIENT_FLAG,
146 .name = (char *) "enghelp",
147 .has_arg = optional_argument,
148 .val = 'i' | FIO_CLIENT_FLAG,
151 .name = (char *) "showcmd",
152 .has_arg = no_argument,
153 .val = 's' | FIO_CLIENT_FLAG,
156 .name = (char *) "readonly",
157 .has_arg = no_argument,
158 .val = 'r' | FIO_CLIENT_FLAG,
161 .name = (char *) "eta",
162 .has_arg = required_argument,
163 .val = 'e' | FIO_CLIENT_FLAG,
166 .name = (char *) "eta-interval",
167 .has_arg = required_argument,
168 .val = 'O' | FIO_CLIENT_FLAG,
171 .name = (char *) "eta-newline",
172 .has_arg = required_argument,
173 .val = 'E' | FIO_CLIENT_FLAG,
176 .name = (char *) "debug",
177 .has_arg = required_argument,
178 .val = 'd' | FIO_CLIENT_FLAG,
181 .name = (char *) "parse-only",
182 .has_arg = no_argument,
183 .val = 'P' | FIO_CLIENT_FLAG,
186 .name = (char *) "section",
187 .has_arg = required_argument,
188 .val = 'x' | FIO_CLIENT_FLAG,
192 .name = (char *) "inflate-log",
193 .has_arg = required_argument,
194 .val = 'X' | FIO_CLIENT_FLAG,
198 .name = (char *) "alloc-size",
199 .has_arg = required_argument,
200 .val = 'a' | FIO_CLIENT_FLAG,
203 .name = (char *) "profile",
204 .has_arg = required_argument,
205 .val = 'p' | FIO_CLIENT_FLAG,
208 .name = (char *) "warnings-fatal",
209 .has_arg = no_argument,
210 .val = 'w' | FIO_CLIENT_FLAG,
213 .name = (char *) "max-jobs",
214 .has_arg = required_argument,
215 .val = 'j' | FIO_CLIENT_FLAG,
218 .name = (char *) "terse-version",
219 .has_arg = required_argument,
220 .val = 'V' | FIO_CLIENT_FLAG,
223 .name = (char *) "server",
224 .has_arg = optional_argument,
229 .name = (char *) "server-internal",
230 .has_arg = required_argument,
234 { .name = (char *) "daemonize",
235 .has_arg = required_argument,
239 .name = (char *) "client",
240 .has_arg = required_argument,
244 .name = (char *) "remote-config",
245 .has_arg = required_argument,
249 .name = (char *) "cpuclock-test",
250 .has_arg = no_argument,
254 .name = (char *) "crctest",
255 .has_arg = optional_argument,
259 .name = (char *) "memcpytest",
260 .has_arg = optional_argument,
264 .name = (char *) "idle-prof",
265 .has_arg = required_argument,
269 .name = (char *) "status-interval",
270 .has_arg = required_argument,
271 .val = 'L' | FIO_CLIENT_FLAG,
274 .name = (char *) "trigger-file",
275 .has_arg = required_argument,
279 .name = (char *) "trigger-timeout",
280 .has_arg = required_argument,
284 .name = (char *) "trigger",
285 .has_arg = required_argument,
289 .name = (char *) "trigger-remote",
290 .has_arg = required_argument,
294 .name = (char *) "aux-path",
295 .has_arg = required_argument,
299 .name = (char *) "merge-blktrace-only",
300 .has_arg = no_argument,
301 .val = 'A' | FIO_CLIENT_FLAG,
308 void free_threads_shm(void)
312 for (i = 0; i < nr_segments; i++) {
313 struct thread_segment *seg = &segments[i];
316 void *tp = seg->threads;
317 #ifndef CONFIG_NO_SHM
318 struct shmid_ds sbuf;
322 shmctl(seg->shm_id, IPC_RMID, &sbuf);
335 static void free_shm(void)
337 #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
340 fio_debug_jobp = NULL;
347 free(trigger_remote_cmd);
348 trigger_file = trigger_cmd = trigger_remote_cmd = NULL;
350 options_free(fio_options, &def_thread.o);
357 static int add_thread_segment(void)
359 struct thread_segment *seg = &segments[nr_segments];
360 size_t size = JOBS_PER_SEG * sizeof(struct thread_data);
363 if (nr_segments + 1 >= REAL_MAX_SEG) {
364 log_err("error: maximum number of jobs reached.\n");
368 size += 2 * sizeof(unsigned int);
370 #ifndef CONFIG_NO_SHM
371 seg->shm_id = shmget(0, size, IPC_CREAT | 0600);
372 if (seg->shm_id == -1) {
373 if (errno != EINVAL && errno != ENOMEM && errno != ENOSPC)
378 seg->threads = malloc(size);
383 #ifndef CONFIG_NO_SHM
384 seg->threads = shmat(seg->shm_id, NULL, 0);
385 if (seg->threads == (void *) -1) {
389 if (shm_attach_to_open_removed())
390 shmctl(seg->shm_id, IPC_RMID, NULL);
395 memset(seg->threads, 0, JOBS_PER_SEG * sizeof(struct thread_data));
396 for (i = 0; i < JOBS_PER_SEG; i++)
397 DRD_IGNORE_VAR(seg->threads[i]);
400 /* Not first segment, we're done */
401 if (nr_segments != 1) {
406 fio_debug_jobp = (unsigned int *)(seg->threads + JOBS_PER_SEG);
407 *fio_debug_jobp = -1;
408 fio_warned = fio_debug_jobp + 1;
416 * The thread areas are shared between the main process and the job
417 * threads/processes, and is split into chunks of JOBS_PER_SEG. If the current
418 * segment has no more room, add a new chunk.
420 static int expand_thread_area(void)
422 struct thread_segment *seg = &segments[cur_segment];
424 if (nr_segments && seg->nr_threads < JOBS_PER_SEG)
427 return add_thread_segment();
430 static void dump_print_option(struct print_option *p)
434 if (!strcmp("description", p->name))
439 log_info("--%s%s", p->name, p->value ? "" : " ");
441 log_info("=%s%s%s ", delim, p->value, delim);
444 static void dump_opt_list(struct thread_data *td)
446 struct flist_head *entry;
447 struct print_option *p;
449 if (flist_empty(&td->opt_list))
452 flist_for_each(entry, &td->opt_list) {
453 p = flist_entry(entry, struct print_option, list);
454 dump_print_option(p);
458 static void copy_opt_list(struct thread_data *dst, struct thread_data *src)
460 struct flist_head *entry;
462 if (flist_empty(&src->opt_list))
465 flist_for_each(entry, &src->opt_list) {
466 struct print_option *srcp, *dstp;
468 srcp = flist_entry(entry, struct print_option, list);
469 dstp = malloc(sizeof(*dstp));
470 dstp->name = strdup(srcp->name);
472 dstp->value = strdup(srcp->value);
475 flist_add_tail(&dstp->list, &dst->opt_list);
480 * Return a free job structure.
482 static struct thread_data *get_new_job(bool global, struct thread_data *parent,
483 bool preserve_eo, const char *jobname)
485 struct thread_segment *seg;
486 struct thread_data *td;
490 if (expand_thread_area()) {
491 log_err("error: failed to setup shm segment\n");
495 seg = &segments[cur_segment];
496 td = &seg->threads[seg->nr_threads++];
500 INIT_FLIST_HEAD(&td->opt_list);
501 if (parent != &def_thread)
502 copy_opt_list(td, parent);
509 td->o.uid = td->o.gid = -1U;
511 dup_files(td, parent);
512 fio_options_mem_dupe(td);
514 profile_add_hooks(td);
516 td->thread_number = thread_number;
517 td->subjob_number = 0;
520 td->o.name = strdup(jobname);
522 if (!parent->o.group_reporting || parent == &def_thread)
528 static void put_job(struct thread_data *td)
530 if (td == &def_thread)
537 log_info("fio: %s\n", td->verror);
539 fio_options_free(td);
540 fio_dump_options_free(td);
547 memset(td, 0, sizeof(*td));
548 segments[cur_segment].nr_threads--;
552 static int __setup_rate(struct thread_data *td, enum fio_ddir ddir)
554 unsigned long long bs = td->o.min_bs[ddir];
556 assert(ddir_rw(ddir));
558 if (td->o.rate[ddir])
559 td->rate_bps[ddir] = td->o.rate[ddir];
561 td->rate_bps[ddir] = (uint64_t) td->o.rate_iops[ddir] * bs;
563 if (!td->rate_bps[ddir]) {
564 log_err("rate lower than supported\n");
568 td->rate_next_io_time[ddir] = 0;
569 td->rate_io_issue_bytes[ddir] = 0;
570 td->last_usec[ddir] = 0;
574 static int setup_rate(struct thread_data *td)
578 for_each_rw_ddir(ddir) {
579 if (td->o.rate[ddir] || td->o.rate_iops[ddir]) {
580 ret |= __setup_rate(td, ddir);
586 static int fixed_block_size(struct thread_options *o)
588 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
589 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
590 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
591 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
592 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
598 static unsigned int gcd(unsigned int m, unsigned int n)
603 return gcd(n, m % n);
607 * Lazy way of fixing up options that depend on each other. We could also
608 * define option callback handlers, but this is easier.
610 static int fixup_options(struct thread_data *td)
612 struct thread_options *o = &td->o;
616 * Denote whether we are verifying trims. Now we only have to check a
617 * single variable instead of having to check all three options.
619 td->trim_verify = o->verify && o->trim_backlog && o->trim_percentage;
620 dprint(FD_VERIFY, "td->trim_verify=%d\n", td->trim_verify);
622 if (read_only && (td_write(td) || td_trim(td) || td->trim_verify)) {
623 log_err("fio: trim and write operations are not allowed"
624 " with the --readonly parameter.\n");
628 if (td_trimwrite(td) && o->num_range > 1) {
629 log_err("fio: trimwrite cannot be used with multiple"
634 if (td_trim(td) && o->num_range > 1 &&
635 !td_ioengine_flagged(td, FIO_MULTI_RANGE_TRIM)) {
636 log_err("fio: can't use multiple ranges with IO engine %s\n",
641 #ifndef CONFIG_PSHARED
642 if (!o->use_thread) {
643 log_info("fio: this platform does not support process shared"
644 " mutexes, forcing use of threads. Use the 'thread'"
645 " option to get rid of this warning.\n");
647 ret |= warnings_fatal;
651 if (o->write_iolog_file && o->read_iolog_file) {
652 log_err("fio: read iolog overrides write_iolog\n");
653 free(o->write_iolog_file);
654 o->write_iolog_file = NULL;
655 ret |= warnings_fatal;
658 if (o->zone_mode == ZONE_MODE_NONE && o->zone_size) {
659 log_err("fio: --zonemode=none and --zonesize are not compatible.\n");
663 if (o->zone_mode == ZONE_MODE_ZBD && !o->create_serialize) {
664 log_err("fio: --zonemode=zbd and --create_serialize=0 are not compatible.\n");
668 if (o->zone_mode == ZONE_MODE_STRIDED && !o->zone_size) {
669 log_err("fio: --zonesize must be specified when using --zonemode=strided.\n");
673 if (o->zone_mode == ZONE_MODE_NOT_SPECIFIED) {
675 o->zone_mode = ZONE_MODE_STRIDED;
677 o->zone_mode = ZONE_MODE_NONE;
681 * Strided zone mode only really works with 1 file.
683 if (o->zone_mode == ZONE_MODE_STRIDED && o->open_files > 1)
684 o->zone_mode = ZONE_MODE_NONE;
687 * If zone_range isn't specified, backward compatibility dictates it
688 * should be made equal to zone_size.
690 if (o->zone_mode == ZONE_MODE_STRIDED && !o->zone_range)
691 o->zone_range = o->zone_size;
694 * Reads can do overwrites, we always need to pre-create the file
699 for_each_rw_ddir(ddir) {
700 if (!o->min_bs[ddir])
701 o->min_bs[ddir] = o->bs[ddir];
702 if (!o->max_bs[ddir])
703 o->max_bs[ddir] = o->bs[ddir];
707 for_each_rw_ddir(ddir) {
708 o->rw_min_bs = min(o->rw_min_bs, o->min_bs[ddir]);
712 * For random IO, allow blockalign offset other than min_bs.
714 for_each_rw_ddir(ddir) {
715 if (!o->ba[ddir] || !td_random(td))
716 o->ba[ddir] = o->min_bs[ddir];
719 if ((o->ba[DDIR_READ] != o->min_bs[DDIR_READ] ||
720 o->ba[DDIR_WRITE] != o->min_bs[DDIR_WRITE] ||
721 o->ba[DDIR_TRIM] != o->min_bs[DDIR_TRIM]) &&
723 log_err("fio: Any use of blockalign= turns off randommap\n");
725 ret |= warnings_fatal;
728 if (!o->file_size_high)
729 o->file_size_high = o->file_size_low;
731 if (o->start_delay_high) {
732 if (!o->start_delay_orig)
733 o->start_delay_orig = o->start_delay;
734 o->start_delay = rand_between(&td->delay_state,
736 o->start_delay_high);
739 if (o->norandommap && o->verify != VERIFY_NONE
740 && !fixed_block_size(o)) {
741 log_err("fio: norandommap given for variable block sizes, "
743 ret |= warnings_fatal;
745 if (o->bs_unaligned && (o->odirect || td_ioengine_flagged(td, FIO_RAWIO)))
746 log_err("fio: bs_unaligned may not work with raw io\n");
749 * thinktime_spin must be less than thinktime
751 if (o->thinktime_spin > o->thinktime)
752 o->thinktime_spin = o->thinktime;
755 * The low water mark cannot be bigger than the iodepth
757 if (o->iodepth_low > o->iodepth || !o->iodepth_low)
758 o->iodepth_low = o->iodepth;
761 * If batch number isn't set, default to the same as iodepth
763 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
764 o->iodepth_batch = o->iodepth;
767 * If max batch complete number isn't set or set incorrectly,
768 * default to the same as iodepth_batch_complete_min
770 if (o->iodepth_batch_complete_min > o->iodepth_batch_complete_max)
771 o->iodepth_batch_complete_max = o->iodepth_batch_complete_min;
774 * There's no need to check for in-flight overlapping IOs if the job
775 * isn't changing data or the maximum iodepth is guaranteed to be 1
776 * when we are not in offload mode
778 if (o->serialize_overlap && !(td->flags & TD_F_READ_IOLOG) &&
779 (!(td_write(td) || td_trim(td)) || o->iodepth == 1) &&
780 o->io_submit_mode != IO_MODE_OFFLOAD)
781 o->serialize_overlap = 0;
783 if (o->nr_files > td->files_index)
784 o->nr_files = td->files_index;
786 if (o->open_files > o->nr_files || !o->open_files)
787 o->open_files = o->nr_files;
789 if (((o->rate[DDIR_READ] + o->rate[DDIR_WRITE] + o->rate[DDIR_TRIM]) &&
790 (o->rate_iops[DDIR_READ] + o->rate_iops[DDIR_WRITE] + o->rate_iops[DDIR_TRIM])) ||
791 ((o->ratemin[DDIR_READ] + o->ratemin[DDIR_WRITE] + o->ratemin[DDIR_TRIM]) &&
792 (o->rate_iops_min[DDIR_READ] + o->rate_iops_min[DDIR_WRITE] + o->rate_iops_min[DDIR_TRIM]))) {
793 log_err("fio: rate and rate_iops are mutually exclusive\n");
796 for_each_rw_ddir(ddir) {
797 if ((o->rate[ddir] && (o->rate[ddir] < o->ratemin[ddir])) ||
798 (o->rate_iops[ddir] && (o->rate_iops[ddir] < o->rate_iops_min[ddir]))) {
799 log_err("fio: minimum rate exceeds rate, ddir %d\n", +ddir);
804 if (!o->timeout && o->time_based) {
805 log_err("fio: time_based requires a runtime/timeout setting\n");
807 ret |= warnings_fatal;
810 if (o->fill_device && !o->size)
813 if (o->verify != VERIFY_NONE) {
814 if (td_write(td) && o->do_verify && o->numjobs > 1 &&
816 !(o->unique_filename &&
817 strstr(o->filename_format, "$jobname") &&
818 strstr(o->filename_format, "$jobnum") &&
819 strstr(o->filename_format, "$filenum")))) {
820 log_info("fio: multiple writers may overwrite blocks "
821 "that belong to other jobs. This can cause "
822 "verification failures.\n");
823 ret |= warnings_fatal;
827 * Warn if verification is requested but no verification of any
828 * kind can be started due to time constraints
830 if (td_write(td) && o->do_verify && o->timeout &&
831 o->time_based && !td_read(td) && !o->verify_backlog) {
832 log_info("fio: verification read phase will never "
833 "start because write phase uses all of "
835 ret |= warnings_fatal;
838 if (!fio_option_is_set(o, refill_buffers))
839 o->refill_buffers = 1;
841 if (o->max_bs[DDIR_WRITE] != o->min_bs[DDIR_WRITE] &&
843 o->verify_interval = o->min_bs[DDIR_WRITE];
846 * Verify interval must be smaller or equal to the
849 if (o->verify_interval > o->min_bs[DDIR_WRITE])
850 o->verify_interval = o->min_bs[DDIR_WRITE];
851 else if (td_read(td) && o->verify_interval > o->min_bs[DDIR_READ])
852 o->verify_interval = o->min_bs[DDIR_READ];
855 * Verify interval must be a factor of both min and max
858 if (!o->verify_interval ||
859 (o->min_bs[DDIR_WRITE] % o->verify_interval) ||
860 (o->max_bs[DDIR_WRITE] % o->verify_interval))
861 o->verify_interval = gcd(o->min_bs[DDIR_WRITE],
862 o->max_bs[DDIR_WRITE]);
864 if (o->verify_only) {
865 if (!fio_option_is_set(o, verify_write_sequence))
866 o->verify_write_sequence = 0;
868 if (!fio_option_is_set(o, verify_header_seed))
869 o->verify_header_seed = 0;
872 if (o->norandommap && !td_ioengine_flagged(td, FIO_SYNCIO) &&
875 * Disable write sequence checks with norandommap and
877 * Unless we were explicitly asked to enable it.
879 if (!fio_option_is_set(o, verify_write_sequence))
880 o->verify_write_sequence = 0;
884 * Verify header should not be offset beyond the verify
887 if (o->verify_offset + sizeof(struct verify_header) >
888 o->verify_interval) {
889 log_err("fio: cannot offset verify header beyond the "
890 "verify interval.\n");
895 * Disable rand_seed check when we have verify_backlog,
896 * zone reset frequency for zonemode=zbd, or if we are using
897 * an RB tree for IO history logs.
898 * Unless we were explicitly asked to enable it.
900 if (!td_write(td) || (td->flags & TD_F_VER_BACKLOG) ||
901 o->zrf.u.f || fio_offset_overlap_risk(td)) {
902 if (!fio_option_is_set(o, verify_header_seed))
903 o->verify_header_seed = 0;
908 if (!td_ioengine_flagged(td, FIO_ATOMICWRITES)) {
909 log_err("fio: engine does not support atomic writes\n");
919 if (o->invalidate_cache)
920 o->invalidate_cache = 0;
921 if (td_ioengine_flagged(td, FIO_PIPEIO)) {
922 log_info("fio: cannot pre-read files with an IO engine"
923 " that isn't seekable. Pre-read disabled.\n");
924 ret |= warnings_fatal;
928 if (o->unit_base == N2S_NONE) {
929 if (td_ioengine_flagged(td, FIO_BIT_BASED))
930 o->unit_base = N2S_BITPERSEC;
932 o->unit_base = N2S_BYTEPERSEC;
935 #ifndef CONFIG_FDATASYNC
936 if (o->fdatasync_blocks) {
937 log_info("fio: this platform does not support fdatasync()"
938 " falling back to using fsync(). Use the 'fsync'"
939 " option instead of 'fdatasync' to get rid of"
941 o->fsync_blocks = o->fdatasync_blocks;
942 o->fdatasync_blocks = 0;
943 ret |= warnings_fatal;
949 * Windows doesn't support O_DIRECT or O_SYNC with the _open interface,
950 * so fail if we're passed those flags
952 if (td_ioengine_flagged(td, FIO_SYNCIO) && (o->odirect || o->sync_io)) {
953 log_err("fio: Windows does not support direct or non-buffered io with"
954 " the synchronous ioengines. Use the 'windowsaio' ioengine"
955 " with 'direct=1' and 'iodepth=1' instead.\n");
961 * For fully compressible data, just zero them at init time.
962 * It's faster than repeatedly filling it. For non-zero
963 * compression, we should have refill_buffers set. Set it, unless
964 * the job file already changed it.
966 if (o->compress_percentage) {
967 if (o->compress_percentage == 100) {
969 o->compress_percentage = 0;
970 } else if (!fio_option_is_set(o, refill_buffers)) {
971 o->refill_buffers = 1;
972 td->flags |= TD_F_REFILL_BUFFERS;
977 * Using a non-uniform random distribution excludes usage of
980 if (o->random_distribution != FIO_RAND_DIST_RANDOM)
984 * If size is set but less than the min block size, complain
986 if (o->size && o->size < td_min_bs(td)) {
987 log_err("fio: size too small, must not be less than minimum block size: %llu < %llu\n",
988 (unsigned long long) o->size, td_min_bs(td));
993 * If randseed is set, that overrides randrepeat
995 if (fio_option_is_set(o, rand_seed))
996 o->rand_repeatable = 0;
998 if (td_ioengine_flagged(td, FIO_NOEXTEND) && o->file_append) {
999 log_err("fio: can't append/extent with IO engine %s\n", td->io_ops->name);
1003 if (fio_option_is_set(o, gtod_cpu)) {
1005 fio_gtod_set_cpu(o->gtod_cpu);
1006 fio_gtod_offload = 1;
1009 td->loops = o->loops;
1013 if (o->block_error_hist && o->nr_files != 1) {
1014 log_err("fio: block error histogram only available "
1015 "with a single file per job, but %d files "
1016 "provided\n", o->nr_files);
1021 o->lat_percentiles = 0;
1022 if (o->disable_clat)
1023 o->clat_percentiles = 0;
1024 if (o->disable_slat)
1025 o->slat_percentiles = 0;
1027 /* Do this only for the parent job */
1028 if (!td->subjob_number) {
1030 * Fix these up to be nsec internally
1032 for_each_rw_ddir(ddir)
1033 o->max_latency[ddir] *= 1000ULL;
1035 o->latency_target *= 1000ULL;
1039 * Dedupe working set verifications
1041 if (o->dedupe_percentage && o->dedupe_mode == DEDUPE_MODE_WORKING_SET) {
1042 if (!fio_option_is_set(o, size)) {
1043 log_err("fio: pregenerated dedupe working set "
1044 "requires size to be set\n");
1046 } else if (o->nr_files != 1) {
1047 log_err("fio: dedupe working set mode supported with "
1048 "single file per job, but %d files "
1049 "provided\n", o->nr_files);
1051 } else if (o->dedupe_working_set_percentage + o->dedupe_percentage > 100) {
1052 log_err("fio: impossible to reach expected dedupe percentage %u "
1053 "since %u percentage of size is reserved to dedupe working set "
1054 "(those are unique pages)\n",
1055 o->dedupe_percentage, o->dedupe_working_set_percentage);
1061 if (td->o.ss_check_interval != td2->o.ss_check_interval) {
1062 log_err("fio: conflicting ss_check_interval: %llu and %llu, must be globally equal\n",
1063 td->o.ss_check_interval, td2->o.ss_check_interval);
1067 if (td->o.ss_dur && td->o.ss_check_interval / 1000L < 1000) {
1068 log_err("fio: ss_check_interval must be at least 1s\n");
1072 if (td->o.ss_dur && (td->o.ss_dur % td->o.ss_check_interval != 0 || td->o.ss_dur <= td->o.ss_check_interval)) {
1073 log_err("fio: ss_duration %lluus must be multiple of ss_check_interval %lluus\n",
1074 td->o.ss_dur, td->o.ss_check_interval);
1079 if (fio_option_is_set(&td->o, dp_type) &&
1080 (td->o.dp_type == FIO_DP_STREAMS || td->o.dp_type == FIO_DP_NONE)) {
1081 log_err("fio: fdp=1 is not compatible with dataplacement={streams, none}\n");
1084 td->o.dp_type = FIO_DP_FDP;
1090 static void init_rand_file_service(struct thread_data *td)
1092 unsigned long nranges = td->o.nr_files << FIO_FSERVICE_SHIFT;
1093 const unsigned int seed = td->rand_seeds[FIO_RAND_FILE_OFF];
1095 if (td->o.file_service_type == FIO_FSERVICE_ZIPF) {
1096 zipf_init(&td->next_file_zipf, nranges, td->zipf_theta, td->random_center, seed);
1097 zipf_disable_hash(&td->next_file_zipf);
1098 } else if (td->o.file_service_type == FIO_FSERVICE_PARETO) {
1099 pareto_init(&td->next_file_zipf, nranges, td->pareto_h, td->random_center, seed);
1100 zipf_disable_hash(&td->next_file_zipf);
1101 } else if (td->o.file_service_type == FIO_FSERVICE_GAUSS) {
1102 gauss_init(&td->next_file_gauss, nranges, td->gauss_dev, td->random_center, seed);
1103 gauss_disable_hash(&td->next_file_gauss);
1107 void td_fill_rand_seeds(struct thread_data *td)
1109 uint64_t read_seed = td->rand_seeds[FIO_RAND_BS_OFF];
1110 uint64_t write_seed = td->rand_seeds[FIO_RAND_BS1_OFF];
1111 uint64_t trim_seed = td->rand_seeds[FIO_RAND_BS2_OFF];
1115 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE64)
1121 * trimwrite is special in that we need to generate the same
1122 * offsets to get the "write after trim" effect. If we are
1123 * using bssplit to set buffer length distributions, ensure that
1124 * we seed the trim and write generators identically. Ditto for
1125 * verify, read and writes must have the same seed, if we are doing
1128 if (td->o.verify != VERIFY_NONE)
1129 write_seed = read_seed;
1130 if (td_trimwrite(td))
1131 trim_seed = write_seed;
1132 init_rand_seed(&td->bsrange_state[DDIR_READ], read_seed, use64);
1133 init_rand_seed(&td->bsrange_state[DDIR_WRITE], write_seed, use64);
1134 init_rand_seed(&td->bsrange_state[DDIR_TRIM], trim_seed, use64);
1136 init_rand_seed(&td->verify_state, td->rand_seeds[FIO_RAND_VER_OFF],
1138 init_rand_seed(&td->rwmix_state, td->rand_seeds[FIO_RAND_MIX_OFF], false);
1140 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
1141 init_rand_seed(&td->next_file_state, td->rand_seeds[FIO_RAND_FILE_OFF], use64);
1142 else if (td->o.file_service_type & __FIO_FSERVICE_NONUNIFORM)
1143 init_rand_file_service(td);
1145 init_rand_seed(&td->file_size_state, td->rand_seeds[FIO_RAND_FILE_SIZE_OFF], use64);
1146 init_rand_seed(&td->trim_state, td->rand_seeds[FIO_RAND_TRIM_OFF], use64);
1147 init_rand_seed(&td->delay_state, td->rand_seeds[FIO_RAND_START_DELAY], use64);
1148 init_rand_seed(&td->poisson_state[0], td->rand_seeds[FIO_RAND_POISSON_OFF], 0);
1149 init_rand_seed(&td->poisson_state[1], td->rand_seeds[FIO_RAND_POISSON2_OFF], 0);
1150 init_rand_seed(&td->poisson_state[2], td->rand_seeds[FIO_RAND_POISSON3_OFF], 0);
1151 init_rand_seed(&td->dedupe_state, td->rand_seeds[FIO_DEDUPE_OFF], false);
1152 init_rand_seed(&td->zone_state, td->rand_seeds[FIO_RAND_ZONE_OFF], false);
1153 init_rand_seed(&td->prio_state, td->rand_seeds[FIO_RAND_PRIO_CMDS], false);
1154 init_rand_seed(&td->dedupe_working_set_index_state, td->rand_seeds[FIO_RAND_DEDUPE_WORKING_SET_IX], use64);
1156 init_rand_seed(&td->random_state, td->rand_seeds[FIO_RAND_BLOCK_OFF], use64);
1158 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1159 struct frand_state *s = &td->seq_rand_state[i];
1161 init_rand_seed(s, td->rand_seeds[FIO_RAND_SEQ_RAND_READ_OFF], false);
1164 init_rand_seed(&td->buf_state, td->rand_seeds[FIO_RAND_BUF_OFF], use64);
1165 frand_copy(&td->buf_state_prev, &td->buf_state);
1167 init_rand_seed(&td->fdp_state, td->rand_seeds[FIO_RAND_FDP_OFF], use64);
1170 static int setup_random_seeds(struct thread_data *td)
1175 if (!td->o.rand_repeatable && !fio_option_is_set(&td->o, rand_seed)) {
1176 int ret = init_random_seeds(td->rand_seeds, sizeof(td->rand_seeds));
1177 dprint(FD_RANDOM, "using system RNG for random seeds\n");
1181 seed = td->o.rand_seed;
1182 for (i = 0; i < 4; i++)
1183 seed *= 0x9e370001UL;
1185 for (i = 0; i < FIO_RAND_NR_OFFS; i++) {
1186 td->rand_seeds[i] = seed * td->thread_number + i;
1187 seed *= 0x9e370001UL;
1191 td_fill_rand_seeds(td);
1193 dprint(FD_RANDOM, "FIO_RAND_NR_OFFS=%d\n", FIO_RAND_NR_OFFS);
1194 for (int i = 0; i < FIO_RAND_NR_OFFS; i++)
1195 dprint(FD_RANDOM, "rand_seeds[%d]=%" PRIu64 "\n", i, td->rand_seeds[i]);
1201 * Initializes the ioengine configured for a job, if it has not been done so
1204 int ioengine_load(struct thread_data *td)
1206 if (!td->o.ioengine) {
1207 log_err("fio: internal fault, no IO engine specified\n");
1212 struct ioengine_ops *ops;
1215 /* An engine is loaded, but the requested ioengine
1218 if (!strcmp(td->io_ops->name, td->o.ioengine)) {
1219 /* The right engine is already loaded */
1224 * Name of file and engine may be different, load ops
1225 * for this name and see if they match. If they do, then
1226 * the engine is unchanged.
1228 dlhandle = td->io_ops->dlhandle;
1229 ops = load_ioengine(td);
1233 if (ops == td->io_ops && dlhandle == td->io_ops->dlhandle)
1236 if (dlhandle && dlhandle != td->io_ops->dlhandle)
1239 /* Unload the old engine. */
1243 td->io_ops = load_ioengine(td);
1247 if (td->io_ops->option_struct_size && td->io_ops->options) {
1249 * In cases where td->eo is set, clone it for a child thread.
1250 * This requires that the parent thread has the same ioengine,
1251 * but that requirement must be enforced by the code which
1252 * cloned the thread.
1254 void *origeo = td->eo;
1256 * Otherwise use the default thread options.
1258 if (!origeo && td != &def_thread && def_thread.eo &&
1259 def_thread.io_ops->options == td->io_ops->options)
1260 origeo = def_thread.eo;
1262 options_init(td->io_ops->options);
1263 td->eo = malloc(td->io_ops->option_struct_size);
1265 * Use the default thread as an option template if this uses the
1266 * same options structure and there are non-default options
1270 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
1271 options_mem_dupe(td->io_ops->options, td->eo);
1273 memset(td->eo, 0, td->io_ops->option_struct_size);
1274 fill_default_options(td->eo, td->io_ops->options);
1276 *(struct thread_data **)td->eo = td;
1280 td->io_ops->flags |= FIO_RAWIO;
1282 td_set_ioengine_flags(td);
1286 log_err("fio: failed to load engine\n");
1291 static void init_flags(struct thread_data *td)
1293 struct thread_options *o = &td->o;
1296 if (o->verify_backlog)
1297 td->flags |= TD_F_VER_BACKLOG;
1298 if (o->trim_backlog)
1299 td->flags |= TD_F_TRIM_BACKLOG;
1300 if (o->read_iolog_file)
1301 td->flags |= TD_F_READ_IOLOG;
1302 if (o->refill_buffers)
1303 td->flags |= TD_F_REFILL_BUFFERS;
1305 * Always scramble buffers if asked to
1307 if (o->scramble_buffers && fio_option_is_set(o, scramble_buffers))
1308 td->flags |= TD_F_SCRAMBLE_BUFFERS;
1310 * But also scramble buffers, unless we were explicitly asked
1313 if (o->scramble_buffers && !(o->zero_buffers &&
1314 fio_option_is_set(o, zero_buffers)))
1315 td->flags |= TD_F_SCRAMBLE_BUFFERS;
1316 if (o->verify != VERIFY_NONE)
1317 td->flags |= TD_F_DO_VERIFY;
1319 if (o->verify_async || o->io_submit_mode == IO_MODE_OFFLOAD)
1320 td->flags |= TD_F_NEED_LOCK;
1322 if (o->mem_type == MEM_CUDA_MALLOC)
1323 td->flags &= ~TD_F_SCRAMBLE_BUFFERS;
1325 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1326 if (option_check_rate(td, i)) {
1327 td->flags |= TD_F_CHECK_RATE;
1341 static struct fpre_keyword {
1342 const char *keyword;
1345 } fpre_keywords[] = {
1346 { .keyword = "$jobname", .key = FPRE_JOBNAME, },
1347 { .keyword = "$jobnum", .key = FPRE_JOBNUM, },
1348 { .keyword = "$filenum", .key = FPRE_FILENUM, },
1349 { .keyword = "$clientuid", .key = FPRE_CLIENTUID, },
1350 { .keyword = NULL, },
1353 static char *make_filename(char *buf, size_t buf_size,struct thread_options *o,
1354 const char *jobname, int jobnum, int filenum)
1356 struct fpre_keyword *f;
1357 char copy[PATH_MAX];
1358 size_t dst_left = PATH_MAX - 1;
1360 if (!o->filename_format || !strlen(o->filename_format)) {
1361 sprintf(buf, "%s.%d.%d", jobname, jobnum, filenum);
1365 for (f = &fpre_keywords[0]; f->keyword; f++)
1366 f->strlen = strlen(f->keyword);
1368 snprintf(buf, buf_size, "%s", o->filename_format);
1370 memset(copy, 0, sizeof(copy));
1371 for (f = &fpre_keywords[0]; f->keyword; f++) {
1373 size_t pre_len, post_start = 0;
1374 char *str, *dst = copy;
1376 str = strcasestr(buf, f->keyword);
1380 pre_len = str - buf;
1381 if (strlen(str) != f->strlen)
1382 post_start = pre_len + f->strlen;
1385 strncpy(dst, buf, pre_len);
1387 dst_left -= pre_len;
1391 case FPRE_JOBNAME: {
1394 ret = snprintf(dst, dst_left, "%s", jobname);
1397 else if (ret > dst_left) {
1398 log_err("fio: truncated filename\n");
1410 ret = snprintf(dst, dst_left, "%d", jobnum);
1413 else if (ret > dst_left) {
1414 log_err("fio: truncated filename\n");
1423 case FPRE_FILENUM: {
1426 ret = snprintf(dst, dst_left, "%d", filenum);
1429 else if (ret > dst_left) {
1430 log_err("fio: truncated filename\n");
1439 case FPRE_CLIENTUID: {
1441 ret = snprintf(dst, dst_left, "%s", client_sockaddr_str);
1444 else if (ret > dst_left) {
1445 log_err("fio: truncated filename\n");
1460 strncpy(dst, buf + post_start, dst_left);
1462 snprintf(buf, buf_size, "%s", copy);
1469 bool parse_dryrun(void)
1471 return dump_cmdline || parse_only;
1474 static void gen_log_name(char *name, size_t size, const char *logtype,
1475 const char *logname, unsigned int num,
1476 const char *suf, int per_job)
1479 snprintf(name, size, "%s_%s.%d.%s", logname, logtype, num, suf);
1481 snprintf(name, size, "%s_%s.%s", logname, logtype, suf);
1484 static int check_waitees(char *waitee)
1489 if (td->subjob_number)
1492 ret += !strcmp(td->o.name, waitee);
1498 static bool wait_for_ok(const char *jobname, struct thread_options *o)
1505 if (!strcmp(jobname, o->wait_for)) {
1506 log_err("%s: a job cannot wait for itself (wait_for=%s).\n",
1507 jobname, o->wait_for);
1511 if (!(nw = check_waitees(o->wait_for))) {
1512 log_err("%s: waitee job %s unknown.\n", jobname, o->wait_for);
1517 log_err("%s: multiple waitees %s found,\n"
1518 "please avoid duplicates when using wait_for option.\n",
1519 jobname, o->wait_for);
1526 static int verify_per_group_options(struct thread_data *td, const char *jobname)
1529 if (td->groupid != td2->groupid)
1533 td->o.lat_percentiles != td2->o.lat_percentiles) {
1534 log_err("fio: lat_percentiles in job: %s differs from group\n",
1544 * Treat an empty log file name the same as a one not given
1546 static const char *make_log_name(const char *logname, const char *jobname)
1548 if (logname && strcmp(logname, ""))
1555 * Adds a job to the list of things todo. Sanitizes the various options
1556 * to make sure we don't have conflicts, and initializes various
1559 static int add_job(struct thread_data *td, const char *jobname, int job_add_num,
1560 int recursed, int client_type)
1563 char fname[PATH_MAX + 1];
1564 int numjobs, file_alloced;
1565 struct thread_options *o = &td->o;
1566 char logname[PATH_MAX + 32];
1569 * the def_thread is just for options, it's not a real job
1571 if (td == &def_thread)
1577 * if we are just dumping the output command line, don't add the job
1579 if (parse_dryrun()) {
1584 td->client_type = client_type;
1586 if (profile_td_init(td))
1589 if (ioengine_load(td))
1593 if (!o->filename && !td->files_index && !o->read_iolog_file) {
1596 if (o->nr_files == 1 && exists_and_not_regfile(jobname))
1597 add_file(td, jobname, job_add_num, 0);
1599 for (i = 0; i < o->nr_files; i++)
1600 add_file(td, make_filename(fname, sizeof(fname), o, jobname, job_add_num, i), job_add_num, 0);
1604 if (setup_random_seeds(td)) {
1605 td_verror(td, errno, "setup_random_seeds");
1609 if (fixup_options(td))
1612 if (!td->o.dedupe_global && init_dedupe_working_set_seeds(td, 0))
1616 * Belongs to fixup_options, but o->name is not necessarily set as yet
1618 if (!wait_for_ok(jobname, o))
1624 * IO engines only need this for option callbacks, and the address may
1625 * change in subprocesses.
1628 *(struct thread_data **)td->eo = NULL;
1630 if (td_ioengine_flagged(td, FIO_DISKLESSIO)) {
1633 for_each_file(td, f, i)
1634 f->real_file_size = -1ULL;
1637 td->sem = fio_sem_init(FIO_SEM_LOCKED);
1639 td->ts.clat_percentiles = o->clat_percentiles;
1640 td->ts.lat_percentiles = o->lat_percentiles;
1641 td->ts.slat_percentiles = o->slat_percentiles;
1642 td->ts.percentile_precision = o->percentile_precision;
1643 memcpy(td->ts.percentile_list, o->percentile_list, sizeof(o->percentile_list));
1644 td->ts.sig_figs = o->sig_figs;
1646 init_thread_stat_min_vals(&td->ts);
1649 * td->>ddir_seq_nr needs to be initialized to 1, NOT o->ddir_seq_nr,
1650 * so that get_next_offset gets a new random offset the first time it
1651 * is called, instead of keeping an initial offset of 0 for the first
1654 td->ddir_seq_nr = 1;
1656 if ((o->stonewall || o->new_group) && prev_group_jobs) {
1657 prev_group_jobs = 0;
1659 if (groupid == INT_MAX) {
1660 log_err("fio: too many groups defined\n");
1665 td->groupid = groupid;
1668 if (td->o.group_reporting && prev_group_jobs > 1 &&
1669 verify_per_group_options(td, jobname))
1675 if (o->write_lat_log) {
1676 struct log_params p = {
1678 .avg_msec = o->log_avg_msec,
1679 .hist_msec = o->log_hist_msec,
1680 .hist_coarseness = o->log_hist_coarseness,
1681 .log_type = IO_LOG_TYPE_LAT,
1682 .log_offset = o->log_offset,
1683 .log_prio = o->log_prio,
1684 .log_issue_time = o->log_issue_time,
1685 .log_gz = o->log_gz,
1686 .log_gz_store = o->log_gz_store,
1688 const char *pre = make_log_name(o->lat_log_file, o->name);
1691 if (o->log_issue_time && !o->log_offset) {
1692 log_err("fio: log_issue_time option requires write_lat_log and log_offset options\n");
1701 if (!o->disable_lat) {
1702 gen_log_name(logname, sizeof(logname), "lat", pre,
1703 td->thread_number, suf, o->per_job_logs);
1704 setup_log(&td->lat_log, &p, logname);
1707 if (!o->disable_slat) {
1708 gen_log_name(logname, sizeof(logname), "slat", pre,
1709 td->thread_number, suf, o->per_job_logs);
1710 setup_log(&td->slat_log, &p, logname);
1713 if (!o->disable_clat) {
1714 gen_log_name(logname, sizeof(logname), "clat", pre,
1715 td->thread_number, suf, o->per_job_logs);
1716 setup_log(&td->clat_log, &p, logname);
1719 } else if (o->log_issue_time) {
1720 log_err("fio: log_issue_time option requires write_lat_log and log_offset options\n");
1724 if (o->write_hist_log) {
1725 struct log_params p = {
1727 .avg_msec = o->log_avg_msec,
1728 .hist_msec = o->log_hist_msec,
1729 .hist_coarseness = o->log_hist_coarseness,
1730 .log_type = IO_LOG_TYPE_HIST,
1731 .log_offset = o->log_offset,
1732 .log_prio = o->log_prio,
1733 .log_issue_time = o->log_issue_time,
1734 .log_gz = o->log_gz,
1735 .log_gz_store = o->log_gz_store,
1737 const char *pre = make_log_name(o->hist_log_file, o->name);
1741 if (td->client_type) {
1742 log_err("fio: --write_hist_log requires zlib in client/server mode\n");
1752 gen_log_name(logname, sizeof(logname), "clat_hist", pre,
1753 td->thread_number, suf, o->per_job_logs);
1754 setup_log(&td->clat_hist_log, &p, logname);
1757 if (o->write_bw_log) {
1758 struct log_params p = {
1760 .avg_msec = o->log_avg_msec,
1761 .hist_msec = o->log_hist_msec,
1762 .hist_coarseness = o->log_hist_coarseness,
1763 .log_type = IO_LOG_TYPE_BW,
1764 .log_offset = o->log_offset,
1765 .log_prio = o->log_prio,
1766 .log_issue_time = o->log_issue_time,
1767 .log_gz = o->log_gz,
1768 .log_gz_store = o->log_gz_store,
1770 const char *pre = make_log_name(o->bw_log_file, o->name);
1773 if (fio_option_is_set(o, bw_avg_time))
1774 p.avg_msec = min(o->log_avg_msec, o->bw_avg_time);
1776 o->bw_avg_time = p.avg_msec;
1778 p.hist_msec = o->log_hist_msec;
1779 p.hist_coarseness = o->log_hist_coarseness;
1786 gen_log_name(logname, sizeof(logname), "bw", pre,
1787 td->thread_number, suf, o->per_job_logs);
1788 setup_log(&td->bw_log, &p, logname);
1790 if (o->write_iops_log) {
1791 struct log_params p = {
1793 .avg_msec = o->log_avg_msec,
1794 .hist_msec = o->log_hist_msec,
1795 .hist_coarseness = o->log_hist_coarseness,
1796 .log_type = IO_LOG_TYPE_IOPS,
1797 .log_offset = o->log_offset,
1798 .log_prio = o->log_prio,
1799 .log_issue_time = o->log_issue_time,
1800 .log_gz = o->log_gz,
1801 .log_gz_store = o->log_gz_store,
1803 const char *pre = make_log_name(o->iops_log_file, o->name);
1806 if (fio_option_is_set(o, iops_avg_time))
1807 p.avg_msec = min(o->log_avg_msec, o->iops_avg_time);
1809 o->iops_avg_time = p.avg_msec;
1811 p.hist_msec = o->log_hist_msec;
1812 p.hist_coarseness = o->log_hist_coarseness;
1819 gen_log_name(logname, sizeof(logname), "iops", pre,
1820 td->thread_number, suf, o->per_job_logs);
1821 setup_log(&td->iops_log, &p, logname);
1825 o->name = strdup(jobname);
1827 if (output_format & FIO_OUTPUT_NORMAL) {
1829 if (is_backend && !recursed)
1830 fio_server_send_add_job(td);
1832 if (!td_ioengine_flagged(td, FIO_NOIO)) {
1833 char *c1, *c2, *c3, *c4;
1834 char *c5 = NULL, *c6 = NULL;
1835 int i2p = is_power_of_2(o->kb_base);
1836 struct buf_output out;
1838 c1 = num2str(o->min_bs[DDIR_READ], o->sig_figs, 1, i2p, N2S_BYTE);
1839 c2 = num2str(o->max_bs[DDIR_READ], o->sig_figs, 1, i2p, N2S_BYTE);
1840 c3 = num2str(o->min_bs[DDIR_WRITE], o->sig_figs, 1, i2p, N2S_BYTE);
1841 c4 = num2str(o->max_bs[DDIR_WRITE], o->sig_figs, 1, i2p, N2S_BYTE);
1843 if (!o->bs_is_seq_rand) {
1844 c5 = num2str(o->min_bs[DDIR_TRIM], o->sig_figs, 1, i2p, N2S_BYTE);
1845 c6 = num2str(o->max_bs[DDIR_TRIM], o->sig_figs, 1, i2p, N2S_BYTE);
1848 buf_output_init(&out);
1849 __log_buf(&out, "%s: (g=%d): rw=%s, ", td->o.name,
1851 ddir_str(o->td_ddir));
1853 if (o->bs_is_seq_rand)
1854 __log_buf(&out, "bs=(R) %s-%s, (W) %s-%s, bs_is_seq_rand, ",
1857 __log_buf(&out, "bs=(R) %s-%s, (W) %s-%s, (T) %s-%s, ",
1858 c1, c2, c3, c4, c5, c6);
1860 __log_buf(&out, "ioengine=%s, iodepth=%u\n",
1861 td->io_ops->name, o->iodepth);
1862 log_info_buf(out.buf, out.buflen);
1863 buf_output_free(&out);
1872 } else if (job_add_num == 1)
1876 if (td_steadystate_init(td))
1879 if (o->merge_blktrace_file && !merge_blktrace_iologs(td))
1882 if (merge_blktrace_only) {
1888 * recurse add identical jobs, clear numjobs and stonewall options
1889 * as they don't apply to sub-jobs
1891 numjobs = o->numjobs;
1893 struct thread_data *td_new = get_new_job(false, td, true, jobname);
1898 td_new->o.numjobs = 1;
1899 td_new->o.stonewall = 0;
1900 td_new->o.new_group = 0;
1901 td_new->subjob_number = numjobs;
1902 td_new->o.ss_dur = o->ss_dur * 1000000l;
1903 td_new->o.ss_limit = o->ss_limit;
1906 if (td_new->files) {
1908 for_each_file(td_new, f, i)
1910 free(td_new->files);
1911 td_new->files = NULL;
1913 td_new->files_index = 0;
1914 td_new->files_size = 0;
1915 if (td_new->o.filename) {
1916 free(td_new->o.filename);
1917 td_new->o.filename = NULL;
1921 if (add_job(td_new, jobname, numjobs, 1, client_type))
1932 * Parse as if 'o' was a command line
1934 void add_job_opts(const char **o, int client_type)
1936 struct thread_data *td, *td_parent;
1937 int i, in_global = 1;
1941 td_parent = td = NULL;
1943 if (!strncmp(o[i], "name", 4)) {
1946 add_job(td, jobname, 0, 0, client_type);
1948 sprintf(jobname, "%s", o[i] + 5);
1950 if (in_global && !td_parent)
1951 td_parent = get_new_job(true, &def_thread, false, jobname);
1952 else if (!in_global && !td) {
1954 td_parent = &def_thread;
1955 td = get_new_job(false, td_parent, false, jobname);
1958 fio_options_parse(td_parent, (char **) &o[i], 1);
1960 fio_options_parse(td, (char **) &o[i], 1);
1965 add_job(td, jobname, 0, 0, client_type);
1968 static int skip_this_section(const char *name)
1972 if (!nr_job_sections)
1974 if (!strncmp(name, "global", 6))
1977 for (i = 0; i < nr_job_sections; i++)
1978 if (!strcmp(job_sections[i], name))
1984 static int is_empty_or_comment(char *line)
1988 for (i = 0; i < strlen(line); i++) {
1993 if (!isspace((int) line[i]) && !iscntrl((int) line[i]))
2001 * This is our [ini] type file parser.
2003 static int __parse_jobs_ini(struct thread_data *td,
2004 char *file, int is_buf, int stonewall_flag, int type,
2005 int nested, char *name, char ***popts, int *aopts, int *nopts)
2007 bool global = false;
2008 bool stdin_occupied = false;
2012 int ret = 0, stonewall;
2015 int inside_skip = 0;
2017 int i, alloc_opts, num_opts;
2019 dprint(FD_PARSE, "Parsing ini file %s\n", file);
2020 assert(td || !nested);
2025 if (!strcmp(file, "-")) {
2027 stdin_occupied = true;
2029 f = fopen(file, "r");
2034 log_err("fio: unable to open '%s' job file\n", file);
2036 td_verror(td, __err, "job file open");
2041 string = malloc(OPT_LEN_MAX);
2044 * it's really 256 + small bit, 280 should suffice
2047 name = calloc(1, 280);
2051 if (nested && popts) {
2053 alloc_opts = *aopts;
2059 opts = malloc(sizeof(char *) * alloc_opts);
2063 stonewall = stonewall_flag;
2066 * if skip_fgets is set, we already have loaded a line we
2071 p = strsep(&file, "\n");
2073 p = fgets(string, OPT_LEN_MAX, f);
2079 strip_blank_front(&p);
2082 dprint(FD_PARSE, "%s\n", p);
2083 if (is_empty_or_comment(p))
2087 if (sscanf(p, "[%255[^\n]]", name) != 1) {
2091 log_err("fio: option <%s> outside of "
2092 "[] job section\n", p);
2097 name[strlen(name) - 1] = '\0';
2099 if (skip_this_section(name)) {
2105 dprint(FD_PARSE, "Parsing section [%s]\n", name);
2107 global = !strncmp(name, "global", 6);
2113 log_info("--name=%s ", name);
2117 td = get_new_job(global, &def_thread, false, name);
2124 * Separate multiple job files by a stonewall
2126 if (!global && stonewall) {
2127 td->o.stonewall = stonewall;
2132 memset(opts, 0, alloc_opts * sizeof(char *));
2140 p = strsep(&file, "\n");
2142 p = fgets(string, OPT_LEN_MAX, f);
2145 dprint(FD_PARSE, "%s", p);
2150 if (is_empty_or_comment(p))
2153 strip_blank_front(&p);
2156 * new section, break out and make sure we don't
2157 * fgets() a new line at the top.
2161 log_err("No new sections in included files\n");
2172 if (!strncmp(p, "include", strlen("include"))) {
2173 char *filename = p + strlen("include") + 1,
2174 *ts, *full_fn = NULL;
2177 * Allow for the include filename
2178 * specification to be relative.
2180 if (access(filename, F_OK) &&
2181 (ts = strrchr(file, '/'))) {
2182 if (asprintf(&full_fn, "%.*s%s",
2183 (int)(ts - file + 1), file,
2191 ret = __parse_jobs_ini(td, filename, is_buf,
2192 stonewall_flag, type, 1,
2194 &alloc_opts, &num_opts);
2197 log_err("Error %d while parsing "
2198 "include file %s\n",
2211 if (num_opts == alloc_opts) {
2213 opts = realloc(opts,
2214 alloc_opts * sizeof(char *));
2217 opts[num_opts] = strdup(p);
2223 *aopts = alloc_opts;
2228 ret = fio_options_parse(td, opts, num_opts);
2230 if (!ret && td->o.read_iolog_file != NULL) {
2231 char *fname = get_name_by_idx(td->o.read_iolog_file,
2233 if (!strcmp(fname, "-")) {
2234 if (stdin_occupied) {
2235 log_err("fio: only one user (read_iolog_file/job "
2236 "file) of stdin is permitted at once but "
2237 "more than one was found.\n");
2240 stdin_occupied = true;
2247 ret = add_job(td, name, 0, 0, type);
2249 log_err("fio: job %s dropped\n", name);
2253 for (i = 0; i < num_opts; i++)
2262 while (i < nr_job_sections) {
2263 free(job_sections[i]);
2268 job_sections = NULL;
2269 nr_job_sections = 0;
2276 if (!is_buf && f != stdin)
2281 int parse_jobs_ini(char *file, int is_buf, int stonewall_flag, int type)
2283 return __parse_jobs_ini(NULL, file, is_buf, stonewall_flag, type,
2284 0, NULL, NULL, NULL, NULL);
2287 static int fill_def_thread(void)
2289 memset(&def_thread, 0, sizeof(def_thread));
2290 INIT_FLIST_HEAD(&def_thread.opt_list);
2292 fio_getaffinity(getpid(), &def_thread.o.cpumask);
2293 def_thread.o.error_dump = 1;
2296 * fill default options
2298 fio_fill_default_options(&def_thread);
2302 static void show_debug_categories(void)
2304 #ifdef FIO_INC_DEBUG
2305 const struct debug_level *dl = &debug_levels[0];
2306 int curlen, first = 1;
2310 int has_next = (dl + 1)->name != NULL;
2312 if (first || curlen + strlen(dl->name) >= 80) {
2317 curlen += printf("\t\t\t%s", dl->name);
2318 curlen += 3 * (8 - 1);
2320 curlen += printf(",");
2322 curlen += printf("%s", dl->name);
2324 curlen += printf(",");
2334 * Following options aren't printed by usage().
2335 * --append-terse - Equivalent to --output-format=terse, see f6a7df53.
2336 * --latency-log - Deprecated option.
2338 static void usage(const char *name)
2340 printf("%s\n", fio_version_string);
2341 printf("%s [options] [job options] <job file(s)>\n", name);
2342 printf(" --debug=options\tEnable debug logging. May be one/more of:\n");
2343 show_debug_categories();
2344 printf(" --parse-only\t\tParse options only, don't start any IO\n");
2345 printf(" --merge-blktrace-only\tMerge blktraces only, don't start any IO\n");
2346 printf(" --output\t\tWrite output to file\n");
2347 printf(" --bandwidth-log\tGenerate aggregate bandwidth logs\n");
2348 printf(" --minimal\t\tMinimal (terse) output\n");
2349 printf(" --output-format=type\tOutput format (terse,json,json+,normal)\n");
2350 printf(" --terse-version=type\tSet terse version output format"
2351 " (default 3, or 2 or 4 or 5)\n");
2352 printf(" --version\t\tPrint version info and exit\n");
2353 printf(" --help\t\tPrint this page\n");
2354 printf(" --cpuclock-test\tPerform test/validation of CPU clock\n");
2355 printf(" --crctest=[type]\tTest speed of checksum functions\n");
2356 printf(" --cmdhelp=cmd\t\tPrint command help, \"all\" for all of"
2358 printf(" --enghelp=engine\tPrint ioengine help, or list"
2359 " available ioengines\n");
2360 printf(" --enghelp=engine,cmd\tPrint help for an ioengine"
2362 printf(" --showcmd\t\tTurn a job file into command line options\n");
2363 printf(" --eta=when\t\tWhen ETA estimate should be printed\n");
2364 printf(" \t\tMay be \"always\", \"never\" or \"auto\"\n");
2365 printf(" --eta-newline=t\tForce a new line for every 't'");
2366 printf(" period passed\n");
2367 printf(" --status-interval=t\tForce full status dump every");
2368 printf(" 't' period passed\n");
2369 printf(" --readonly\t\tTurn on safety read-only checks, preventing"
2371 printf(" --section=name\tOnly run specified section in job file,"
2372 " multiple sections can be specified\n");
2373 printf(" --alloc-size=kb\tSet smalloc pool to this size in kb"
2375 printf(" --warnings-fatal\tFio parser warnings are fatal\n");
2376 printf(" --max-jobs=nr\t\tMaximum number of threads/processes to support\n");
2377 printf(" --server=args\t\tStart a backend fio server\n");
2378 printf(" --daemonize=pidfile\tBackground fio server, write pid to file\n");
2379 printf(" --client=hostname\tTalk to remote backend(s) fio server at hostname\n");
2380 printf(" --remote-config=file\tTell fio server to load this local job file\n");
2381 printf(" --idle-prof=option\tReport cpu idleness on a system or percpu basis\n"
2382 "\t\t\t(option=system,percpu) or run unit work\n"
2383 "\t\t\tcalibration only (option=calibrate)\n");
2385 printf(" --inflate-log=log\tInflate and output compressed log\n");
2387 printf(" --trigger-file=file\tExecute trigger cmd when file exists\n");
2388 printf(" --trigger-timeout=t\tExecute trigger at this time\n");
2389 printf(" --trigger=cmd\t\tSet this command as local trigger\n");
2390 printf(" --trigger-remote=cmd\tSet this command as remote trigger\n");
2391 printf(" --aux-path=path\tUse this path for fio state generated files\n");
2392 printf("\nFio was written by Jens Axboe <axboe@kernel.dk>\n");
2395 #ifdef FIO_INC_DEBUG
2396 const struct debug_level debug_levels[] = {
2397 { .name = "process",
2398 .help = "Process creation/exit logging",
2399 .shift = FD_PROCESS,
2402 .help = "File related action logging",
2406 .help = "IO and IO engine action logging (offsets, queue, completions, etc)",
2410 .help = "Memory allocation/freeing logging",
2413 { .name = "blktrace",
2414 .help = "blktrace action logging",
2415 .shift = FD_BLKTRACE,
2418 .help = "IO verification action logging",
2422 .help = "Random generation logging",
2426 .help = "Parser logging",
2429 { .name = "diskutil",
2430 .help = "Disk utility logging actions",
2431 .shift = FD_DISKUTIL,
2434 .help = "Logging related to creating/destroying jobs",
2438 .help = "Mutex logging",
2441 { .name = "profile",
2442 .help = "Logging related to profiles",
2443 .shift = FD_PROFILE,
2446 .help = "Logging related to time keeping functions",
2450 .help = "Network logging",
2454 .help = "Rate logging",
2457 { .name = "compress",
2458 .help = "Log compression logging",
2459 .shift = FD_COMPRESS,
2461 { .name = "steadystate",
2462 .help = "Steady state detection logging",
2463 .shift = FD_STEADYSTATE,
2465 { .name = "helperthread",
2466 .help = "Helper thread logging",
2467 .shift = FD_HELPERTHREAD,
2470 .help = "Zoned Block Device logging",
2476 static int set_debug(const char *string)
2478 const struct debug_level *dl;
2479 char *p = (char *) string;
2486 if (!strcmp(string, "?") || !strcmp(string, "help")) {
2487 log_info("fio: dumping debug options:");
2488 for (i = 0; debug_levels[i].name; i++) {
2489 dl = &debug_levels[i];
2490 log_info("%s,", dl->name);
2496 while ((opt = strsep(&p, ",")) != NULL) {
2499 if (!strncmp(opt, "all", 3)) {
2500 log_info("fio: set all debug options\n");
2505 for (i = 0; debug_levels[i].name; i++) {
2506 dl = &debug_levels[i];
2507 found = !strncmp(opt, dl->name, strlen(dl->name));
2511 if (dl->shift == FD_JOB) {
2512 opt = strchr(opt, ':');
2514 log_err("fio: missing job number\n");
2518 fio_debug_jobno = atoi(opt);
2519 log_info("fio: set debug jobno %d\n",
2522 log_info("fio: set debug option %s\n", opt);
2523 fio_debug |= (1UL << dl->shift);
2529 log_err("fio: debug mask %s not found\n", opt);
2534 static int set_debug(const char *string)
2536 log_err("fio: debug tracing not included in build\n");
2541 static void fio_options_fill_optstring(void)
2543 char *ostr = cmd_optstr;
2547 while (l_opts[i].name) {
2548 ostr[c++] = l_opts[i].val;
2549 if (l_opts[i].has_arg == required_argument)
2551 else if (l_opts[i].has_arg == optional_argument) {
2560 static int client_flag_set(char c)
2565 while (l_opts[i].name) {
2566 int val = l_opts[i].val;
2568 if (c == (val & 0xff))
2569 return (val & FIO_CLIENT_FLAG);
2577 static void parse_cmd_client(void *client, char *opt)
2579 fio_client_add_cmd_option(client, opt);
2582 static void show_closest_option(const char *name)
2584 int best_option, best_distance;
2587 while (*name == '-')
2591 best_distance = INT_MAX;
2593 while (l_opts[i].name) {
2594 distance = string_distance(name, l_opts[i].name);
2595 if (distance < best_distance) {
2596 best_distance = distance;
2602 if (best_option != -1 && string_distance_ok(name, best_distance))
2603 log_err("Did you mean %s?\n", l_opts[best_option].name);
2606 static int parse_output_format(const char *optarg)
2608 char *p, *orig, *opt;
2611 p = orig = strdup(optarg);
2615 while ((opt = strsep(&p, ",")) != NULL) {
2616 if (!strcmp(opt, "minimal") ||
2617 !strcmp(opt, "terse") ||
2618 !strcmp(opt, "csv"))
2619 output_format |= FIO_OUTPUT_TERSE;
2620 else if (!strcmp(opt, "json"))
2621 output_format |= FIO_OUTPUT_JSON;
2622 else if (!strcmp(opt, "json+"))
2623 output_format |= (FIO_OUTPUT_JSON | FIO_OUTPUT_JSON_PLUS);
2624 else if (!strcmp(opt, "normal"))
2625 output_format |= FIO_OUTPUT_NORMAL;
2627 log_err("fio: invalid output format %s\n", opt);
2637 int parse_cmd_line(int argc, char *argv[], int client_type)
2639 struct thread_data *td = NULL;
2640 int c, ini_idx = 0, lidx, ret = 0, do_exit = 0, exit_val = 0;
2641 char *ostr = cmd_optstr;
2642 char *pid_file = NULL;
2643 void *cur_client = NULL;
2644 bool backend = false;
2647 * Reset optind handling, since we may call this multiple times
2652 while ((c = getopt_long_only(argc, argv, ostr, l_opts, &lidx)) != -1) {
2653 if ((c & FIO_CLIENT_FLAG) || client_flag_set(c)) {
2654 parse_cmd_client(cur_client, argv[optind - 1]);
2655 c &= ~FIO_CLIENT_FLAG;
2660 smalloc_pool_size = atoi(optarg);
2661 smalloc_pool_size <<= 10;
2665 log_err("fio: --latency-log is deprecated. Use per-job latency log options.\n");
2670 write_bw_log = true;
2675 if (f_out && f_out != stdout)
2678 tmp = fopen(optarg, "w+");
2680 log_err("fio: output file open error: %s\n", strerror(errno));
2685 f_err = f_out = tmp;
2689 output_format = FIO_OUTPUT_TERSE;
2692 if (parse_output_format(optarg)) {
2693 log_err("fio: failed parsing output-format\n");
2700 output_format |= FIO_OUTPUT_TERSE;
2712 fio_show_option_help(optarg);
2719 exit_val = fio_show_ioengine_help(optarg);
2725 dump_cmdline = true;
2733 log_info("%s\n", fio_version_string);
2738 terse_version = atoi(optarg);
2739 if (!(terse_version >= 2 && terse_version <= 5)) {
2740 log_err("fio: bad terse version format\n");
2746 if (!strcmp("always", optarg))
2747 eta_print = FIO_ETA_ALWAYS;
2748 else if (!strcmp("never", optarg))
2749 eta_print = FIO_ETA_NEVER;
2754 if (check_str_time(optarg, &t, 1)) {
2755 log_err("fio: failed parsing eta time %s\n", optarg);
2760 eta_new_line = t / 1000;
2761 if (!eta_new_line) {
2762 log_err("fio: eta new line time too short\n");
2771 if (check_str_time(optarg, &t, 1)) {
2772 log_err("fio: failed parsing eta interval %s\n", optarg);
2777 eta_interval_msec = t / 1000;
2778 if (eta_interval_msec < DISK_UTIL_MSEC) {
2779 log_err("fio: eta interval time too short (%umsec min)\n", DISK_UTIL_MSEC);
2786 if (set_debug(optarg))
2796 if (!strcmp(optarg, "global")) {
2797 log_err("fio: can't use global as only "
2803 new_size = (nr_job_sections + 1) * sizeof(char *);
2804 job_sections = realloc(job_sections, new_size);
2805 job_sections[nr_job_sections] = strdup(optarg);
2811 exit_val = iolog_file_inflate(optarg);
2820 exec_profile = strdup(optarg);
2822 case FIO_GETOPT_JOB: {
2823 const char *opt = l_opts[lidx].name;
2826 if (!strncmp(opt, "name", 4) && td) {
2827 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
2834 int is_section = !strncmp(opt, "name", 4);
2837 if (!is_section || !strncmp(val, "global", 6))
2840 if (is_section && skip_this_section(val))
2843 td = get_new_job(global, &def_thread, true, NULL);
2844 if (!td || ioengine_load(td)) {
2853 fio_options_set_ioengine_opts(l_opts, td);
2856 if ((!val || !strlen(val)) &&
2857 l_opts[lidx].has_arg == required_argument) {
2858 log_err("fio: option %s requires an argument\n", opt);
2861 ret = fio_cmd_option_parse(td, opt, val);
2872 if (!ret && !strcmp(opt, "ioengine")) {
2873 if (ioengine_load(td)) {
2880 fio_options_set_ioengine_opts(l_opts, td);
2884 case FIO_GETOPT_IOENGINE: {
2885 const char *opt = l_opts[lidx].name;
2891 ret = fio_cmd_ioengine_option_parse(td, opt, val);
2907 /* we don't track/need this anymore, ignore it */
2911 #ifndef CONFIG_NO_SHM
2913 log_err("fio: can't be both client and server\n");
2919 fio_server_set_arg(optarg);
2923 log_err("fio: client/server requires SHM support\n");
2931 fio_server_internal_set(optarg);
2937 pid_file = strdup(optarg);
2940 if ((ret = fio_idle_prof_parse_opt(optarg))) {
2941 /* exit on error and calibration only */
2951 log_err("fio: can't be both client and server\n");
2956 /* if --client parameter contains a pathname */
2957 if (0 == access(optarg, R_OK)) {
2958 /* file contains a list of host addrs or names */
2959 char hostaddr[PATH_MAX] = {0};
2961 FILE * hostf = fopen(optarg, "r");
2963 log_err("fio: could not open client list file %s for read\n", optarg);
2968 sprintf(formatstr, "%%%ds", PATH_MAX - 1);
2970 * read at most PATH_MAX-1 chars from each
2971 * record in this file
2973 while (fscanf(hostf, formatstr, hostaddr) == 1) {
2974 /* expect EVERY host in file to be valid */
2975 if (fio_client_add(&fio_client_ops, hostaddr, &cur_client)) {
2976 log_err("fio: failed adding client %s from file %s\n", hostaddr, optarg);
2983 break; /* no possibility of job file for "this client only" */
2985 if (fio_client_add(&fio_client_ops, optarg, &cur_client)) {
2986 log_err("fio: failed adding client %s\n", optarg);
2992 * If the next argument exists and isn't an option,
2993 * assume it's a job file for this client only.
2995 while (optind < argc) {
2996 if (!strncmp(argv[optind], "--", 2) ||
2997 !strncmp(argv[optind], "-", 1))
3000 if (fio_client_add_ini_file(cur_client, argv[optind], false))
3007 if (fio_client_add_ini_file(cur_client, optarg, true)) {
3015 exit_val = fio_monotonic_clocktest(1);
3020 exit_val = fio_crctest(optarg);
3025 exit_val = fio_memcpy_test(optarg);
3030 if (check_str_time(optarg, &val, 1)) {
3031 log_err("fio: failed parsing time %s\n", optarg);
3037 log_err("fio: status interval too small\n");
3041 status_interval = val / 1000;
3047 trigger_file = strdup(optarg);
3052 trigger_cmd = strdup(optarg);
3055 if (trigger_remote_cmd)
3056 free(trigger_remote_cmd);
3057 trigger_remote_cmd = strdup(optarg);
3062 aux_path = strdup(optarg);
3065 if (check_str_time(optarg, &trigger_timeout, 1)) {
3066 log_err("fio: failed parsing time %s\n", optarg);
3070 trigger_timeout /= 1000000;
3075 merge_blktrace_only = true;
3078 log_err("%s: unrecognized option '%s'\n", argv[0],
3080 show_closest_option(argv[optind - 1]);
3091 if (do_exit && !(is_backend || nr_clients))
3094 if (nr_clients && fio_clients_connect())
3097 if (is_backend && backend)
3098 return fio_start_server(pid_file);
3104 ret = add_job(td, td->o.name ?: "fio", 0, 0, client_type);
3110 while (!ret && optind < argc) {
3112 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
3113 ini_file[ini_idx - 1] = strdup(argv[optind]);
3121 int fio_init_options(void)
3126 fio_options_fill_optstring();
3127 fio_options_dup_and_init(l_opts);
3131 if (fill_def_thread())
3137 extern int fio_check_options(struct thread_options *);
3139 int parse_options(int argc, char *argv[])
3141 const int type = FIO_CLIENT_TYPE_CLI;
3144 if (fio_init_options())
3146 if (fio_test_cconv(&def_thread.o))
3147 log_err("fio: failed internal cconv test\n");
3149 job_files = parse_cmd_line(argc, argv, type);
3151 if (job_files > 0) {
3152 for (i = 0; i < job_files; i++) {
3153 if (i && fill_def_thread())
3156 if (fio_clients_send_ini(ini_file[i]))
3159 } else if (!is_backend) {
3160 if (parse_jobs_ini(ini_file[i], 0, i, type))
3165 } else if (nr_clients) {
3166 if (fill_def_thread())
3168 if (fio_clients_send_ini(NULL))
3173 fio_options_free(&def_thread);
3174 filesetup_mem_free();
3176 if (!thread_number) {
3181 if (is_backend || nr_clients)
3186 log_err("No job(s) defined\n\n");
3191 if (output_format & FIO_OUTPUT_NORMAL)
3192 log_info("%s\n", fio_version_string);
3197 void options_default_fill(struct thread_options *o)
3199 memcpy(o, &def_thread.o, sizeof(*o));
3202 struct thread_data *get_global_options(void)