Add fill_device option
[fio.git] / init.c
... / ...
CommitLineData
1/*
2 * This file contains job initialization and setup functions.
3 */
4#include <stdio.h>
5#include <stdlib.h>
6#include <unistd.h>
7#include <fcntl.h>
8#include <ctype.h>
9#include <string.h>
10#include <errno.h>
11#include <getopt.h>
12#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
18#include "parse.h"
19
20static char fio_version_string[] = "fio 1.17.2";
21
22#define FIO_RANDSEED (0xb1899bedUL)
23
24static char **ini_file;
25static int max_jobs = MAX_JOBS;
26static int dump_cmdline;
27
28struct thread_data def_thread;
29struct thread_data *threads = NULL;
30
31int exitall_on_terminate = 0;
32int terse_output = 0;
33int eta_print;
34unsigned long long mlock_size = 0;
35FILE *f_out = NULL;
36FILE *f_err = NULL;
37
38int write_bw_log = 0;
39int read_only = 0;
40
41static int def_timeout = 0;
42static int write_lat_log = 0;
43
44static int prev_group_jobs;
45
46/*
47 * Command line options. These will contain the above, plus a few
48 * extra that only pertain to fio itself and not jobs.
49 */
50static struct option long_options[FIO_NR_OPTIONS] = {
51 {
52 .name = "output",
53 .has_arg = required_argument,
54 .val = 'o',
55 },
56 {
57 .name = "timeout",
58 .has_arg = required_argument,
59 .val = 't',
60 },
61 {
62 .name = "latency-log",
63 .has_arg = required_argument,
64 .val = 'l',
65 },
66 {
67 .name = "bandwidth-log",
68 .has_arg = required_argument,
69 .val = 'b',
70 },
71 {
72 .name = "minimal",
73 .has_arg = optional_argument,
74 .val = 'm',
75 },
76 {
77 .name = "version",
78 .has_arg = no_argument,
79 .val = 'v',
80 },
81 {
82 .name = "help",
83 .has_arg = no_argument,
84 .val = 'h',
85 },
86 {
87 .name = "cmdhelp",
88 .has_arg = optional_argument,
89 .val = 'c',
90 },
91 {
92 .name = "showcmd",
93 .has_arg = no_argument,
94 .val = 's',
95 },
96 {
97 .name = "readonly",
98 .has_arg = no_argument,
99 .val = 'r',
100 },
101 {
102 .name = "eta",
103 .has_arg = required_argument,
104 .val = 'e',
105 },
106 {
107 .name = NULL,
108 },
109};
110
111FILE *get_f_out()
112{
113 return f_out;
114}
115
116FILE *get_f_err()
117{
118 return f_err;
119}
120
121/*
122 * Return a free job structure.
123 */
124static struct thread_data *get_new_job(int global, struct thread_data *parent)
125{
126 struct thread_data *td;
127
128 if (global)
129 return &def_thread;
130 if (thread_number >= max_jobs)
131 return NULL;
132
133 td = &threads[thread_number++];
134 *td = *parent;
135
136 dup_files(td, parent);
137 options_mem_dupe(td);
138
139 td->thread_number = thread_number;
140 return td;
141}
142
143static void put_job(struct thread_data *td)
144{
145 if (td == &def_thread)
146 return;
147
148 if (td->error)
149 log_info("fio: %s\n", td->verror);
150
151 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
152 thread_number--;
153}
154
155static int setup_rate(struct thread_data *td)
156{
157 unsigned long nr_reads_per_msec;
158 unsigned long long rate;
159 unsigned int bs;
160
161 if (!td->o.rate && !td->o.rate_iops)
162 return 0;
163
164 if (td_rw(td))
165 bs = td->o.rw_min_bs;
166 else if (td_read(td))
167 bs = td->o.min_bs[DDIR_READ];
168 else
169 bs = td->o.min_bs[DDIR_WRITE];
170
171 if (td->o.rate) {
172 rate = td->o.rate;
173 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
174 } else
175 nr_reads_per_msec = td->o.rate_iops * 1000UL;
176
177 if (!nr_reads_per_msec) {
178 log_err("rate lower than supported\n");
179 return -1;
180 }
181
182 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
183 td->rate_pending_usleep = 0;
184 return 0;
185}
186
187/*
188 * Lazy way of fixing up options that depend on each other. We could also
189 * define option callback handlers, but this is easier.
190 */
191static int fixup_options(struct thread_data *td)
192{
193 struct thread_options *o = &td->o;
194
195 if (read_only && td_write(td)) {
196 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
197 return 1;
198 }
199
200 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
201 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
202
203 if (o->write_iolog_file && o->read_iolog_file) {
204 log_err("fio: read iolog overrides write_iolog\n");
205 free(o->write_iolog_file);
206 o->write_iolog_file = NULL;
207 }
208
209 if (td->io_ops->flags & FIO_SYNCIO)
210 o->iodepth = 1;
211 else {
212 if (!o->iodepth)
213 o->iodepth = o->open_files;
214 }
215
216 /*
217 * only really works for sequential io for now, and with 1 file
218 */
219 if (o->zone_size && td_random(td) && o->open_files == 1)
220 o->zone_size = 0;
221
222 /*
223 * Reads can do overwrites, we always need to pre-create the file
224 */
225 if (td_read(td) || td_rw(td))
226 o->overwrite = 1;
227
228 if (!o->min_bs[DDIR_READ])
229 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
230 if (!o->max_bs[DDIR_READ])
231 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
232 if (!o->min_bs[DDIR_WRITE])
233 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
234 if (!o->max_bs[DDIR_WRITE])
235 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
236
237 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
238
239 if (!o->file_size_high)
240 o->file_size_high = o->file_size_low;
241
242 if (o->norandommap && o->verify != VERIFY_NONE) {
243 log_err("fio: norandommap given, verify disabled\n");
244 o->verify = VERIFY_NONE;
245 }
246 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
247 log_err("fio: bs_unaligned may not work with raw io\n");
248
249 /*
250 * thinktime_spin must be less than thinktime
251 */
252 if (o->thinktime_spin > o->thinktime)
253 o->thinktime_spin = o->thinktime;
254
255 /*
256 * The low water mark cannot be bigger than the iodepth
257 */
258 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
259 /*
260 * syslet work around - if the workload is sequential,
261 * we want to let the queue drain all the way down to
262 * avoid seeking between async threads
263 */
264 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
265 o->iodepth_low = 1;
266 else
267 o->iodepth_low = o->iodepth;
268 }
269
270 /*
271 * If batch number isn't set, default to the same as iodepth
272 */
273 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
274 o->iodepth_batch = o->iodepth;
275
276 if (o->nr_files > td->files_index)
277 o->nr_files = td->files_index;
278
279 if (o->open_files > o->nr_files || !o->open_files)
280 o->open_files = o->nr_files;
281
282 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
283 log_err("fio: rate and rate_iops are mutually exclusive\n");
284 return 1;
285 }
286 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
287 log_err("fio: minimum rate exceeds rate\n");
288 return 1;
289 }
290
291 if (!o->timeout && o->time_based) {
292 log_err("fio: time_based requires a runtime/timeout setting\n");
293 o->time_based = 0;
294 }
295
296 if (o->fill_device && !o->size)
297 o->size = ULONG_LONG_MAX;
298
299 return 0;
300}
301
302/*
303 * This function leaks the buffer
304 */
305static char *to_kmg(unsigned int val)
306{
307 char *buf = malloc(32);
308 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
309 char *p = post;
310
311 do {
312 if (val & 1023)
313 break;
314
315 val >>= 10;
316 p++;
317 } while (*p);
318
319 snprintf(buf, 31, "%u%c", val, *p);
320 return buf;
321}
322
323/* External engines are specified by "external:name.o") */
324static const char *get_engine_name(const char *str)
325{
326 char *p = strstr(str, ":");
327
328 if (!p)
329 return str;
330
331 p++;
332 strip_blank_front(&p);
333 strip_blank_end(p);
334 return p;
335}
336
337static int exists_and_not_file(const char *filename)
338{
339 struct stat sb;
340
341 if (lstat(filename, &sb) == -1)
342 return 0;
343
344 if (S_ISREG(sb.st_mode))
345 return 0;
346
347 return 1;
348}
349
350/*
351 * Initialize the various random states we need (random io, block size ranges,
352 * read/write mix, etc).
353 */
354static int init_random_state(struct thread_data *td)
355{
356 unsigned long seeds[6];
357 int fd;
358
359 fd = open("/dev/urandom", O_RDONLY);
360 if (fd == -1) {
361 td_verror(td, errno, "open");
362 return 1;
363 }
364
365 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
366 td_verror(td, EIO, "read");
367 close(fd);
368 return 1;
369 }
370
371 close(fd);
372
373 os_random_seed(seeds[0], &td->bsrange_state);
374 os_random_seed(seeds[1], &td->verify_state);
375 os_random_seed(seeds[2], &td->rwmix_state);
376
377 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
378 os_random_seed(seeds[3], &td->next_file_state);
379
380 os_random_seed(seeds[5], &td->file_size_state);
381
382 if (!td_random(td))
383 return 0;
384
385 if (td->o.rand_repeatable)
386 seeds[4] = FIO_RANDSEED * td->thread_number;
387
388 os_random_seed(seeds[4], &td->random_state);
389 return 0;
390}
391
392/*
393 * Adds a job to the list of things todo. Sanitizes the various options
394 * to make sure we don't have conflicts, and initializes various
395 * members of td.
396 */
397static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
398{
399 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
400 "randread", "randwrite", "randrw" };
401 unsigned int i;
402 const char *engine;
403 char fname[PATH_MAX];
404 int numjobs, file_alloced;
405
406 /*
407 * the def_thread is just for options, it's not a real job
408 */
409 if (td == &def_thread)
410 return 0;
411
412 /*
413 * if we are just dumping the output command line, don't add the job
414 */
415 if (dump_cmdline) {
416 put_job(td);
417 return 0;
418 }
419
420 engine = get_engine_name(td->o.ioengine);
421 td->io_ops = load_ioengine(td, engine);
422 if (!td->io_ops) {
423 log_err("fio: failed to load engine %s\n", engine);
424 goto err;
425 }
426
427 if (td->o.use_thread)
428 nr_thread++;
429 else
430 nr_process++;
431
432 if (td->o.odirect)
433 td->io_ops->flags |= FIO_RAWIO;
434
435 file_alloced = 0;
436 if (!td->o.filename && !td->files_index) {
437 file_alloced = 1;
438
439 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
440 add_file(td, jobname);
441 else {
442 for (i = 0; i < td->o.nr_files; i++) {
443 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
444 add_file(td, fname);
445 }
446 }
447 }
448
449 if (fixup_options(td))
450 goto err;
451
452 if (td->io_ops->flags & FIO_DISKLESSIO) {
453 struct fio_file *f;
454
455 for_each_file(td, f, i)
456 f->real_file_size = -1ULL;
457 }
458
459 td->mutex = fio_sem_init(0);
460
461 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
462 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
463 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
464 td->ddir_nr = td->o.ddir_nr;
465
466 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
467 && prev_group_jobs) {
468 prev_group_jobs = 0;
469 groupid++;
470 }
471
472 td->groupid = groupid;
473 prev_group_jobs++;
474
475 if (init_random_state(td))
476 goto err;
477
478 if (setup_rate(td))
479 goto err;
480
481 if (td->o.write_lat_log) {
482 setup_log(&td->ts.slat_log);
483 setup_log(&td->ts.clat_log);
484 }
485 if (td->o.write_bw_log)
486 setup_log(&td->ts.bw_log);
487
488 if (!td->o.name)
489 td->o.name = strdup(jobname);
490
491 if (!terse_output) {
492 if (!job_add_num) {
493 if (!strcmp(td->io_ops->name, "cpuio"))
494 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
495 else {
496 char *c1, *c2, *c3, *c4;
497
498 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
499 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
500 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
501 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
502
503 log_info("%s: (g=%d): rw=%s, bs=%s-%s/%s-%s, ioengine=%s, iodepth=%u\n", td->o.name, td->groupid, ddir_str[td->o.td_ddir], c1, c2, c3, c4, td->io_ops->name, td->o.iodepth);
504
505 free(c1);
506 free(c2);
507 free(c3);
508 free(c4);
509 }
510 } else if (job_add_num == 1)
511 log_info("...\n");
512 }
513
514 /*
515 * recurse add identical jobs, clear numjobs and stonewall options
516 * as they don't apply to sub-jobs
517 */
518 numjobs = td->o.numjobs;
519 while (--numjobs) {
520 struct thread_data *td_new = get_new_job(0, td);
521
522 if (!td_new)
523 goto err;
524
525 td_new->o.numjobs = 1;
526 td_new->o.stonewall = 0;
527 td_new->o.new_group = 0;
528
529 if (file_alloced) {
530 td_new->o.filename = NULL;
531 td_new->files_index = 0;
532 td_new->files = NULL;
533 }
534
535 job_add_num = numjobs - 1;
536
537 if (add_job(td_new, jobname, job_add_num))
538 goto err;
539 }
540
541 return 0;
542err:
543 put_job(td);
544 return -1;
545}
546
547static int is_empty_or_comment(char *line)
548{
549 unsigned int i;
550
551 for (i = 0; i < strlen(line); i++) {
552 if (line[i] == ';')
553 return 1;
554 if (line[i] == '#')
555 return 1;
556 if (!isspace(line[i]) && !iscntrl(line[i]))
557 return 0;
558 }
559
560 return 1;
561}
562
563/*
564 * This is our [ini] type file parser.
565 */
566static int parse_jobs_ini(char *file, int stonewall_flag)
567{
568 unsigned int global;
569 struct thread_data *td;
570 char *string, *name;
571 FILE *f;
572 char *p;
573 int ret = 0, stonewall;
574 int first_sect = 1;
575 int skip_fgets = 0;
576
577 if (!strcmp(file, "-"))
578 f = stdin;
579 else
580 f = fopen(file, "r");
581
582 if (!f) {
583 perror("fopen job file");
584 return 1;
585 }
586
587 string = malloc(4096);
588
589 /*
590 * it's really 256 + small bit, 280 should suffice
591 */
592 name = malloc(280);
593 memset(name, 0, 280);
594
595 stonewall = stonewall_flag;
596 do {
597 /*
598 * if skip_fgets is set, we already have loaded a line we
599 * haven't handled.
600 */
601 if (!skip_fgets) {
602 p = fgets(string, 4095, f);
603 if (!p)
604 break;
605 }
606
607 skip_fgets = 0;
608 strip_blank_front(&p);
609 strip_blank_end(p);
610
611 if (is_empty_or_comment(p))
612 continue;
613 if (sscanf(p, "[%255s]", name) != 1) {
614 log_err("fio: option <%s> outside of [] job section\n", p);
615 break;
616 }
617
618 global = !strncmp(name, "global", 6);
619
620 name[strlen(name) - 1] = '\0';
621
622 if (dump_cmdline) {
623 if (first_sect)
624 log_info("fio ");
625 if (!global)
626 log_info("--name=%s ", name);
627 first_sect = 0;
628 }
629
630 td = get_new_job(global, &def_thread);
631 if (!td) {
632 ret = 1;
633 break;
634 }
635
636 /*
637 * Seperate multiple job files by a stonewall
638 */
639 if (!global && stonewall) {
640 td->o.stonewall = stonewall;
641 stonewall = 0;
642 }
643
644 while ((p = fgets(string, 4096, f)) != NULL) {
645 if (is_empty_or_comment(p))
646 continue;
647
648 strip_blank_front(&p);
649
650 /*
651 * new section, break out and make sure we don't
652 * fgets() a new line at the top.
653 */
654 if (p[0] == '[') {
655 skip_fgets = 1;
656 break;
657 }
658
659 strip_blank_end(p);
660
661 /*
662 * Don't break here, continue parsing options so we
663 * dump all the bad ones. Makes trial/error fixups
664 * easier on the user.
665 */
666 ret |= fio_option_parse(td, p);
667 if (!ret && dump_cmdline)
668 log_info("--%s ", p);
669 }
670
671 if (!ret)
672 ret = add_job(td, name, 0);
673 else {
674 log_err("fio: job %s dropped\n", name);
675 put_job(td);
676 }
677 } while (!ret);
678
679 if (dump_cmdline)
680 log_info("\n");
681
682 free(string);
683 free(name);
684 if (f != stdin)
685 fclose(f);
686 return ret;
687}
688
689static int fill_def_thread(void)
690{
691 memset(&def_thread, 0, sizeof(def_thread));
692
693 fio_getaffinity(getpid(), &def_thread.o.cpumask);
694
695 /*
696 * fill default options
697 */
698 fio_fill_default_options(&def_thread);
699
700 def_thread.o.timeout = def_timeout;
701 def_thread.o.write_bw_log = write_bw_log;
702 def_thread.o.write_lat_log = write_lat_log;
703
704 return 0;
705}
706
707static void free_shm(void)
708{
709 struct shmid_ds sbuf;
710
711 if (threads) {
712 shmdt((void *) threads);
713 threads = NULL;
714 shmctl(shm_id, IPC_RMID, &sbuf);
715 }
716}
717
718/*
719 * The thread area is shared between the main process and the job
720 * threads/processes. So setup a shared memory segment that will hold
721 * all the job info.
722 */
723static int setup_thread_area(void)
724{
725 /*
726 * 1024 is too much on some machines, scale max_jobs if
727 * we get a failure that looks like too large a shm segment
728 */
729 do {
730 size_t size = max_jobs * sizeof(struct thread_data);
731
732 shm_id = shmget(0, size, IPC_CREAT | 0600);
733 if (shm_id != -1)
734 break;
735 if (errno != EINVAL) {
736 perror("shmget");
737 break;
738 }
739
740 max_jobs >>= 1;
741 } while (max_jobs);
742
743 if (shm_id == -1)
744 return 1;
745
746 threads = shmat(shm_id, NULL, 0);
747 if (threads == (void *) -1) {
748 perror("shmat");
749 return 1;
750 }
751
752 memset(threads, 0, max_jobs * sizeof(struct thread_data));
753 atexit(free_shm);
754 return 0;
755}
756
757static void usage(const char *name)
758{
759 printf("%s\n", fio_version_string);
760 printf("%s [options] [job options] <job file(s)>\n", name);
761 printf("\t--output\tWrite output to file\n");
762 printf("\t--timeout\tRuntime in seconds\n");
763 printf("\t--latency-log\tGenerate per-job latency logs\n");
764 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
765 printf("\t--minimal\tMinimal (terse) output\n");
766 printf("\t--version\tPrint version info and exit\n");
767 printf("\t--help\t\tPrint this page\n");
768 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
769 printf("\t--showcmd\tTurn a job file into command line options\n");
770 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
771 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
772}
773
774static int parse_cmd_line(int argc, char *argv[])
775{
776 struct thread_data *td = NULL;
777 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
778
779 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
780 switch (c) {
781 case 't':
782 def_timeout = atoi(optarg);
783 break;
784 case 'l':
785 write_lat_log = 1;
786 break;
787 case 'w':
788 write_bw_log = 1;
789 break;
790 case 'o':
791 f_out = fopen(optarg, "w+");
792 if (!f_out) {
793 perror("fopen output");
794 exit(1);
795 }
796 f_err = f_out;
797 break;
798 case 'm':
799 terse_output = 1;
800 break;
801 case 'h':
802 usage(argv[0]);
803 exit(0);
804 case 'c':
805 exit(fio_show_option_help(optarg));
806 case 's':
807 dump_cmdline = 1;
808 break;
809 case 'r':
810 read_only = 1;
811 break;
812 case 'v':
813 printf("%s\n", fio_version_string);
814 exit(0);
815 case 'e':
816 if (!strcmp("always", optarg))
817 eta_print = FIO_ETA_ALWAYS;
818 else if (!strcmp("never", optarg))
819 eta_print = FIO_ETA_NEVER;
820 break;
821 case FIO_GETOPT_JOB: {
822 const char *opt = long_options[lidx].name;
823 char *val = optarg;
824
825 if (!strncmp(opt, "name", 4) && td) {
826 ret = add_job(td, td->o.name ?: "fio", 0);
827 if (ret) {
828 put_job(td);
829 return 0;
830 }
831 td = NULL;
832 }
833 if (!td) {
834 int global = 0;
835
836 if (strncmp(opt, "name", 4) ||
837 !strncmp(val, "global", 6))
838 global = 1;
839
840 td = get_new_job(global, &def_thread);
841 if (!td)
842 return 0;
843 }
844
845 ret = fio_cmd_option_parse(td, opt, val);
846 if (ret)
847 dont_add_job = 1;
848 break;
849 }
850 default:
851 break;
852 }
853 }
854
855 if (td) {
856 if (dont_add_job)
857 put_job(td);
858 else {
859 ret = add_job(td, td->o.name ?: "fio", 0);
860 if (ret)
861 put_job(td);
862 }
863 }
864
865 while (optind < argc) {
866 ini_idx++;
867 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
868 ini_file[ini_idx - 1] = strdup(argv[optind]);
869 optind++;
870 }
871
872 return ini_idx;
873}
874
875
876int parse_options(int argc, char *argv[])
877{
878 int job_files, i;
879
880 f_out = stdout;
881 f_err = stderr;
882
883 fio_options_dup_and_init(long_options);
884
885 if (setup_thread_area())
886 return 1;
887 if (fill_def_thread())
888 return 1;
889
890 job_files = parse_cmd_line(argc, argv);
891
892 for (i = 0; i < job_files; i++) {
893 if (fill_def_thread())
894 return 1;
895 if (parse_jobs_ini(ini_file[i], i))
896 return 1;
897 free(ini_file[i]);
898 }
899
900 free(ini_file);
901 options_mem_free(&def_thread);
902
903 if (!thread_number) {
904 if (dump_cmdline)
905 return 0;
906
907 log_err("No jobs defined(s)\n");
908 usage(argv[0]);
909 return 1;
910 }
911
912 return 0;
913}