blob: dcad1b392828f7ab1be5065011b641ea226b18f9 [file] [log] [blame]
Jens Axboe906c8d72006-06-13 09:37:56 +02001/*
Jens Axboecb2c86f2006-10-26 13:48:34 +02002 * This file contains job initialization and setup functions.
Jens Axboe906c8d72006-06-13 09:37:56 +02003 */
Jens Axboeebac4652005-12-08 15:25:21 +01004#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>
Jens Axboeb4692822006-10-27 13:43:22 +020011#include <getopt.h>
Jens Axboeebac4652005-12-08 15:25:21 +010012#include <sys/ipc.h>
13#include <sys/shm.h>
14#include <sys/types.h>
15#include <sys/stat.h>
16
17#include "fio.h"
Jens Axboecb2c86f2006-10-26 13:48:34 +020018#include "parse.h"
Jens Axboeebac4652005-12-08 15:25:21 +010019
Jens Axboe01680f32008-01-31 14:39:16 +010020static char fio_version_string[] = "fio 1.17.3";
Jens Axboe214e1ec2007-03-15 10:48:13 +010021
Jens Axboeee738492007-01-10 11:23:16 +010022#define FIO_RANDSEED (0xb1899bedUL)
Jens Axboeebac4652005-12-08 15:25:21 +010023
Jens Axboe214e1ec2007-03-15 10:48:13 +010024static char **ini_file;
25static int max_jobs = MAX_JOBS;
Jens Axboecca73aa2007-04-04 11:09:19 +020026static int dump_cmdline;
Jens Axboee1f36502006-10-27 10:54:08 +020027
Jens Axboe214e1ec2007-03-15 10:48:13 +010028struct thread_data def_thread;
29struct thread_data *threads = NULL;
Jens Axboee1f36502006-10-27 10:54:08 +020030
Jens Axboe214e1ec2007-03-15 10:48:13 +010031int exitall_on_terminate = 0;
32int terse_output = 0;
Aaron Carrolle592a062007-09-14 09:49:41 +020033int eta_print;
Jens Axboe214e1ec2007-03-15 10:48:13 +010034unsigned long long mlock_size = 0;
35FILE *f_out = NULL;
36FILE *f_err = NULL;
Jens Axboeee738492007-01-10 11:23:16 +010037
Jens Axboe214e1ec2007-03-15 10:48:13 +010038int write_bw_log = 0;
Jens Axboe4241ea82007-09-12 08:18:36 +020039int read_only = 0;
Jens Axboee1f36502006-10-27 10:54:08 +020040
Jens Axboe214e1ec2007-03-15 10:48:13 +010041static int def_timeout = 0;
42static int write_lat_log = 0;
43
44static int prev_group_jobs;
Jens Axboeb4692822006-10-27 13:43:22 +020045
Jens Axboeee56ad52008-02-01 10:30:20 +010046unsigned long fio_debug = 0;
47
Jens Axboeb4692822006-10-27 13:43:22 +020048/*
49 * Command line options. These will contain the above, plus a few
50 * extra that only pertain to fio itself and not jobs.
51 */
Jens Axboe214e1ec2007-03-15 10:48:13 +010052static struct option long_options[FIO_NR_OPTIONS] = {
Jens Axboeb4692822006-10-27 13:43:22 +020053 {
54 .name = "output",
55 .has_arg = required_argument,
56 .val = 'o',
57 },
58 {
59 .name = "timeout",
60 .has_arg = required_argument,
61 .val = 't',
62 },
63 {
64 .name = "latency-log",
65 .has_arg = required_argument,
66 .val = 'l',
67 },
68 {
69 .name = "bandwidth-log",
70 .has_arg = required_argument,
71 .val = 'b',
72 },
73 {
74 .name = "minimal",
75 .has_arg = optional_argument,
76 .val = 'm',
77 },
78 {
79 .name = "version",
80 .has_arg = no_argument,
81 .val = 'v',
82 },
83 {
Jens Axboefd28ca42007-01-09 21:20:13 +010084 .name = "help",
85 .has_arg = no_argument,
86 .val = 'h',
87 },
88 {
89 .name = "cmdhelp",
Jens Axboe320beef2007-03-01 10:44:12 +010090 .has_arg = optional_argument,
Jens Axboefd28ca42007-01-09 21:20:13 +010091 .val = 'c',
92 },
93 {
Jens Axboecca73aa2007-04-04 11:09:19 +020094 .name = "showcmd",
95 .has_arg = no_argument,
Jens Axboe724e4432007-09-11 20:02:05 +020096 .val = 's',
97 },
98 {
99 .name = "readonly",
100 .has_arg = no_argument,
101 .val = 'r',
Jens Axboecca73aa2007-04-04 11:09:19 +0200102 },
103 {
Aaron Carrolle592a062007-09-14 09:49:41 +0200104 .name = "eta",
105 .has_arg = required_argument,
106 .val = 'e',
107 },
108 {
Jens Axboeee56ad52008-02-01 10:30:20 +0100109 .name = "debug",
110 .has_arg = required_argument,
111 .val = 'd',
112 },
113 {
Jens Axboeb4692822006-10-27 13:43:22 +0200114 .name = NULL,
115 },
116};
117
Joel Becker9728ce32007-03-01 08:24:39 +0100118FILE *get_f_out()
119{
120 return f_out;
121}
122
123FILE *get_f_err()
124{
125 return f_err;
126}
127
Jens Axboe906c8d72006-06-13 09:37:56 +0200128/*
129 * Return a free job structure.
130 */
Jens Axboeebac4652005-12-08 15:25:21 +0100131static struct thread_data *get_new_job(int global, struct thread_data *parent)
132{
133 struct thread_data *td;
134
135 if (global)
136 return &def_thread;
137 if (thread_number >= max_jobs)
138 return NULL;
139
140 td = &threads[thread_number++];
Jens Axboeddaeaa52006-06-08 11:00:58 +0200141 *td = *parent;
Jens Axboeebac4652005-12-08 15:25:21 +0100142
Jens Axboecade3ef2007-03-23 15:29:45 +0100143 dup_files(td, parent);
Jens Axboed23bb322007-03-23 15:57:56 +0100144 options_mem_dupe(td);
Jens Axboecade3ef2007-03-23 15:29:45 +0100145
Jens Axboeebac4652005-12-08 15:25:21 +0100146 td->thread_number = thread_number;
Jens Axboeebac4652005-12-08 15:25:21 +0100147 return td;
148}
149
150static void put_job(struct thread_data *td)
151{
Jens Axboe549577a2006-10-30 12:23:41 +0100152 if (td == &def_thread)
153 return;
154
Jens Axboe16edf252007-02-10 14:59:22 +0100155 if (td->error)
Jens Axboe6d861442007-03-15 09:22:23 +0100156 log_info("fio: %s\n", td->verror);
Jens Axboe16edf252007-02-10 14:59:22 +0100157
Jens Axboeebac4652005-12-08 15:25:21 +0100158 memset(&threads[td->thread_number - 1], 0, sizeof(*td));
159 thread_number--;
160}
161
Jens Axboe127f6862007-03-15 12:09:57 +0100162static int setup_rate(struct thread_data *td)
163{
164 unsigned long nr_reads_per_msec;
165 unsigned long long rate;
166 unsigned int bs;
167
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100168 if (!td->o.rate && !td->o.rate_iops)
Jens Axboe127f6862007-03-15 12:09:57 +0100169 return 0;
170
171 if (td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100172 bs = td->o.rw_min_bs;
Jens Axboe127f6862007-03-15 12:09:57 +0100173 else if (td_read(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100174 bs = td->o.min_bs[DDIR_READ];
Jens Axboe127f6862007-03-15 12:09:57 +0100175 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100176 bs = td->o.min_bs[DDIR_WRITE];
Jens Axboe127f6862007-03-15 12:09:57 +0100177
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100178 if (td->o.rate) {
179 rate = td->o.rate;
Jens Axboe127f6862007-03-15 12:09:57 +0100180 nr_reads_per_msec = (rate * 1024 * 1000LL) / bs;
181 } else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100182 nr_reads_per_msec = td->o.rate_iops * 1000UL;
Jens Axboe127f6862007-03-15 12:09:57 +0100183
184 if (!nr_reads_per_msec) {
185 log_err("rate lower than supported\n");
186 return -1;
187 }
188
189 td->rate_usec_cycle = 1000000000ULL / nr_reads_per_msec;
190 td->rate_pending_usleep = 0;
191 return 0;
192}
193
Jens Axboedad915e2006-10-27 11:10:18 +0200194/*
195 * Lazy way of fixing up options that depend on each other. We could also
196 * define option callback handlers, but this is easier.
197 */
Jens Axboe4e991c22007-03-15 11:41:11 +0100198static int fixup_options(struct thread_data *td)
Jens Axboee1f36502006-10-27 10:54:08 +0200199{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100200 struct thread_options *o = &td->o;
Jens Axboedad915e2006-10-27 11:10:18 +0200201
Jens Axboe724e4432007-09-11 20:02:05 +0200202 if (read_only && td_write(td)) {
203 log_err("fio: job <%s> has write bit set, but fio is in read-only mode\n", td->o.name);
204 return 1;
205 }
206
Jens Axboee47f7992007-03-21 14:05:39 +0100207 if (o->rwmix[DDIR_READ] + o->rwmix[DDIR_WRITE] > 100)
208 o->rwmix[DDIR_WRITE] = 100 - o->rwmix[DDIR_READ];
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100209
210 if (o->write_iolog_file && o->read_iolog_file) {
Jens Axboe076efc72006-10-27 11:24:25 +0200211 log_err("fio: read iolog overrides write_iolog\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100212 free(o->write_iolog_file);
213 o->write_iolog_file = NULL;
Jens Axboe076efc72006-10-27 11:24:25 +0200214 }
Jens Axboe16b462a2006-10-30 12:35:18 +0100215
216 if (td->io_ops->flags & FIO_SYNCIO)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100217 o->iodepth = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100218 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100219 if (!o->iodepth)
220 o->iodepth = o->open_files;
Jens Axboe16b462a2006-10-30 12:35:18 +0100221 }
222
223 /*
224 * only really works for sequential io for now, and with 1 file
225 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100226 if (o->zone_size && td_random(td) && o->open_files == 1)
227 o->zone_size = 0;
Jens Axboe16b462a2006-10-30 12:35:18 +0100228
229 /*
230 * Reads can do overwrites, we always need to pre-create the file
231 */
232 if (td_read(td) || td_rw(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100233 o->overwrite = 1;
Jens Axboe16b462a2006-10-30 12:35:18 +0100234
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100235 if (!o->min_bs[DDIR_READ])
236 o->min_bs[DDIR_READ]= o->bs[DDIR_READ];
237 if (!o->max_bs[DDIR_READ])
238 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
239 if (!o->min_bs[DDIR_WRITE])
240 o->min_bs[DDIR_WRITE]= o->bs[DDIR_WRITE];
241 if (!o->max_bs[DDIR_WRITE])
242 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
Jens Axboea00735e2006-11-03 08:58:08 +0100243
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100244 o->rw_min_bs = min(o->min_bs[DDIR_READ], o->min_bs[DDIR_WRITE]);
Jens Axboea00735e2006-11-03 08:58:08 +0100245
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100246 if (!o->file_size_high)
247 o->file_size_high = o->file_size_low;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100248
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100249 if (o->norandommap && o->verify != VERIFY_NONE) {
Jens Axboebb8895e2006-10-30 15:14:48 +0100250 log_err("fio: norandommap given, verify disabled\n");
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100251 o->verify = VERIFY_NONE;
Jens Axboebb8895e2006-10-30 15:14:48 +0100252 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100253 if (o->bs_unaligned && (o->odirect || td->io_ops->flags & FIO_RAWIO))
Jens Axboe690adba2006-10-30 15:25:09 +0100254 log_err("fio: bs_unaligned may not work with raw io\n");
Jens Axboee0a22332006-12-20 12:54:25 +0100255
256 /*
Jens Axboe48097d52007-02-17 06:30:44 +0100257 * thinktime_spin must be less than thinktime
258 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100259 if (o->thinktime_spin > o->thinktime)
260 o->thinktime_spin = o->thinktime;
Jens Axboee916b392007-02-20 14:37:26 +0100261
262 /*
263 * The low water mark cannot be bigger than the iodepth
264 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100265 if (o->iodepth_low > o->iodepth || !o->iodepth_low) {
Jens Axboe9467b772007-02-27 19:56:43 +0100266 /*
267 * syslet work around - if the workload is sequential,
268 * we want to let the queue drain all the way down to
269 * avoid seeking between async threads
270 */
271 if (!strcmp(td->io_ops->name, "syslet-rw") && !td_random(td))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100272 o->iodepth_low = 1;
Jens Axboe9467b772007-02-27 19:56:43 +0100273 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100274 o->iodepth_low = o->iodepth;
Jens Axboe9467b772007-02-27 19:56:43 +0100275 }
Jens Axboecb5ab512007-02-26 12:57:09 +0100276
277 /*
278 * If batch number isn't set, default to the same as iodepth
279 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100280 if (o->iodepth_batch > o->iodepth || !o->iodepth_batch)
281 o->iodepth_batch = o->iodepth;
Jens Axboeb5af8292007-03-08 12:43:13 +0100282
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100283 if (o->nr_files > td->files_index)
284 o->nr_files = td->files_index;
Jens Axboe9f9214f2007-03-13 14:02:16 +0100285
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100286 if (o->open_files > o->nr_files || !o->open_files)
287 o->open_files = o->nr_files;
Jens Axboe4e991c22007-03-15 11:41:11 +0100288
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100289 if ((o->rate && o->rate_iops) || (o->ratemin && o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100290 log_err("fio: rate and rate_iops are mutually exclusive\n");
291 return 1;
292 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if ((o->rate < o->ratemin) || (o->rate_iops < o->rate_iops_min)) {
Jens Axboe4e991c22007-03-15 11:41:11 +0100294 log_err("fio: minimum rate exceeds rate\n");
295 return 1;
296 }
297
Jens Axboecf4464c2007-04-17 20:14:42 +0200298 if (!o->timeout && o->time_based) {
299 log_err("fio: time_based requires a runtime/timeout setting\n");
300 o->time_based = 0;
301 }
302
Shawn Lewisaa31f1f2008-01-11 09:45:11 +0100303 if (o->fill_device && !o->size)
304 o->size = ULONG_LONG_MAX;
305
Jens Axboe4e991c22007-03-15 11:41:11 +0100306 return 0;
Jens Axboee1f36502006-10-27 10:54:08 +0200307}
308
Jens Axboe906c8d72006-06-13 09:37:56 +0200309/*
Jens Axboef8977ee2006-11-06 14:03:03 +0100310 * This function leaks the buffer
311 */
312static char *to_kmg(unsigned int val)
313{
314 char *buf = malloc(32);
Jens Axboef3502ba2007-02-14 01:27:09 +0100315 char post[] = { 0, 'K', 'M', 'G', 'P', 'E', 0 };
Jens Axboef8977ee2006-11-06 14:03:03 +0100316 char *p = post;
317
Jens Axboe245142f2006-11-08 12:49:21 +0100318 do {
Jens Axboef8977ee2006-11-06 14:03:03 +0100319 if (val & 1023)
320 break;
321
322 val >>= 10;
323 p++;
Jens Axboe245142f2006-11-08 12:49:21 +0100324 } while (*p);
Jens Axboef8977ee2006-11-06 14:03:03 +0100325
326 snprintf(buf, 31, "%u%c", val, *p);
327 return buf;
328}
329
Jens Axboe09629a92007-03-09 09:00:06 +0100330/* External engines are specified by "external:name.o") */
331static const char *get_engine_name(const char *str)
332{
333 char *p = strstr(str, ":");
334
335 if (!p)
336 return str;
337
338 p++;
339 strip_blank_front(&p);
340 strip_blank_end(p);
341 return p;
342}
343
Jens Axboee132cba2007-03-14 14:23:54 +0100344static int exists_and_not_file(const char *filename)
345{
346 struct stat sb;
347
348 if (lstat(filename, &sb) == -1)
349 return 0;
350
351 if (S_ISREG(sb.st_mode))
352 return 0;
353
354 return 1;
355}
356
Jens Axboef8977ee2006-11-06 14:03:03 +0100357/*
Jens Axboe9c60ce62007-03-15 09:14:47 +0100358 * Initialize the various random states we need (random io, block size ranges,
359 * read/write mix, etc).
360 */
361static int init_random_state(struct thread_data *td)
362{
363 unsigned long seeds[6];
Jens Axboe68727072007-03-15 20:49:25 +0100364 int fd;
Jens Axboe9c60ce62007-03-15 09:14:47 +0100365
366 fd = open("/dev/urandom", O_RDONLY);
367 if (fd == -1) {
368 td_verror(td, errno, "open");
369 return 1;
370 }
371
372 if (read(fd, seeds, sizeof(seeds)) < (int) sizeof(seeds)) {
373 td_verror(td, EIO, "read");
374 close(fd);
375 return 1;
376 }
377
378 close(fd);
379
380 os_random_seed(seeds[0], &td->bsrange_state);
381 os_random_seed(seeds[1], &td->verify_state);
382 os_random_seed(seeds[2], &td->rwmix_state);
383
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100384 if (td->o.file_service_type == FIO_FSERVICE_RANDOM)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100385 os_random_seed(seeds[3], &td->next_file_state);
386
387 os_random_seed(seeds[5], &td->file_size_state);
388
389 if (!td_random(td))
390 return 0;
391
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100392 if (td->o.rand_repeatable)
Jens Axboe9c60ce62007-03-15 09:14:47 +0100393 seeds[4] = FIO_RANDSEED * td->thread_number;
394
Jens Axboe9c60ce62007-03-15 09:14:47 +0100395 os_random_seed(seeds[4], &td->random_state);
396 return 0;
397}
398
Jens Axboe9c60ce62007-03-15 09:14:47 +0100399/*
Jens Axboe906c8d72006-06-13 09:37:56 +0200400 * Adds a job to the list of things todo. Sanitizes the various options
401 * to make sure we don't have conflicts, and initializes various
402 * members of td.
403 */
Jens Axboe75154842006-06-01 13:56:09 +0200404static int add_job(struct thread_data *td, const char *jobname, int job_add_num)
Jens Axboeebac4652005-12-08 15:25:21 +0100405{
Jens Axboe413dd452007-02-23 09:26:09 +0100406 const char *ddir_str[] = { NULL, "read", "write", "rw", NULL,
407 "randread", "randwrite", "randrw" };
Jens Axboeaf52b342007-03-13 10:07:47 +0100408 unsigned int i;
Jens Axboe09629a92007-03-09 09:00:06 +0100409 const char *engine;
Jens Axboeaf52b342007-03-13 10:07:47 +0100410 char fname[PATH_MAX];
Jens Axboee132cba2007-03-14 14:23:54 +0100411 int numjobs, file_alloced;
Jens Axboeebac4652005-12-08 15:25:21 +0100412
Jens Axboeebac4652005-12-08 15:25:21 +0100413 /*
414 * the def_thread is just for options, it's not a real job
415 */
416 if (td == &def_thread)
417 return 0;
418
Jens Axboecca73aa2007-04-04 11:09:19 +0200419 /*
420 * if we are just dumping the output command line, don't add the job
421 */
422 if (dump_cmdline) {
423 put_job(td);
424 return 0;
425 }
426
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100427 engine = get_engine_name(td->o.ioengine);
Jens Axboe09629a92007-03-09 09:00:06 +0100428 td->io_ops = load_ioengine(td, engine);
429 if (!td->io_ops) {
430 log_err("fio: failed to load engine %s\n", engine);
Jens Axboe205927a2007-03-15 11:06:32 +0100431 goto err;
Jens Axboe09629a92007-03-09 09:00:06 +0100432 }
Jens Axboedf641192006-10-12 07:55:41 +0200433
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100434 if (td->o.use_thread)
Jens Axboe9cedf162007-03-12 11:29:30 +0100435 nr_thread++;
436 else
437 nr_process++;
438
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100439 if (td->o.odirect)
Jens Axboe690adba2006-10-30 15:25:09 +0100440 td->io_ops->flags |= FIO_RAWIO;
441
Jens Axboee132cba2007-03-14 14:23:54 +0100442 file_alloced = 0;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100443 if (!td->o.filename && !td->files_index) {
Jens Axboee132cba2007-03-14 14:23:54 +0100444 file_alloced = 1;
Jens Axboe80be24f2007-03-12 11:01:25 +0100445
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100446 if (td->o.nr_files == 1 && exists_and_not_file(jobname))
Jens Axboee132cba2007-03-14 14:23:54 +0100447 add_file(td, jobname);
Jens Axboe7b05a212007-03-13 11:17:07 +0100448 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100449 for (i = 0; i < td->o.nr_files; i++) {
Jens Axboee132cba2007-03-14 14:23:54 +0100450 sprintf(fname, "%s.%d.%d", jobname, td->thread_number, i);
Jens Axboe7b05a212007-03-13 11:17:07 +0100451 add_file(td, fname);
452 }
Jens Axboeaf52b342007-03-13 10:07:47 +0100453 }
Jens Axboe0af7b542006-02-17 10:10:12 +0100454 }
Jens Axboeebac4652005-12-08 15:25:21 +0100455
Jens Axboe4e991c22007-03-15 11:41:11 +0100456 if (fixup_options(td))
457 goto err;
Jens Axboee0a22332006-12-20 12:54:25 +0100458
Jens Axboe07eb79d2007-04-12 13:02:38 +0200459 if (td->io_ops->flags & FIO_DISKLESSIO) {
460 struct fio_file *f;
461
462 for_each_file(td, f, i)
463 f->real_file_size = -1ULL;
464 }
465
Jens Axboe07739b52007-03-08 20:25:46 +0100466 td->mutex = fio_sem_init(0);
Jens Axboeebac4652005-12-08 15:25:21 +0100467
Jens Axboe756867b2007-03-06 15:19:24 +0100468 td->ts.clat_stat[0].min_val = td->ts.clat_stat[1].min_val = ULONG_MAX;
469 td->ts.slat_stat[0].min_val = td->ts.slat_stat[1].min_val = ULONG_MAX;
470 td->ts.bw_stat[0].min_val = td->ts.bw_stat[1].min_val = ULONG_MAX;
Jens Axboe1e3d53a2007-03-22 19:01:48 +0100471 td->ddir_nr = td->o.ddir_nr;
Jens Axboeebac4652005-12-08 15:25:21 +0100472
Jens Axboeb3d62a72007-03-20 14:23:26 +0100473 if ((td->o.stonewall || td->o.numjobs > 1 || td->o.new_group)
474 && prev_group_jobs) {
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100475 prev_group_jobs = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100476 groupid++;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100477 }
Jens Axboeebac4652005-12-08 15:25:21 +0100478
479 td->groupid = groupid;
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100480 prev_group_jobs++;
Jens Axboeebac4652005-12-08 15:25:21 +0100481
Jens Axboe9c60ce62007-03-15 09:14:47 +0100482 if (init_random_state(td))
483 goto err;
484
Jens Axboeebac4652005-12-08 15:25:21 +0100485 if (setup_rate(td))
486 goto err;
487
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100488 if (td->o.write_lat_log) {
Jens Axboe756867b2007-03-06 15:19:24 +0100489 setup_log(&td->ts.slat_log);
490 setup_log(&td->ts.clat_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100491 }
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100492 if (td->o.write_bw_log)
Jens Axboe756867b2007-03-06 15:19:24 +0100493 setup_log(&td->ts.bw_log);
Jens Axboeebac4652005-12-08 15:25:21 +0100494
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100495 if (!td->o.name)
496 td->o.name = strdup(jobname);
Jens Axboe01452052006-06-07 10:29:47 +0200497
Jens Axboec6ae0a52006-06-12 11:04:44 +0200498 if (!terse_output) {
Jens Axboeb990b5c2006-09-14 09:48:22 +0200499 if (!job_add_num) {
Jens Axboeba0fbe12007-03-09 14:34:23 +0100500 if (!strcmp(td->io_ops->name, "cpuio"))
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100501 log_info("%s: ioengine=cpu, cpuload=%u, cpucycle=%u\n", td->o.name, td->o.cpuload, td->o.cpucycle);
Jens Axboef8977ee2006-11-06 14:03:03 +0100502 else {
503 char *c1, *c2, *c3, *c4;
504
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100505 c1 = to_kmg(td->o.min_bs[DDIR_READ]);
506 c2 = to_kmg(td->o.max_bs[DDIR_READ]);
507 c3 = to_kmg(td->o.min_bs[DDIR_WRITE]);
508 c4 = to_kmg(td->o.max_bs[DDIR_WRITE]);
Jens Axboef8977ee2006-11-06 14:03:03 +0100509
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100510 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);
Jens Axboef8977ee2006-11-06 14:03:03 +0100511
512 free(c1);
513 free(c2);
514 free(c3);
515 free(c4);
516 }
Jens Axboeb990b5c2006-09-14 09:48:22 +0200517 } else if (job_add_num == 1)
Jens Axboe6d861442007-03-15 09:22:23 +0100518 log_info("...\n");
Jens Axboec6ae0a52006-06-12 11:04:44 +0200519 }
Jens Axboeebac4652005-12-08 15:25:21 +0100520
521 /*
522 * recurse add identical jobs, clear numjobs and stonewall options
523 * as they don't apply to sub-jobs
524 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100525 numjobs = td->o.numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100526 while (--numjobs) {
527 struct thread_data *td_new = get_new_job(0, td);
528
529 if (!td_new)
530 goto err;
531
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100532 td_new->o.numjobs = 1;
533 td_new->o.stonewall = 0;
Jens Axboe92c1d412007-03-28 10:04:08 +0200534 td_new->o.new_group = 0;
Jens Axboee132cba2007-03-14 14:23:54 +0100535
536 if (file_alloced) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100537 td_new->o.filename = NULL;
Jens Axboee132cba2007-03-14 14:23:54 +0100538 td_new->files_index = 0;
539 td_new->files = NULL;
540 }
541
Jens Axboe75154842006-06-01 13:56:09 +0200542 job_add_num = numjobs - 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100543
Jens Axboe75154842006-06-01 13:56:09 +0200544 if (add_job(td_new, jobname, job_add_num))
Jens Axboeebac4652005-12-08 15:25:21 +0100545 goto err;
546 }
Jens Axboe3c5df6f2007-03-12 15:09:24 +0100547
Jens Axboeebac4652005-12-08 15:25:21 +0100548 return 0;
549err:
550 put_job(td);
551 return -1;
552}
553
Jens Axboeebac4652005-12-08 15:25:21 +0100554static int is_empty_or_comment(char *line)
555{
556 unsigned int i;
557
558 for (i = 0; i < strlen(line); i++) {
559 if (line[i] == ';')
560 return 1;
Ingo Molnar5cc2da32007-02-20 10:19:44 +0100561 if (line[i] == '#')
562 return 1;
Jens Axboeebac4652005-12-08 15:25:21 +0100563 if (!isspace(line[i]) && !iscntrl(line[i]))
564 return 0;
565 }
566
567 return 1;
568}
569
Jens Axboe313cb202006-12-21 09:50:00 +0100570/*
Jens Axboe07261982006-06-07 10:51:12 +0200571 * This is our [ini] type file parser.
572 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100573static int parse_jobs_ini(char *file, int stonewall_flag)
Jens Axboeebac4652005-12-08 15:25:21 +0100574{
Jens Axboee1f36502006-10-27 10:54:08 +0200575 unsigned int global;
Jens Axboeebac4652005-12-08 15:25:21 +0100576 struct thread_data *td;
Jens Axboefee3bb42006-10-30 13:32:08 +0100577 char *string, *name;
Jens Axboeebac4652005-12-08 15:25:21 +0100578 FILE *f;
579 char *p;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200580 int ret = 0, stonewall;
Jens Axboe097b2992007-04-19 09:41:45 +0200581 int first_sect = 1;
Jens Axboeccf8f122007-09-27 10:48:55 +0200582 int skip_fgets = 0;
Jens Axboeebac4652005-12-08 15:25:21 +0100583
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200584 if (!strcmp(file, "-"))
585 f = stdin;
586 else
587 f = fopen(file, "r");
588
Jens Axboeebac4652005-12-08 15:25:21 +0100589 if (!f) {
Jens Axboeaea47d42006-05-26 19:27:29 +0200590 perror("fopen job file");
Jens Axboeebac4652005-12-08 15:25:21 +0100591 return 1;
592 }
593
594 string = malloc(4096);
Jens Axboe7f7e6e52007-07-19 14:50:05 +0200595
596 /*
597 * it's really 256 + small bit, 280 should suffice
598 */
599 name = malloc(280);
600 memset(name, 0, 280);
Jens Axboeebac4652005-12-08 15:25:21 +0100601
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200602 stonewall = stonewall_flag;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100603 do {
Jens Axboeccf8f122007-09-27 10:48:55 +0200604 /*
605 * if skip_fgets is set, we already have loaded a line we
606 * haven't handled.
607 */
608 if (!skip_fgets) {
609 p = fgets(string, 4095, f);
610 if (!p)
611 break;
612 }
gurudas paicdc7f192007-03-29 10:10:56 +0200613
Jens Axboeccf8f122007-09-27 10:48:55 +0200614 skip_fgets = 0;
gurudas paicdc7f192007-03-29 10:10:56 +0200615 strip_blank_front(&p);
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800616 strip_blank_end(p);
gurudas paicdc7f192007-03-29 10:10:56 +0200617
Jens Axboeebac4652005-12-08 15:25:21 +0100618 if (is_empty_or_comment(p))
619 continue;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800620 if (sscanf(p, "[%255s]", name) != 1) {
Jens Axboe088b4202007-07-19 14:53:01 +0200621 log_err("fio: option <%s> outside of [] job section\n", p);
622 break;
Jens Axboe6c7c7da2007-03-29 14:12:57 -0800623 }
Jens Axboeebac4652005-12-08 15:25:21 +0100624
625 global = !strncmp(name, "global", 6);
626
627 name[strlen(name) - 1] = '\0';
628
Jens Axboecca73aa2007-04-04 11:09:19 +0200629 if (dump_cmdline) {
Jens Axboe097b2992007-04-19 09:41:45 +0200630 if (first_sect)
631 log_info("fio ");
Jens Axboecca73aa2007-04-04 11:09:19 +0200632 if (!global)
633 log_info("--name=%s ", name);
Jens Axboe097b2992007-04-19 09:41:45 +0200634 first_sect = 0;
Jens Axboecca73aa2007-04-04 11:09:19 +0200635 }
636
Jens Axboeebac4652005-12-08 15:25:21 +0100637 td = get_new_job(global, &def_thread);
Jens Axboe45410ac2006-06-07 11:10:39 +0200638 if (!td) {
639 ret = 1;
640 break;
641 }
Jens Axboeebac4652005-12-08 15:25:21 +0100642
Jens Axboe972cfd22006-06-09 11:08:56 +0200643 /*
644 * Seperate multiple job files by a stonewall
645 */
Jens Axboef9481912006-06-09 11:37:28 +0200646 if (!global && stonewall) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100647 td->o.stonewall = stonewall;
Jens Axboe972cfd22006-06-09 11:08:56 +0200648 stonewall = 0;
649 }
650
Jens Axboeebac4652005-12-08 15:25:21 +0100651 while ((p = fgets(string, 4096, f)) != NULL) {
652 if (is_empty_or_comment(p))
653 continue;
Jens Axboee1f36502006-10-27 10:54:08 +0200654
Jens Axboeb6754f92006-05-30 14:29:32 +0200655 strip_blank_front(&p);
Jens Axboe7c124ac2006-10-30 13:36:52 +0100656
Jens Axboeccf8f122007-09-27 10:48:55 +0200657 /*
658 * new section, break out and make sure we don't
659 * fgets() a new line at the top.
660 */
661 if (p[0] == '[') {
662 skip_fgets = 1;
Jens Axboe7c124ac2006-10-30 13:36:52 +0100663 break;
Jens Axboeccf8f122007-09-27 10:48:55 +0200664 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100665
Jens Axboe4ae3f762006-05-30 13:35:14 +0200666 strip_blank_end(p);
Jens Axboeaea47d42006-05-26 19:27:29 +0200667
Jens Axboe45410ac2006-06-07 11:10:39 +0200668 /*
669 * Don't break here, continue parsing options so we
670 * dump all the bad ones. Makes trial/error fixups
671 * easier on the user.
672 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100673 ret |= fio_option_parse(td, p);
Jens Axboecca73aa2007-04-04 11:09:19 +0200674 if (!ret && dump_cmdline)
675 log_info("--%s ", p);
Jens Axboeebac4652005-12-08 15:25:21 +0100676 }
Jens Axboeebac4652005-12-08 15:25:21 +0100677
Jens Axboeccf8f122007-09-27 10:48:55 +0200678 if (!ret)
Jens Axboe45410ac2006-06-07 11:10:39 +0200679 ret = add_job(td, name, 0);
Jens Axboeccf8f122007-09-27 10:48:55 +0200680 else {
Jens Axboeb1508cf2006-11-02 09:12:40 +0100681 log_err("fio: job %s dropped\n", name);
682 put_job(td);
Jens Axboe45410ac2006-06-07 11:10:39 +0200683 }
Jens Axboe7c124ac2006-10-30 13:36:52 +0100684 } while (!ret);
Jens Axboeebac4652005-12-08 15:25:21 +0100685
Jens Axboecca73aa2007-04-04 11:09:19 +0200686 if (dump_cmdline)
687 log_info("\n");
688
Jens Axboeebac4652005-12-08 15:25:21 +0100689 free(string);
690 free(name);
Aaron Carroll5a729cb2007-09-27 09:03:55 +0200691 if (f != stdin)
692 fclose(f);
Jens Axboe45410ac2006-06-07 11:10:39 +0200693 return ret;
Jens Axboeebac4652005-12-08 15:25:21 +0100694}
695
696static int fill_def_thread(void)
697{
698 memset(&def_thread, 0, sizeof(def_thread));
699
Jens Axboe375b2692007-05-22 09:13:02 +0200700 fio_getaffinity(getpid(), &def_thread.o.cpumask);
Jens Axboeebac4652005-12-08 15:25:21 +0100701
702 /*
Jens Axboeee738492007-01-10 11:23:16 +0100703 * fill default options
Jens Axboeebac4652005-12-08 15:25:21 +0100704 */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100705 fio_fill_default_options(&def_thread);
Jens Axboeee738492007-01-10 11:23:16 +0100706
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100707 def_thread.o.timeout = def_timeout;
708 def_thread.o.write_bw_log = write_bw_log;
709 def_thread.o.write_lat_log = write_lat_log;
Jens Axboeee738492007-01-10 11:23:16 +0100710
Jens Axboeebac4652005-12-08 15:25:21 +0100711 return 0;
712}
713
Jens Axboeebac4652005-12-08 15:25:21 +0100714static void free_shm(void)
715{
716 struct shmid_ds sbuf;
717
718 if (threads) {
Jens Axboe2c0ecd22006-06-08 13:25:41 +0200719 shmdt((void *) threads);
Jens Axboeebac4652005-12-08 15:25:21 +0100720 threads = NULL;
721 shmctl(shm_id, IPC_RMID, &sbuf);
722 }
723}
724
Jens Axboe906c8d72006-06-13 09:37:56 +0200725/*
726 * The thread area is shared between the main process and the job
727 * threads/processes. So setup a shared memory segment that will hold
728 * all the job info.
729 */
Jens Axboeebac4652005-12-08 15:25:21 +0100730static int setup_thread_area(void)
731{
732 /*
733 * 1024 is too much on some machines, scale max_jobs if
734 * we get a failure that looks like too large a shm segment
735 */
736 do {
Jens Axboe906c8d72006-06-13 09:37:56 +0200737 size_t size = max_jobs * sizeof(struct thread_data);
Jens Axboeebac4652005-12-08 15:25:21 +0100738
Jens Axboe906c8d72006-06-13 09:37:56 +0200739 shm_id = shmget(0, size, IPC_CREAT | 0600);
Jens Axboeebac4652005-12-08 15:25:21 +0100740 if (shm_id != -1)
741 break;
742 if (errno != EINVAL) {
743 perror("shmget");
744 break;
745 }
746
747 max_jobs >>= 1;
748 } while (max_jobs);
749
750 if (shm_id == -1)
751 return 1;
752
753 threads = shmat(shm_id, NULL, 0);
754 if (threads == (void *) -1) {
755 perror("shmat");
756 return 1;
757 }
758
Jens Axboe1f809d12007-10-25 18:34:02 +0200759 memset(threads, 0, max_jobs * sizeof(struct thread_data));
Jens Axboeebac4652005-12-08 15:25:21 +0100760 atexit(free_shm);
761 return 0;
762}
763
Jens Axboe45378b32007-12-19 13:54:38 +0100764static void usage(const char *name)
Jens Axboeb4692822006-10-27 13:43:22 +0200765{
Jens Axboe214e1ec2007-03-15 10:48:13 +0100766 printf("%s\n", fio_version_string);
Jens Axboe45378b32007-12-19 13:54:38 +0100767 printf("%s [options] [job options] <job file(s)>\n", name);
Jens Axboeee56ad52008-02-01 10:30:20 +0100768 printf("\t--debug=options\tEnable debug logging\n");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100769 printf("\t--output\tWrite output to file\n");
770 printf("\t--timeout\tRuntime in seconds\n");
771 printf("\t--latency-log\tGenerate per-job latency logs\n");
772 printf("\t--bandwidth-log\tGenerate per-job bandwidth logs\n");
773 printf("\t--minimal\tMinimal (terse) output\n");
774 printf("\t--version\tPrint version info and exit\n");
775 printf("\t--help\t\tPrint this page\n");
776 printf("\t--cmdhelp=cmd\tPrint command help, \"all\" for all of them\n");
Jens Axboecca73aa2007-04-04 11:09:19 +0200777 printf("\t--showcmd\tTurn a job file into command line options\n");
Aaron Carrolle592a062007-09-14 09:49:41 +0200778 printf("\t--eta=when\tWhen ETA estimate should be printed\n");
779 printf("\t \tMay be \"always\", \"never\" or \"auto\"\n");
Jens Axboeb4692822006-10-27 13:43:22 +0200780}
781
Jens Axboeee56ad52008-02-01 10:30:20 +0100782struct debug_level {
783 const char *name;
784 unsigned long mask;
785};
786
787struct debug_level debug_levels[] = {
788 { .name = "process", .mask = FD_PROCESS, },
789 { .name = "file", .mask = FD_PROCESS, },
790 { .name = "io", .mask = FD_IO, },
791 { .name = "mem", .mask = FD_MEM, },
792 { },
793};
794
795static void set_debug(const char *string)
796{
797 struct debug_level *dl;
798 char *p = (char *) string;
799 char *opt;
800 int i;
801
802 if (!strcmp(string, "?") || !strcmp(string, "help")) {
803 int i;
804
805 log_info("fio: dumping debug options:");
806 for (i = 0; debug_levels[i].name; i++) {
807 dl = &debug_levels[i];
808 log_info("%s,", dl->name);
809 }
810 log_info("\n");
811 return;
812 }
813
814 while ((opt = strsep(&p, ",")) != NULL) {
815 int found = 0;
816
817 for (i = 0; debug_levels[i].name; i++) {
818 dl = &debug_levels[i];
819 if (!strncmp(opt, dl->name, strlen(opt))) {
820 log_info("fio: set debug option %s\n", opt);
821 found = 1;
822 fio_debug |= dl->mask;
823 break;
824 }
825 }
826
827 if (!found)
828 log_err("fio: debug mask %s not found\n", opt);
829 }
830}
831
Jens Axboe214e1ec2007-03-15 10:48:13 +0100832static int parse_cmd_line(int argc, char *argv[])
833{
834 struct thread_data *td = NULL;
835 int c, ini_idx = 0, lidx, ret, dont_add_job = 0;
836
837 while ((c = getopt_long_only(argc, argv, "", long_options, &lidx)) != -1) {
838 switch (c) {
839 case 't':
840 def_timeout = atoi(optarg);
841 break;
842 case 'l':
843 write_lat_log = 1;
844 break;
845 case 'w':
846 write_bw_log = 1;
847 break;
848 case 'o':
849 f_out = fopen(optarg, "w+");
850 if (!f_out) {
851 perror("fopen output");
852 exit(1);
853 }
854 f_err = f_out;
855 break;
856 case 'm':
857 terse_output = 1;
858 break;
859 case 'h':
Jens Axboe45378b32007-12-19 13:54:38 +0100860 usage(argv[0]);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100861 exit(0);
862 case 'c':
863 exit(fio_show_option_help(optarg));
Jens Axboecca73aa2007-04-04 11:09:19 +0200864 case 's':
865 dump_cmdline = 1;
866 break;
Jens Axboe724e4432007-09-11 20:02:05 +0200867 case 'r':
868 read_only = 1;
869 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100870 case 'v':
871 printf("%s\n", fio_version_string);
872 exit(0);
Aaron Carrolle592a062007-09-14 09:49:41 +0200873 case 'e':
874 if (!strcmp("always", optarg))
875 eta_print = FIO_ETA_ALWAYS;
876 else if (!strcmp("never", optarg))
877 eta_print = FIO_ETA_NEVER;
878 break;
Jens Axboeee56ad52008-02-01 10:30:20 +0100879 case 'd':
880 set_debug(optarg);
881 break;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100882 case FIO_GETOPT_JOB: {
883 const char *opt = long_options[lidx].name;
884 char *val = optarg;
885
886 if (!strncmp(opt, "name", 4) && td) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100887 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100888 if (ret) {
889 put_job(td);
890 return 0;
891 }
892 td = NULL;
893 }
894 if (!td) {
Jens Axboe3106f222007-04-19 09:53:28 +0200895 int global = 0;
896
897 if (strncmp(opt, "name", 4) ||
898 !strncmp(val, "global", 6))
899 global = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100900
901 td = get_new_job(global, &def_thread);
902 if (!td)
903 return 0;
904 }
905
906 ret = fio_cmd_option_parse(td, opt, val);
907 if (ret)
908 dont_add_job = 1;
909 break;
910 }
911 default:
912 break;
913 }
914 }
915
916 if (td) {
917 if (dont_add_job)
918 put_job(td);
919 else {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100920 ret = add_job(td, td->o.name ?: "fio", 0);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100921 if (ret)
922 put_job(td);
923 }
924 }
925
926 while (optind < argc) {
927 ini_idx++;
928 ini_file = realloc(ini_file, ini_idx * sizeof(char *));
929 ini_file[ini_idx - 1] = strdup(argv[optind]);
930 optind++;
931 }
932
933 return ini_idx;
934}
935
936
Jens Axboeebac4652005-12-08 15:25:21 +0100937int parse_options(int argc, char *argv[])
938{
Jens Axboe972cfd22006-06-09 11:08:56 +0200939 int job_files, i;
940
Jens Axboeb4692822006-10-27 13:43:22 +0200941 f_out = stdout;
942 f_err = stderr;
943
Jens Axboe214e1ec2007-03-15 10:48:13 +0100944 fio_options_dup_and_init(long_options);
Jens Axboeb4692822006-10-27 13:43:22 +0200945
Jens Axboeebac4652005-12-08 15:25:21 +0100946 if (setup_thread_area())
947 return 1;
948 if (fill_def_thread())
949 return 1;
950
Jens Axboe972cfd22006-06-09 11:08:56 +0200951 job_files = parse_cmd_line(argc, argv);
Jens Axboeebac4652005-12-08 15:25:21 +0100952
Jens Axboe972cfd22006-06-09 11:08:56 +0200953 for (i = 0; i < job_files; i++) {
954 if (fill_def_thread())
955 return 1;
Jens Axboe0c7e37a2006-06-13 14:53:38 +0200956 if (parse_jobs_ini(ini_file[i], i))
Jens Axboe972cfd22006-06-09 11:08:56 +0200957 return 1;
Jens Axboe88c6ed82006-06-09 11:28:10 +0200958 free(ini_file[i]);
Jens Axboe972cfd22006-06-09 11:08:56 +0200959 }
Jens Axboeebac4652005-12-08 15:25:21 +0100960
Jens Axboe88c6ed82006-06-09 11:28:10 +0200961 free(ini_file);
Jens Axboed23bb322007-03-23 15:57:56 +0100962 options_mem_free(&def_thread);
Jens Axboeb4692822006-10-27 13:43:22 +0200963
964 if (!thread_number) {
Jens Axboecca73aa2007-04-04 11:09:19 +0200965 if (dump_cmdline)
966 return 0;
967
Jens Axboeb4692822006-10-27 13:43:22 +0200968 log_err("No jobs defined(s)\n");
Jens Axboe45378b32007-12-19 13:54:38 +0100969 usage(argv[0]);
Jens Axboeb4692822006-10-27 13:43:22 +0200970 return 1;
971 }
972
Jens Axboeebac4652005-12-08 15:25:21 +0100973 return 0;
974}