blob: 3d32c8e05fbd68504a80721b685283f13a47bd08 [file] [log] [blame]
Jens Axboe214e1ec2007-03-15 10:48:13 +01001#include <stdio.h>
2#include <stdlib.h>
3#include <unistd.h>
4#include <ctype.h>
5#include <string.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +01006#include <assert.h>
Jens Axboe921c7662008-03-26 09:17:55 +01007#include <libgen.h>
Jens Axboe5921e802008-05-30 15:02:38 +02008#include <fcntl.h>
9#include <sys/types.h>
10#include <sys/stat.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +010011
12#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020013#include "verify.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010014#include "parse.h"
Jens Axboeeef32352008-06-02 13:31:26 +020015#include "lib/fls.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010016#include "options.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010017
Jens Axboe5d7c5d32010-06-21 15:08:17 +020018#include "crc/crc32c.h"
19
Jens Axboe214e1ec2007-03-15 10:48:13 +010020/*
21 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
22 */
23static char *get_opt_postfix(const char *str)
24{
25 char *p = strstr(str, ":");
26
27 if (!p)
28 return NULL;
29
30 p++;
31 strip_blank_front(&p);
32 strip_blank_end(p);
33 return strdup(p);
34}
35
Radha Ramachandran0e92f872009-10-27 20:14:27 +010036static int converthexchartoint(char a)
37{
38 int base;
39
40 switch(a) {
41 case '0'...'9':
42 base = '0';
43 break;
44 case 'A'...'F':
45 base = 'A' - 10;
46 break;
47 case 'a'...'f':
48 base = 'a' - 10;
49 break;
50 default:
51 base = 0;
52 }
53 return (a - base);
54}
55
Jens Axboe564ca972007-12-14 12:21:19 +010056static int bs_cmp(const void *p1, const void *p2)
57{
58 const struct bssplit *bsp1 = p1;
59 const struct bssplit *bsp2 = p2;
60
61 return bsp1->perc < bsp2->perc;
62}
63
Jens Axboe720e84a2009-04-21 08:29:55 +020064static int bssplit_ddir(struct thread_data *td, int ddir, char *str)
Jens Axboe564ca972007-12-14 12:21:19 +010065{
Jens Axboe720e84a2009-04-21 08:29:55 +020066 struct bssplit *bssplit;
Jens Axboe564ca972007-12-14 12:21:19 +010067 unsigned int i, perc, perc_missing;
68 unsigned int max_bs, min_bs;
69 long long val;
Jens Axboe720e84a2009-04-21 08:29:55 +020070 char *fname;
Jens Axboe564ca972007-12-14 12:21:19 +010071
Jens Axboe720e84a2009-04-21 08:29:55 +020072 td->o.bssplit_nr[ddir] = 4;
73 bssplit = malloc(4 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010074
75 i = 0;
76 max_bs = 0;
77 min_bs = -1;
78 while ((fname = strsep(&str, ":")) != NULL) {
79 char *perc_str;
80
81 if (!strlen(fname))
82 break;
83
84 /*
85 * grow struct buffer, if needed
86 */
Jens Axboe720e84a2009-04-21 08:29:55 +020087 if (i == td->o.bssplit_nr[ddir]) {
88 td->o.bssplit_nr[ddir] <<= 1;
89 bssplit = realloc(bssplit, td->o.bssplit_nr[ddir]
Jens Axboe5ec10ea2008-03-06 15:42:00 +010090 * sizeof(struct bssplit));
Jens Axboe564ca972007-12-14 12:21:19 +010091 }
92
93 perc_str = strstr(fname, "/");
94 if (perc_str) {
95 *perc_str = '\0';
96 perc_str++;
97 perc = atoi(perc_str);
98 if (perc > 100)
99 perc = 100;
100 else if (!perc)
101 perc = -1;
102 } else
103 perc = -1;
104
Kenneth Watersdf9cf922009-10-15 07:08:48 +0200105 if (str_to_decimal(fname, &val, 1, td)) {
Jens Axboe564ca972007-12-14 12:21:19 +0100106 log_err("fio: bssplit conversion failed\n");
107 free(td->o.bssplit);
108 return 1;
109 }
110
111 if (val > max_bs)
112 max_bs = val;
113 if (val < min_bs)
114 min_bs = val;
115
Jens Axboe720e84a2009-04-21 08:29:55 +0200116 bssplit[i].bs = val;
117 bssplit[i].perc = perc;
Jens Axboe564ca972007-12-14 12:21:19 +0100118 i++;
119 }
120
Jens Axboe720e84a2009-04-21 08:29:55 +0200121 td->o.bssplit_nr[ddir] = i;
Jens Axboe564ca972007-12-14 12:21:19 +0100122
123 /*
124 * Now check if the percentages add up, and how much is missing
125 */
126 perc = perc_missing = 0;
Jens Axboe720e84a2009-04-21 08:29:55 +0200127 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
128 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100129
130 if (bsp->perc == (unsigned char) -1)
131 perc_missing++;
132 else
133 perc += bsp->perc;
134 }
135
136 if (perc > 100) {
137 log_err("fio: bssplit percentages add to more than 100%%\n");
Jens Axboe720e84a2009-04-21 08:29:55 +0200138 free(bssplit);
Jens Axboe564ca972007-12-14 12:21:19 +0100139 return 1;
140 }
141 /*
142 * If values didn't have a percentage set, divide the remains between
143 * them.
144 */
145 if (perc_missing) {
Jens Axboe720e84a2009-04-21 08:29:55 +0200146 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
147 struct bssplit *bsp = &bssplit[i];
Jens Axboe564ca972007-12-14 12:21:19 +0100148
149 if (bsp->perc == (unsigned char) -1)
150 bsp->perc = (100 - perc) / perc_missing;
151 }
152 }
153
Jens Axboe720e84a2009-04-21 08:29:55 +0200154 td->o.min_bs[ddir] = min_bs;
155 td->o.max_bs[ddir] = max_bs;
Jens Axboe564ca972007-12-14 12:21:19 +0100156
157 /*
158 * now sort based on percentages, for ease of lookup
159 */
Jens Axboe720e84a2009-04-21 08:29:55 +0200160 qsort(bssplit, td->o.bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
161 td->o.bssplit[ddir] = bssplit;
162 return 0;
163
164}
165
166static int str_bssplit_cb(void *data, const char *input)
167{
168 struct thread_data *td = data;
169 char *str, *p, *odir;
170 int ret = 0;
171
172 p = str = strdup(input);
173
174 strip_blank_front(&str);
175 strip_blank_end(str);
176
177 odir = strchr(str, ',');
178 if (odir) {
179 ret = bssplit_ddir(td, DDIR_WRITE, odir + 1);
180 if (!ret) {
181 *odir = '\0';
182 ret = bssplit_ddir(td, DDIR_READ, str);
183 }
184 } else {
185 char *op;
186
187 op = strdup(str);
188
189 ret = bssplit_ddir(td, DDIR_READ, str);
190 if (!ret)
191 ret = bssplit_ddir(td, DDIR_WRITE, op);
192
193 free(op);
194 }
Jens Axboe564ca972007-12-14 12:21:19 +0100195
196 free(p);
Jens Axboe720e84a2009-04-21 08:29:55 +0200197 return ret;
Jens Axboe564ca972007-12-14 12:21:19 +0100198}
199
Jens Axboe211097b2007-03-22 18:56:45 +0100200static int str_rw_cb(void *data, const char *str)
201{
202 struct thread_data *td = data;
203 char *nr = get_opt_postfix(str);
204
Jens Axboe5736c102010-07-20 12:03:25 -0600205 td->o.ddir_seq_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100206 if (nr) {
Jens Axboe5736c102010-07-20 12:03:25 -0600207 td->o.ddir_seq_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100208 free(nr);
209 }
Jens Axboe211097b2007-03-22 18:56:45 +0100210
Jens Axboe211097b2007-03-22 18:56:45 +0100211 return 0;
212}
213
Jens Axboe214e1ec2007-03-15 10:48:13 +0100214static int str_mem_cb(void *data, const char *mem)
215{
216 struct thread_data *td = data;
217
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100218 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100219 td->mmapfile = get_opt_postfix(mem);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100220 if (td->o.mem_type == MEM_MMAPHUGE && !td->mmapfile) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100221 log_err("fio: mmaphuge:/path/to/file\n");
222 return 1;
223 }
224 }
225
226 return 0;
227}
228
Jens Axboe5d7c5d32010-06-21 15:08:17 +0200229static int str_verify_cb(void *data, const char *mem)
230{
231 struct thread_data *td = data;
232
233 if (td->o.verify != VERIFY_CRC32C_INTEL)
234 return 0;
235
236 if (!crc32c_intel_works()) {
237 log_info("fio: System does not support hw accelerated crc32c. Falling back to sw crc32c.\n");
238 td->o.verify = VERIFY_CRC32C;
239 }
240
241 return 0;
242}
243
Jens Axboec223da82010-03-24 13:23:53 +0100244static int fio_clock_source_cb(void *data, const char *str)
245{
246 struct thread_data *td = data;
247
248 fio_clock_source = td->o.clocksource;
249 fio_time_init();
250 return 0;
251}
252
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400253static int str_lockmem_cb(void fio_unused *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100254{
255 mlock_size = *val;
256 return 0;
257}
258
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400259static int str_rwmix_read_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200260{
261 struct thread_data *td = data;
262
263 td->o.rwmix[DDIR_READ] = *val;
264 td->o.rwmix[DDIR_WRITE] = 100 - *val;
265 return 0;
266}
267
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400268static int str_rwmix_write_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200269{
270 struct thread_data *td = data;
271
272 td->o.rwmix[DDIR_WRITE] = *val;
273 td->o.rwmix[DDIR_READ] = 100 - *val;
274 return 0;
275}
276
Jens Axboe214e1ec2007-03-15 10:48:13 +0100277#ifdef FIO_HAVE_IOPRIO
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400278static int str_prioclass_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100279{
280 struct thread_data *td = data;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200281 unsigned short mask;
282
283 /*
284 * mask off old class bits, str_prio_cb() may have set a default class
285 */
286 mask = (1 << IOPRIO_CLASS_SHIFT) - 1;
287 td->ioprio &= mask;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100288
289 td->ioprio |= *val << IOPRIO_CLASS_SHIFT;
Jens Axboeac684782007-11-08 08:29:07 +0100290 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100291 return 0;
292}
293
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400294static int str_prio_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100295{
296 struct thread_data *td = data;
297
298 td->ioprio |= *val;
Jens Axboe6cefbe32007-04-18 12:46:56 +0200299
300 /*
301 * If no class is set, assume BE
302 */
303 if ((td->ioprio >> IOPRIO_CLASS_SHIFT) == 0)
304 td->ioprio |= IOPRIO_CLASS_BE << IOPRIO_CLASS_SHIFT;
305
Jens Axboeac684782007-11-08 08:29:07 +0100306 td->ioprio_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100307 return 0;
308}
309#endif
310
311static int str_exitall_cb(void)
312{
313 exitall_on_terminate = 1;
314 return 0;
315}
316
Jens Axboe214e1ec2007-03-15 10:48:13 +0100317#ifdef FIO_HAVE_CPU_AFFINITY
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400318static int str_cpumask_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100319{
320 struct thread_data *td = data;
Jens Axboed2e268b2007-06-15 10:33:49 +0200321 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100322 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100323 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100324
Jens Axboed2ce18b2008-12-12 20:51:40 +0100325 ret = fio_cpuset_init(&td->o.cpumask);
326 if (ret < 0) {
327 log_err("fio: cpuset_init failed\n");
328 td_verror(td, ret, "fio_cpuset_init");
329 return 1;
330 }
331
Jens Axboeb03daaf2008-12-08 20:31:43 +0100332 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
Jens Axboed2e268b2007-06-15 10:33:49 +0200333
Jens Axboe62a72732008-12-08 11:37:01 +0100334 for (i = 0; i < sizeof(int) * 8; i++) {
335 if ((1 << i) & *val) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100336 if (i > max_cpu) {
337 log_err("fio: CPU %d too large (max=%ld)\n", i,
338 max_cpu);
339 return 1;
340 }
Jens Axboe62a72732008-12-08 11:37:01 +0100341 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100342 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100343 }
344 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200345
Jens Axboe375b2692007-05-22 09:13:02 +0200346 td->o.cpumask_set = 1;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100347 return 0;
348}
349
Jens Axboee8462bd2009-07-06 12:59:04 +0200350static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
351 const char *input)
Jens Axboed2e268b2007-06-15 10:33:49 +0200352{
Jens Axboed2e268b2007-06-15 10:33:49 +0200353 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100354 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100355 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200356
Jens Axboee8462bd2009-07-06 12:59:04 +0200357 ret = fio_cpuset_init(mask);
Jens Axboed2ce18b2008-12-12 20:51:40 +0100358 if (ret < 0) {
359 log_err("fio: cpuset_init failed\n");
360 td_verror(td, ret, "fio_cpuset_init");
361 return 1;
362 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200363
364 p = str = strdup(input);
365
366 strip_blank_front(&str);
367 strip_blank_end(str);
368
Jens Axboeb03daaf2008-12-08 20:31:43 +0100369 max_cpu = sysconf(_SC_NPROCESSORS_ONLN);
370
Jens Axboed2e268b2007-06-15 10:33:49 +0200371 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100372 char *str2, *cpu2;
373 int icpu, icpu2;
374
Jens Axboed2e268b2007-06-15 10:33:49 +0200375 if (!strlen(cpu))
376 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100377
378 str2 = cpu;
379 icpu2 = -1;
380 while ((cpu2 = strsep(&str2, "-")) != NULL) {
381 if (!strlen(cpu2))
382 break;
383
384 icpu2 = atoi(cpu2);
385 }
386
387 icpu = atoi(cpu);
388 if (icpu2 == -1)
389 icpu2 = icpu;
390 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100391 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100392 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100393 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100394 ret = 1;
395 break;
396 }
Jens Axboeb03daaf2008-12-08 20:31:43 +0100397 if (icpu > max_cpu) {
398 log_err("fio: CPU %d too large (max=%ld)\n",
399 icpu, max_cpu);
400 ret = 1;
401 break;
402 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200403
Jens Axboe62a72732008-12-08 11:37:01 +0100404 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboee8462bd2009-07-06 12:59:04 +0200405 fio_cpu_set(mask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100406 icpu++;
407 }
Jens Axboe19608d62008-12-08 15:03:12 +0100408 if (ret)
409 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200410 }
411
412 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100413 if (!ret)
414 td->o.cpumask_set = 1;
415 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200416}
Jens Axboee8462bd2009-07-06 12:59:04 +0200417
418static int str_cpus_allowed_cb(void *data, const char *input)
419{
420 struct thread_data *td = data;
421 int ret;
422
423 ret = set_cpus_allowed(td, &td->o.cpumask, input);
424 if (!ret)
425 td->o.cpumask_set = 1;
426
427 return ret;
428}
429
430static int str_verify_cpus_allowed_cb(void *data, const char *input)
431{
432 struct thread_data *td = data;
433 int ret;
434
435 ret = set_cpus_allowed(td, &td->o.verify_cpumask, input);
436 if (!ret)
437 td->o.verify_cpumask_set = 1;
438
439 return ret;
440}
Jens Axboed2e268b2007-06-15 10:33:49 +0200441#endif
442
Jens Axboe214e1ec2007-03-15 10:48:13 +0100443static int str_fst_cb(void *data, const char *str)
444{
445 struct thread_data *td = data;
446 char *nr = get_opt_postfix(str);
447
448 td->file_service_nr = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100449 if (nr) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100450 td->file_service_nr = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100451 free(nr);
452 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100453
454 return 0;
455}
456
Jens Axboe3ae06372010-03-19 19:17:15 +0100457#ifdef FIO_HAVE_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +0100458static int str_sfr_cb(void *data, const char *str)
459{
460 struct thread_data *td = data;
461 char *nr = get_opt_postfix(str);
462
463 td->sync_file_range_nr = 1;
464 if (nr) {
465 td->sync_file_range_nr = atoi(nr);
466 free(nr);
467 }
468
469 return 0;
470}
Jens Axboe3ae06372010-03-19 19:17:15 +0100471#endif
Jens Axboe44f29692010-03-09 20:09:44 +0100472
Jens Axboe921c7662008-03-26 09:17:55 +0100473static int check_dir(struct thread_data *td, char *fname)
474{
475 char file[PATH_MAX], *dir;
Jens Axboebc838912008-04-07 09:00:54 +0200476 int elen = 0;
Jens Axboe921c7662008-03-26 09:17:55 +0100477
Jens Axboebc838912008-04-07 09:00:54 +0200478 if (td->o.directory) {
479 strcpy(file, td->o.directory);
Jens Axboefcef0b32008-05-26 14:53:24 +0200480 strcat(file, "/");
Jens Axboebc838912008-04-07 09:00:54 +0200481 elen = strlen(file);
482 }
483
Jens Axboefcef0b32008-05-26 14:53:24 +0200484 sprintf(file + elen, "%s", fname);
Jens Axboe921c7662008-03-26 09:17:55 +0100485 dir = dirname(file);
486
Jens Axboefcef0b32008-05-26 14:53:24 +0200487#if 0
488 {
489 struct stat sb;
490 /*
491 * We can't do this on FIO_DISKLESSIO engines. The engine isn't loaded
492 * yet, so we can't do this check right here...
493 */
Jens Axboe921c7662008-03-26 09:17:55 +0100494 if (lstat(dir, &sb) < 0) {
495 int ret = errno;
496
497 log_err("fio: %s is not a directory\n", dir);
498 td_verror(td, ret, "lstat");
499 return 1;
500 }
501
502 if (!S_ISDIR(sb.st_mode)) {
503 log_err("fio: %s is not a directory\n", dir);
504 return 1;
505 }
Jens Axboefcef0b32008-05-26 14:53:24 +0200506 }
507#endif
Jens Axboe921c7662008-03-26 09:17:55 +0100508
509 return 0;
510}
511
Jens Axboe8e827d32009-08-04 09:51:48 +0200512/*
513 * Return next file in the string. Files are separated with ':'. If the ':'
514 * is escaped with a '\', then that ':' is part of the filename and does not
515 * indicate a new file.
516 */
517static char *get_next_file_name(char **ptr)
518{
519 char *str = *ptr;
520 char *p, *start;
521
522 if (!str || !strlen(str))
523 return NULL;
524
525 start = str;
526 do {
527 /*
528 * No colon, we are done
529 */
530 p = strchr(str, ':');
531 if (!p) {
532 *ptr = NULL;
533 break;
534 }
535
536 /*
537 * We got a colon, but it's the first character. Skip and
538 * continue
539 */
540 if (p == start) {
541 str = ++start;
542 continue;
543 }
544
545 if (*(p - 1) != '\\') {
546 *p = '\0';
547 *ptr = p + 1;
548 break;
549 }
550
551 memmove(p - 1, p, strlen(p) + 1);
552 str = p;
553 } while (1);
554
555 return start;
556}
557
Jens Axboe214e1ec2007-03-15 10:48:13 +0100558static int str_filename_cb(void *data, const char *input)
559{
560 struct thread_data *td = data;
561 char *fname, *str, *p;
562
563 p = str = strdup(input);
564
565 strip_blank_front(&str);
566 strip_blank_end(str);
567
568 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100569 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100570
Jens Axboe8e827d32009-08-04 09:51:48 +0200571 while ((fname = get_next_file_name(&str)) != NULL) {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100572 if (!strlen(fname))
573 break;
Jens Axboe921c7662008-03-26 09:17:55 +0100574 if (check_dir(td, fname)) {
575 free(p);
576 return 1;
577 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100578 add_file(td, fname);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100579 td->o.nr_files++;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100580 }
581
582 free(p);
583 return 0;
584}
585
586static int str_directory_cb(void *data, const char fio_unused *str)
587{
588 struct thread_data *td = data;
589 struct stat sb;
590
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100591 if (lstat(td->o.directory, &sb) < 0) {
Jens Axboe921c7662008-03-26 09:17:55 +0100592 int ret = errno;
593
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100594 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe921c7662008-03-26 09:17:55 +0100595 td_verror(td, ret, "lstat");
Jens Axboe214e1ec2007-03-15 10:48:13 +0100596 return 1;
597 }
598 if (!S_ISDIR(sb.st_mode)) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100599 log_err("fio: %s is not a directory\n", td->o.directory);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100600 return 1;
601 }
602
603 return 0;
604}
605
606static int str_opendir_cb(void *data, const char fio_unused *str)
607{
608 struct thread_data *td = data;
609
610 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100611 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100612
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100613 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100614}
615
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400616static int str_verify_offset_cb(void *data, unsigned long long *off)
Shawn Lewis546a9142007-07-28 21:11:37 +0200617{
618 struct thread_data *td = data;
Jens Axboea59e1702007-07-30 08:53:27 +0200619
Shawn Lewis546a9142007-07-28 21:11:37 +0200620 if (*off && *off < sizeof(struct verify_header)) {
Jens Axboea59e1702007-07-30 08:53:27 +0200621 log_err("fio: verify_offset too small\n");
Shawn Lewis546a9142007-07-28 21:11:37 +0200622 return 1;
623 }
Jens Axboea59e1702007-07-30 08:53:27 +0200624
625 td->o.verify_offset = *off;
Shawn Lewis546a9142007-07-28 21:11:37 +0200626 return 0;
627}
628
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100629static int str_verify_pattern_cb(void *data, const char *input)
Jens Axboe90059d62007-07-30 09:33:12 +0200630{
631 struct thread_data *td = data;
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100632 long off;
633 int i = 0, j = 0, len, k, base = 10;
634 char* loc1, * loc2;
Jens Axboe90059d62007-07-30 09:33:12 +0200635
Radha Ramachandran0e92f872009-10-27 20:14:27 +0100636 loc1 = strstr(input, "0x");
637 loc2 = strstr(input, "0X");
638 if (loc1 || loc2)
639 base = 16;
640 off = strtol(input, NULL, base);
641 if (off != LONG_MAX || errno != ERANGE) {
642 while (off) {
643 td->o.verify_pattern[i] = off & 0xff;
644 off >>= 8;
645 i++;
646 }
647 } else {
648 len = strlen(input);
649 k = len - 1;
650 if (base == 16) {
651 if (loc1)
652 j = loc1 - input + 2;
653 else
654 j = loc2 - input + 2;
655 } else
656 return 1;
657 if (len - j < MAX_PATTERN_SIZE * 2) {
658 while (k >= j) {
659 off = converthexchartoint(input[k--]);
660 if (k >= j)
661 off += (converthexchartoint(input[k--])
662 * 16);
663 td->o.verify_pattern[i++] = (char) off;
664 }
665 }
666 }
667 td->o.verify_pattern_bytes = i;
Jens Axboe90059d62007-07-30 09:33:12 +0200668 return 0;
669}
Jens Axboe214e1ec2007-03-15 10:48:13 +0100670
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100671static int str_lockfile_cb(void *data, const char *str)
672{
673 struct thread_data *td = data;
674 char *nr = get_opt_postfix(str);
675
676 td->o.lockfile_batch = 1;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100677 if (nr) {
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100678 td->o.lockfile_batch = atoi(nr);
Jens Axboe182ec6e2008-11-14 13:06:06 +0100679 free(nr);
680 }
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100681
682 return 0;
683}
684
Jens Axboee3cedca2008-11-19 19:57:52 +0100685static int str_write_bw_log_cb(void *data, const char *str)
686{
687 struct thread_data *td = data;
688
689 if (str)
690 td->o.bw_log_file = strdup(str);
691
692 td->o.write_bw_log = 1;
693 return 0;
694}
695
696static int str_write_lat_log_cb(void *data, const char *str)
697{
698 struct thread_data *td = data;
699
700 if (str)
701 td->o.lat_log_file = strdup(str);
702
703 td->o.write_lat_log = 1;
704 return 0;
705}
706
Jens Axboe993bf482008-11-14 13:04:53 +0100707static int str_gtod_reduce_cb(void *data, int *il)
708{
709 struct thread_data *td = data;
710 int val = *il;
711
Jens Axboe02af0982010-06-24 09:59:34 +0200712 td->o.disable_lat = !!val;
Jens Axboe993bf482008-11-14 13:04:53 +0100713 td->o.disable_clat = !!val;
714 td->o.disable_slat = !!val;
715 td->o.disable_bw = !!val;
716 if (val)
717 td->tv_cache_mask = 63;
718
719 return 0;
720}
721
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400722static int str_gtod_cpu_cb(void *data, long long *il)
Jens Axboebe4ecfd2008-12-08 14:10:52 +0100723{
724 struct thread_data *td = data;
725 int val = *il;
726
727 td->o.gtod_cpu = val;
728 td->o.gtod_offload = 1;
729 return 0;
730}
731
Jens Axboe896cac22009-07-01 10:38:35 +0200732static int rw_verify(struct fio_option *o, void *data)
733{
734 struct thread_data *td = data;
735
736 if (read_only && td_write(td)) {
737 log_err("fio: job <%s> has write bit set, but fio is in"
738 " read-only mode\n", td->o.name);
739 return 1;
740 }
741
742 return 0;
743}
744
Jens Axboe276ca4f2009-07-01 10:43:05 +0200745static int gtod_cpu_verify(struct fio_option *o, void *data)
Jens Axboe29d43ff2009-07-01 10:42:18 +0200746{
Jens Axboe276ca4f2009-07-01 10:43:05 +0200747#ifndef FIO_HAVE_CPU_AFFINITY
Jens Axboe29d43ff2009-07-01 10:42:18 +0200748 struct thread_data *td = data;
749
Jens Axboe29d43ff2009-07-01 10:42:18 +0200750 if (td->o.gtod_cpu) {
751 log_err("fio: platform must support CPU affinity for"
752 "gettimeofday() offloading\n");
753 return 1;
754 }
755#endif
756
757 return 0;
758}
759
Jens Axboe90fef2d2009-07-17 22:33:32 +0200760static int kb_base_verify(struct fio_option *o, void *data)
761{
762 struct thread_data *td = data;
763
764 if (td->o.kb_base != 1024 && td->o.kb_base != 1000) {
765 log_err("fio: kb_base set to nonsensical value: %u\n",
766 td->o.kb_base);
767 return 1;
768 }
769
770 return 0;
771}
772
Jens Axboe214e1ec2007-03-15 10:48:13 +0100773#define __stringify_1(x) #x
774#define __stringify(x) __stringify_1(x)
775
776/*
777 * Map of job/command line options
778 */
Jens Axboe07b32322010-03-05 09:48:44 +0100779static struct fio_option options[FIO_MAX_OPTS] = {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100780 {
781 .name = "description",
782 .type = FIO_OPT_STR_STORE,
783 .off1 = td_var_offset(description),
784 .help = "Text job description",
785 },
786 {
787 .name = "name",
788 .type = FIO_OPT_STR_STORE,
789 .off1 = td_var_offset(name),
790 .help = "Name of this job",
791 },
792 {
793 .name = "directory",
794 .type = FIO_OPT_STR_STORE,
795 .off1 = td_var_offset(directory),
796 .cb = str_directory_cb,
797 .help = "Directory to store files in",
798 },
799 {
800 .name = "filename",
801 .type = FIO_OPT_STR_STORE,
802 .off1 = td_var_offset(filename),
803 .cb = str_filename_cb,
Jens Axboef0d524b2009-04-27 08:00:48 +0200804 .prio = -1, /* must come after "directory" */
Jens Axboe214e1ec2007-03-15 10:48:13 +0100805 .help = "File(s) to use for the workload",
806 },
807 {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200808 .name = "kb_base",
809 .type = FIO_OPT_INT,
810 .off1 = td_var_offset(kb_base),
Jens Axboe90fef2d2009-07-17 22:33:32 +0200811 .verify = kb_base_verify,
Jens Axboea639f0b2009-07-18 08:25:35 +0200812 .prio = 1,
Jens Axboe90fef2d2009-07-17 22:33:32 +0200813 .def = "1024",
Jens Axboea639f0b2009-07-18 08:25:35 +0200814 .help = "How many bytes per KB for reporting (1000 or 1024)",
Jens Axboe90fef2d2009-07-17 22:33:32 +0200815 },
816 {
Jens Axboe29c13492008-03-01 19:25:20 +0100817 .name = "lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100818 .type = FIO_OPT_STR,
819 .cb = str_lockfile_cb,
820 .off1 = td_var_offset(file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +0100821 .help = "Lock file when doing IO to it",
822 .parent = "filename",
Jens Axboe4d4e80f2008-03-04 10:18:56 +0100823 .def = "none",
824 .posval = {
825 { .ival = "none",
826 .oval = FILE_LOCK_NONE,
827 .help = "No file locking",
828 },
829 { .ival = "exclusive",
830 .oval = FILE_LOCK_EXCLUSIVE,
831 .help = "Exclusive file lock",
832 },
833 {
834 .ival = "readwrite",
835 .oval = FILE_LOCK_READWRITE,
836 .help = "Read vs write lock",
837 },
838 },
Jens Axboe29c13492008-03-01 19:25:20 +0100839 },
840 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100841 .name = "opendir",
842 .type = FIO_OPT_STR_STORE,
843 .off1 = td_var_offset(opendir),
844 .cb = str_opendir_cb,
845 .help = "Recursively add files from this directory and down",
846 },
847 {
848 .name = "rw",
Jens Axboed3aad8f2007-03-15 14:12:05 +0100849 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100850 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +0100851 .cb = str_rw_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100852 .off1 = td_var_offset(td_ddir),
853 .help = "IO direction",
854 .def = "read",
Jens Axboe896cac22009-07-01 10:38:35 +0200855 .verify = rw_verify,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100856 .posval = {
857 { .ival = "read",
858 .oval = TD_DDIR_READ,
859 .help = "Sequential read",
860 },
861 { .ival = "write",
862 .oval = TD_DDIR_WRITE,
863 .help = "Sequential write",
864 },
865 { .ival = "randread",
866 .oval = TD_DDIR_RANDREAD,
867 .help = "Random read",
868 },
869 { .ival = "randwrite",
870 .oval = TD_DDIR_RANDWRITE,
871 .help = "Random write",
872 },
873 { .ival = "rw",
874 .oval = TD_DDIR_RW,
875 .help = "Sequential read and write mix",
876 },
877 { .ival = "randrw",
878 .oval = TD_DDIR_RANDRW,
879 .help = "Random read and write mix"
880 },
881 },
882 },
883 {
Jens Axboe38dad622010-07-20 14:46:00 -0600884 .name = "rw_sequencer",
885 .type = FIO_OPT_STR,
886 .off1 = td_var_offset(rw_seq),
887 .help = "IO offset generator modifier",
888 .def = "sequential",
889 .posval = {
890 { .ival = "sequential",
891 .oval = RW_SEQ_SEQ,
892 .help = "Generate sequential offsets",
893 },
894 { .ival = "identical",
895 .oval = RW_SEQ_IDENT,
896 .help = "Generate identical offsets",
897 },
898 },
899 },
900
901 {
Jens Axboe214e1ec2007-03-15 10:48:13 +0100902 .name = "ioengine",
903 .type = FIO_OPT_STR_STORE,
904 .off1 = td_var_offset(ioengine),
905 .help = "IO engine to use",
906 .def = "sync",
907 .posval = {
908 { .ival = "sync",
909 .help = "Use read/write",
910 },
gurudas paia31041e2007-10-23 15:12:30 +0200911 { .ival = "psync",
912 .help = "Use pread/pwrite",
913 },
Jens Axboe1d2af022008-02-04 10:59:07 +0100914 { .ival = "vsync",
915 .help = "Use readv/writev",
916 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100917#ifdef FIO_HAVE_LIBAIO
918 { .ival = "libaio",
919 .help = "Linux native asynchronous IO",
920 },
921#endif
922#ifdef FIO_HAVE_POSIXAIO
923 { .ival = "posixaio",
924 .help = "POSIX asynchronous IO",
925 },
926#endif
Jens Axboe417f0062008-06-02 11:59:30 +0200927#ifdef FIO_HAVE_SOLARISAIO
928 { .ival = "solarisaio",
929 .help = "Solaris native asynchronous IO",
930 },
931#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100932 { .ival = "mmap",
933 .help = "Memory mapped IO",
934 },
935#ifdef FIO_HAVE_SPLICE
936 { .ival = "splice",
937 .help = "splice/vmsplice based IO",
938 },
Jens Axboe9cce02e2007-06-22 15:42:21 +0200939 { .ival = "netsplice",
940 .help = "splice/vmsplice to/from the network",
941 },
Jens Axboe214e1ec2007-03-15 10:48:13 +0100942#endif
943#ifdef FIO_HAVE_SGIO
944 { .ival = "sg",
945 .help = "SCSI generic v3 IO",
946 },
947#endif
948 { .ival = "null",
949 .help = "Testing engine (no data transfer)",
950 },
951 { .ival = "net",
952 .help = "Network IO",
953 },
954#ifdef FIO_HAVE_SYSLET
955 { .ival = "syslet-rw",
956 .help = "syslet enabled async pread/pwrite IO",
957 },
958#endif
959 { .ival = "cpuio",
960 .help = "CPU cycler burner engine",
961 },
Jens Axboeb8c82a42007-03-21 08:48:26 +0100962#ifdef FIO_HAVE_GUASI
963 { .ival = "guasi",
964 .help = "GUASI IO engine",
965 },
966#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +0100967 { .ival = "external",
968 .help = "Load external engine (append name)",
969 },
970 },
971 },
972 {
973 .name = "iodepth",
974 .type = FIO_OPT_INT,
975 .off1 = td_var_offset(iodepth),
976 .help = "Amount of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +0100977 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +0100978 .def = "1",
979 },
980 {
981 .name = "iodepth_batch",
Jens Axboe49504212008-06-05 09:03:30 +0200982 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100983 .type = FIO_OPT_INT,
984 .off1 = td_var_offset(iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +0100985 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +0200986 .parent = "iodepth",
Jens Axboea2e6f8a2008-01-18 10:28:11 +0100987 .minval = 1,
988 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +0100989 },
990 {
Jens Axboe49504212008-06-05 09:03:30 +0200991 .name = "iodepth_batch_complete",
992 .type = FIO_OPT_INT,
993 .off1 = td_var_offset(iodepth_batch_complete),
Jens Axboed65db442009-01-16 19:15:33 +0100994 .help = "Number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +0200995 .parent = "iodepth",
996 .minval = 0,
997 .def = "1",
998 },
999 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001000 .name = "iodepth_low",
1001 .type = FIO_OPT_INT,
1002 .off1 = td_var_offset(iodepth_low),
1003 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +02001004 .parent = "iodepth",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001005 },
1006 {
1007 .name = "size",
1008 .type = FIO_OPT_STR_VAL,
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001009 .off1 = td_var_offset(size),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001010 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001011 .help = "Total size of device or files",
1012 },
1013 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001014 .name = "fill_device",
1015 .type = FIO_OPT_BOOL,
1016 .off1 = td_var_offset(fill_device),
1017 .help = "Write until an ENOSPC error occurs",
1018 .def = "0",
1019 },
1020 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001021 .name = "filesize",
1022 .type = FIO_OPT_STR_VAL,
1023 .off1 = td_var_offset(file_size_low),
1024 .off2 = td_var_offset(file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001025 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001026 .help = "Size of individual files",
1027 },
1028 {
Jens Axboe67a10002007-07-31 23:12:16 +02001029 .name = "offset",
1030 .alias = "fileoffset",
1031 .type = FIO_OPT_STR_VAL,
1032 .off1 = td_var_offset(start_offset),
1033 .help = "Start IO from this offset",
1034 .def = "0",
1035 },
1036 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001037 .name = "bs",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001038 .alias = "blocksize",
Jens Axboee01b22b2009-06-09 15:43:25 +02001039 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001040 .off1 = td_var_offset(bs[DDIR_READ]),
1041 .off2 = td_var_offset(bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001042 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001043 .help = "Block size unit",
1044 .def = "4k",
Jens Axboe67a10002007-07-31 23:12:16 +02001045 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001046 },
1047 {
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001048 .name = "ba",
1049 .alias = "blockalign",
Jens Axboee01b22b2009-06-09 15:43:25 +02001050 .type = FIO_OPT_INT,
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001051 .off1 = td_var_offset(ba[DDIR_READ]),
1052 .off2 = td_var_offset(ba[DDIR_WRITE]),
1053 .minval = 1,
1054 .help = "IO block offset alignment",
1055 .parent = "rw",
1056 },
1057 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001058 .name = "bsrange",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001059 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001060 .type = FIO_OPT_RANGE,
1061 .off1 = td_var_offset(min_bs[DDIR_READ]),
1062 .off2 = td_var_offset(max_bs[DDIR_READ]),
1063 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1064 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001065 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001066 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +02001067 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001068 },
1069 {
Jens Axboe564ca972007-12-14 12:21:19 +01001070 .name = "bssplit",
1071 .type = FIO_OPT_STR,
1072 .cb = str_bssplit_cb,
1073 .help = "Set a specific mix of block sizes",
1074 .parent = "rw",
1075 },
1076 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001077 .name = "bs_unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001078 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001079 .type = FIO_OPT_STR_SET,
1080 .off1 = td_var_offset(bs_unaligned),
1081 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +02001082 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001083 },
1084 {
1085 .name = "randrepeat",
1086 .type = FIO_OPT_BOOL,
1087 .off1 = td_var_offset(rand_repeatable),
1088 .help = "Use repeatable random IO pattern",
1089 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +02001090 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001091 },
1092 {
1093 .name = "norandommap",
1094 .type = FIO_OPT_STR_SET,
1095 .off1 = td_var_offset(norandommap),
1096 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +02001097 .parent = "rw",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001098 },
1099 {
Jens Axboe2b386d22008-03-26 10:32:57 +01001100 .name = "softrandommap",
1101 .type = FIO_OPT_BOOL,
1102 .off1 = td_var_offset(softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001103 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +01001104 .parent = "norandommap",
1105 .def = "0",
1106 },
1107 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001108 .name = "nrfiles",
1109 .type = FIO_OPT_INT,
1110 .off1 = td_var_offset(nr_files),
1111 .help = "Split job workload between this number of files",
1112 .def = "1",
1113 },
1114 {
1115 .name = "openfiles",
1116 .type = FIO_OPT_INT,
1117 .off1 = td_var_offset(open_files),
1118 .help = "Number of files to keep open at the same time",
1119 },
1120 {
1121 .name = "file_service_type",
1122 .type = FIO_OPT_STR,
1123 .cb = str_fst_cb,
1124 .off1 = td_var_offset(file_service_type),
1125 .help = "How to select which file to service next",
1126 .def = "roundrobin",
1127 .posval = {
1128 { .ival = "random",
1129 .oval = FIO_FSERVICE_RANDOM,
1130 .help = "Choose a file at random",
1131 },
1132 { .ival = "roundrobin",
1133 .oval = FIO_FSERVICE_RR,
1134 .help = "Round robin select files",
1135 },
Jens Axboea086c252009-03-04 08:27:37 +01001136 { .ival = "sequential",
1137 .oval = FIO_FSERVICE_SEQ,
1138 .help = "Finish one file before moving to the next",
1139 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001140 },
Jens Axboe67a10002007-07-31 23:12:16 +02001141 .parent = "nrfiles",
1142 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01001143#ifdef FIO_HAVE_FALLOCATE
1144 {
1145 .name = "fallocate",
1146 .type = FIO_OPT_BOOL,
1147 .off1 = td_var_offset(fallocate),
1148 .help = "Use fallocate() when laying out files",
1149 .def = "1",
1150 },
1151#endif
Jens Axboe67a10002007-07-31 23:12:16 +02001152 {
1153 .name = "fadvise_hint",
1154 .type = FIO_OPT_BOOL,
1155 .off1 = td_var_offset(fadvise_hint),
1156 .help = "Use fadvise() to advise the kernel on IO pattern",
1157 .def = "1",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001158 },
1159 {
1160 .name = "fsync",
1161 .type = FIO_OPT_INT,
1162 .off1 = td_var_offset(fsync_blocks),
1163 .help = "Issue fsync for writes every given number of blocks",
1164 .def = "0",
1165 },
1166 {
Jens Axboe5f9099e2009-06-16 22:40:26 +02001167 .name = "fdatasync",
1168 .type = FIO_OPT_INT,
1169 .off1 = td_var_offset(fdatasync_blocks),
1170 .help = "Issue fdatasync for writes every given number of blocks",
1171 .def = "0",
1172 },
Jens Axboe44f29692010-03-09 20:09:44 +01001173#ifdef FIO_HAVE_SYNC_FILE_RANGE
1174 {
1175 .name = "sync_file_range",
1176 .posval = {
1177 { .ival = "wait_before",
1178 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
1179 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001180 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001181 },
1182 { .ival = "write",
1183 .oval = SYNC_FILE_RANGE_WRITE,
1184 .help = "SYNC_FILE_RANGE_WRITE",
Jens Axboe3843deb2010-03-09 20:41:15 +01001185 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001186 },
1187 {
1188 .ival = "wait_after",
1189 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
1190 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
Jens Axboe3843deb2010-03-09 20:41:15 +01001191 .or = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01001192 },
1193 },
Jens Axboe3843deb2010-03-09 20:41:15 +01001194 .type = FIO_OPT_STR_MULTI,
Jens Axboe44f29692010-03-09 20:09:44 +01001195 .cb = str_sfr_cb,
1196 .off1 = td_var_offset(sync_file_range),
1197 .help = "Use sync_file_range()",
1198 },
1199#endif
Jens Axboe5f9099e2009-06-16 22:40:26 +02001200 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001201 .name = "direct",
1202 .type = FIO_OPT_BOOL,
1203 .off1 = td_var_offset(odirect),
1204 .help = "Use O_DIRECT IO (negates buffered)",
1205 .def = "0",
1206 },
1207 {
1208 .name = "buffered",
1209 .type = FIO_OPT_BOOL,
1210 .off1 = td_var_offset(odirect),
1211 .neg = 1,
1212 .help = "Use buffered IO (negates direct)",
1213 .def = "1",
1214 },
1215 {
1216 .name = "overwrite",
1217 .type = FIO_OPT_BOOL,
1218 .off1 = td_var_offset(overwrite),
1219 .help = "When writing, set whether to overwrite current data",
1220 .def = "0",
1221 },
1222 {
1223 .name = "loops",
1224 .type = FIO_OPT_INT,
1225 .off1 = td_var_offset(loops),
1226 .help = "Number of times to run the job",
1227 .def = "1",
1228 },
1229 {
1230 .name = "numjobs",
1231 .type = FIO_OPT_INT,
1232 .off1 = td_var_offset(numjobs),
1233 .help = "Duplicate this job this many times",
1234 .def = "1",
1235 },
1236 {
1237 .name = "startdelay",
Jens Axboea5737c92010-06-29 10:40:30 +02001238 .type = FIO_OPT_STR_VAL_TIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001239 .off1 = td_var_offset(start_delay),
1240 .help = "Only start job when this period has passed",
1241 .def = "0",
1242 },
1243 {
1244 .name = "runtime",
1245 .alias = "timeout",
1246 .type = FIO_OPT_STR_VAL_TIME,
1247 .off1 = td_var_offset(timeout),
1248 .help = "Stop workload when this amount of time has passed",
1249 .def = "0",
1250 },
1251 {
Jens Axboecf4464c2007-04-17 20:14:42 +02001252 .name = "time_based",
1253 .type = FIO_OPT_STR_SET,
1254 .off1 = td_var_offset(time_based),
1255 .help = "Keep running until runtime/timeout is met",
1256 },
1257 {
Jens Axboe721938a2008-09-10 09:46:16 +02001258 .name = "ramp_time",
1259 .type = FIO_OPT_STR_VAL_TIME,
1260 .off1 = td_var_offset(ramp_time),
1261 .help = "Ramp up time before measuring performance",
1262 },
1263 {
Jens Axboec223da82010-03-24 13:23:53 +01001264 .name = "clocksource",
1265 .type = FIO_OPT_STR,
1266 .cb = fio_clock_source_cb,
1267 .off1 = td_var_offset(clocksource),
1268 .help = "What type of timing source to use",
Jens Axboec223da82010-03-24 13:23:53 +01001269 .posval = {
1270 { .ival = "gettimeofday",
1271 .oval = CS_GTOD,
1272 .help = "Use gettimeofday(2) for timing",
1273 },
1274 { .ival = "clock_gettime",
1275 .oval = CS_CGETTIME,
1276 .help = "Use clock_gettime(2) for timing",
1277 },
1278#ifdef ARCH_HAVE_CPU_CLOCK
1279 { .ival = "cpu",
1280 .oval = CS_CPUCLOCK,
1281 .help = "Use CPU private clock",
1282 },
1283#endif
1284 },
1285 },
1286 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001287 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001288 .alias = "iomem",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001289 .type = FIO_OPT_STR,
1290 .cb = str_mem_cb,
1291 .off1 = td_var_offset(mem_type),
1292 .help = "Backing type for IO buffers",
1293 .def = "malloc",
1294 .posval = {
1295 { .ival = "malloc",
1296 .oval = MEM_MALLOC,
1297 .help = "Use malloc(3) for IO buffers",
1298 },
Jens Axboeb370e462007-03-19 10:51:49 +01001299 { .ival = "shm",
1300 .oval = MEM_SHM,
1301 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001302 },
1303#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001304 { .ival = "shmhuge",
1305 .oval = MEM_SHMHUGE,
1306 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001307 },
1308#endif
Jens Axboeb370e462007-03-19 10:51:49 +01001309 { .ival = "mmap",
1310 .oval = MEM_MMAP,
1311 .help = "Use mmap(2) (file or anon) for IO buffers",
1312 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +01001313#ifdef FIO_HAVE_HUGETLB
1314 { .ival = "mmaphuge",
1315 .oval = MEM_MMAPHUGE,
1316 .help = "Like mmap, but use huge pages",
1317 },
1318#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001319 },
1320 },
1321 {
Jens Axboed529ee12009-07-01 10:33:03 +02001322 .name = "iomem_align",
1323 .alias = "mem_align",
1324 .type = FIO_OPT_INT,
1325 .off1 = td_var_offset(mem_align),
1326 .minval = 0,
1327 .help = "IO memory buffer offset alignment",
1328 .def = "0",
1329 .parent = "iomem",
1330 },
1331 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001332 .name = "verify",
1333 .type = FIO_OPT_STR,
1334 .off1 = td_var_offset(verify),
1335 .help = "Verify data written",
Jens Axboe5d7c5d32010-06-21 15:08:17 +02001336 .cb = str_verify_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001337 .def = "0",
1338 .posval = {
1339 { .ival = "0",
1340 .oval = VERIFY_NONE,
1341 .help = "Don't do IO verification",
1342 },
Jens Axboefcca4b52007-07-27 15:42:00 +02001343 { .ival = "md5",
1344 .oval = VERIFY_MD5,
1345 .help = "Use md5 checksums for verification",
1346 },
Jens Axboed77a7af2007-07-27 15:35:06 +02001347 { .ival = "crc64",
1348 .oval = VERIFY_CRC64,
1349 .help = "Use crc64 checksums for verification",
1350 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001351 { .ival = "crc32",
1352 .oval = VERIFY_CRC32,
1353 .help = "Use crc32 checksums for verification",
1354 },
Jens Axboeaf497e62008-08-04 15:40:35 +02001355 { .ival = "crc32c-intel",
1356 .oval = VERIFY_CRC32C_INTEL,
1357 .help = "Use hw crc32c checksums for verification",
1358 },
Jens Axboebac39e02008-06-11 20:46:19 +02001359 { .ival = "crc32c",
1360 .oval = VERIFY_CRC32C,
1361 .help = "Use crc32c checksums for verification",
1362 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02001363 { .ival = "crc16",
1364 .oval = VERIFY_CRC16,
1365 .help = "Use crc16 checksums for verification",
1366 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02001367 { .ival = "crc7",
1368 .oval = VERIFY_CRC7,
1369 .help = "Use crc7 checksums for verification",
1370 },
Jens Axboe7c353ce2009-08-09 22:40:33 +02001371 { .ival = "sha1",
1372 .oval = VERIFY_SHA1,
1373 .help = "Use sha1 checksums for verification",
1374 },
Jens Axboecd14cc12007-07-30 10:59:33 +02001375 { .ival = "sha256",
1376 .oval = VERIFY_SHA256,
1377 .help = "Use sha256 checksums for verification",
1378 },
1379 { .ival = "sha512",
1380 .oval = VERIFY_SHA512,
1381 .help = "Use sha512 checksums for verification",
1382 },
Shawn Lewis7437ee82007-08-02 21:05:58 +02001383 { .ival = "meta",
1384 .oval = VERIFY_META,
1385 .help = "Use io information",
1386 },
Jens Axboe36690c92007-03-26 10:23:34 +02001387 {
1388 .ival = "null",
1389 .oval = VERIFY_NULL,
1390 .help = "Pretend to verify",
1391 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001392 },
1393 },
1394 {
Jens Axboe005c5652007-08-02 22:21:36 +02001395 .name = "do_verify",
Jens Axboe68e1f292007-08-10 10:32:14 +02001396 .type = FIO_OPT_BOOL,
Jens Axboe005c5652007-08-02 22:21:36 +02001397 .off1 = td_var_offset(do_verify),
1398 .help = "Run verification stage after write",
1399 .def = "1",
1400 .parent = "verify",
1401 },
1402 {
Jens Axboe160b9662007-03-27 10:59:49 +02001403 .name = "verifysort",
1404 .type = FIO_OPT_BOOL,
1405 .off1 = td_var_offset(verifysort),
1406 .help = "Sort written verify blocks for read back",
1407 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02001408 .parent = "verify",
Jens Axboe160b9662007-03-27 10:59:49 +02001409 },
1410 {
Jens Axboea59e1702007-07-30 08:53:27 +02001411 .name = "verify_interval",
Jens Axboee01b22b2009-06-09 15:43:25 +02001412 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001413 .off1 = td_var_offset(verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02001414 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02001415 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02001416 .parent = "verify",
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02001417 },
1418 {
Jens Axboea59e1702007-07-30 08:53:27 +02001419 .name = "verify_offset",
Jens Axboee01b22b2009-06-09 15:43:25 +02001420 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02001421 .help = "Offset verify header location by N bytes",
Shawn Lewis546a9142007-07-28 21:11:37 +02001422 .def = "0",
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001423 .cb = str_verify_offset_cb,
Jens Axboeafdf9352007-07-31 16:14:34 +02001424 .parent = "verify",
Shawn Lewis546a9142007-07-28 21:11:37 +02001425 },
1426 {
Shawn Lewise28218f2008-01-16 11:01:33 +01001427 .name = "verify_pattern",
Radha Ramachandran0e92f872009-10-27 20:14:27 +01001428 .type = FIO_OPT_STR,
Shawn Lewise28218f2008-01-16 11:01:33 +01001429 .cb = str_verify_pattern_cb,
1430 .help = "Fill pattern for IO buffers",
1431 .parent = "verify",
1432 },
1433 {
Jens Axboea12a3b42007-08-09 10:20:54 +02001434 .name = "verify_fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02001435 .type = FIO_OPT_BOOL,
Jens Axboea12a3b42007-08-09 10:20:54 +02001436 .off1 = td_var_offset(verify_fatal),
1437 .def = "0",
1438 .help = "Exit on a single verify failure, don't continue",
1439 .parent = "verify",
1440 },
1441 {
Jens Axboee8462bd2009-07-06 12:59:04 +02001442 .name = "verify_async",
1443 .type = FIO_OPT_INT,
1444 .off1 = td_var_offset(verify_async),
1445 .def = "0",
1446 .help = "Number of async verifier threads to use",
1447 .parent = "verify",
1448 },
Jens Axboe9e144182010-06-15 14:25:36 +02001449 {
1450 .name = "verify_backlog",
1451 .type = FIO_OPT_STR_VAL,
1452 .off1 = td_var_offset(verify_backlog),
1453 .help = "Verify after this number of blocks are written",
1454 .parent = "verify",
1455 },
1456 {
1457 .name = "verify_backlog_batch",
1458 .type = FIO_OPT_INT,
1459 .off1 = td_var_offset(verify_batch),
1460 .help = "Verify this number of IO blocks",
1461 .parent = "verify_backlog",
1462 },
Jens Axboee8462bd2009-07-06 12:59:04 +02001463#ifdef FIO_HAVE_CPU_AFFINITY
1464 {
1465 .name = "verify_async_cpus",
1466 .type = FIO_OPT_STR,
1467 .cb = str_verify_cpus_allowed_cb,
1468 .help = "Set CPUs allowed for async verify threads",
1469 .parent = "verify_async",
1470 },
1471#endif
1472 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001473 .name = "write_iolog",
1474 .type = FIO_OPT_STR_STORE,
1475 .off1 = td_var_offset(write_iolog_file),
1476 .help = "Store IO pattern to file",
1477 },
1478 {
1479 .name = "read_iolog",
1480 .type = FIO_OPT_STR_STORE,
1481 .off1 = td_var_offset(read_iolog_file),
1482 .help = "Playback IO pattern from file",
1483 },
1484 {
David Nellans64bbb862010-08-24 22:13:30 +02001485 .name = "replay_no_stall",
1486 .type = FIO_OPT_INT,
1487 .off1 = td_var_offset(no_stall),
1488 .def = "0",
Jens Axboe87e7a972010-08-25 09:01:25 +02001489 .parent = "read_iolog",
David Nellans64bbb862010-08-24 22:13:30 +02001490 .help = "Playback IO pattern file as fast as possible without stalls",
1491 },
1492 {
David Nellansd1c46c02010-08-31 21:20:47 +02001493 .name = "replay_redirect",
1494 .type = FIO_OPT_STR_STORE,
1495 .off1 = td_var_offset(replay_redirect),
1496 .parent = "read_iolog",
1497 .help = "Replay all I/O onto this device, regardless of trace device",
1498 },
1499 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001500 .name = "exec_prerun",
1501 .type = FIO_OPT_STR_STORE,
1502 .off1 = td_var_offset(exec_prerun),
1503 .help = "Execute this file prior to running job",
1504 },
1505 {
1506 .name = "exec_postrun",
1507 .type = FIO_OPT_STR_STORE,
1508 .off1 = td_var_offset(exec_postrun),
1509 .help = "Execute this file after running job",
1510 },
1511#ifdef FIO_HAVE_IOSCHED_SWITCH
1512 {
1513 .name = "ioscheduler",
1514 .type = FIO_OPT_STR_STORE,
1515 .off1 = td_var_offset(ioscheduler),
1516 .help = "Use this IO scheduler on the backing device",
1517 },
1518#endif
1519 {
1520 .name = "zonesize",
1521 .type = FIO_OPT_STR_VAL,
1522 .off1 = td_var_offset(zone_size),
1523 .help = "Give size of an IO zone",
1524 .def = "0",
1525 },
1526 {
1527 .name = "zoneskip",
1528 .type = FIO_OPT_STR_VAL,
1529 .off1 = td_var_offset(zone_skip),
1530 .help = "Space between IO zones",
1531 .def = "0",
1532 },
1533 {
1534 .name = "lockmem",
1535 .type = FIO_OPT_STR_VAL,
1536 .cb = str_lockmem_cb,
1537 .help = "Lock down this amount of memory",
1538 .def = "0",
1539 },
1540 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001541 .name = "rwmixread",
1542 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001543 .cb = str_rwmix_read_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001544 .maxval = 100,
1545 .help = "Percentage of mixed workload that is reads",
1546 .def = "50",
1547 },
1548 {
1549 .name = "rwmixwrite",
1550 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02001551 .cb = str_rwmix_write_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001552 .maxval = 100,
1553 .help = "Percentage of mixed workload that is writes",
1554 .def = "50",
1555 },
1556 {
Jens Axboeafdf9352007-07-31 16:14:34 +02001557 .name = "rwmixcycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02001558 .type = FIO_OPT_DEPRECATED,
Jens Axboeafdf9352007-07-31 16:14:34 +02001559 },
1560 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001561 .name = "nice",
1562 .type = FIO_OPT_INT,
1563 .off1 = td_var_offset(nice),
1564 .help = "Set job CPU nice value",
1565 .minval = -19,
1566 .maxval = 20,
1567 .def = "0",
1568 },
1569#ifdef FIO_HAVE_IOPRIO
1570 {
1571 .name = "prio",
1572 .type = FIO_OPT_INT,
1573 .cb = str_prio_cb,
1574 .help = "Set job IO priority value",
1575 .minval = 0,
1576 .maxval = 7,
1577 },
1578 {
1579 .name = "prioclass",
1580 .type = FIO_OPT_INT,
1581 .cb = str_prioclass_cb,
1582 .help = "Set job IO priority class",
1583 .minval = 0,
1584 .maxval = 3,
1585 },
1586#endif
1587 {
1588 .name = "thinktime",
1589 .type = FIO_OPT_INT,
1590 .off1 = td_var_offset(thinktime),
1591 .help = "Idle time between IO buffers (usec)",
1592 .def = "0",
1593 },
1594 {
1595 .name = "thinktime_spin",
1596 .type = FIO_OPT_INT,
1597 .off1 = td_var_offset(thinktime_spin),
1598 .help = "Start think time by spinning this amount (usec)",
1599 .def = "0",
Jens Axboeafdf9352007-07-31 16:14:34 +02001600 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001601 },
1602 {
1603 .name = "thinktime_blocks",
1604 .type = FIO_OPT_INT,
1605 .off1 = td_var_offset(thinktime_blocks),
1606 .help = "IO buffer period between 'thinktime'",
1607 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02001608 .parent = "thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001609 },
1610 {
1611 .name = "rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02001612 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001613 .off1 = td_var_offset(rate[0]),
1614 .off2 = td_var_offset(rate[1]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001615 .help = "Set bandwidth rate",
1616 },
1617 {
1618 .name = "ratemin",
Jens Axboee01b22b2009-06-09 15:43:25 +02001619 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001620 .off1 = td_var_offset(ratemin[0]),
1621 .off2 = td_var_offset(ratemin[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001622 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001623 .parent = "rate",
Jens Axboe4e991c22007-03-15 11:41:11 +01001624 },
1625 {
1626 .name = "rate_iops",
Jens Axboee01b22b2009-06-09 15:43:25 +02001627 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001628 .off1 = td_var_offset(rate_iops[0]),
1629 .off2 = td_var_offset(rate_iops[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001630 .help = "Limit IO used to this number of IO operations/sec",
1631 },
1632 {
1633 .name = "rate_iops_min",
Jens Axboee01b22b2009-06-09 15:43:25 +02001634 .type = FIO_OPT_INT,
Jens Axboe581e7142009-06-09 12:47:16 +02001635 .off1 = td_var_offset(rate_iops_min[0]),
1636 .off2 = td_var_offset(rate_iops_min[1]),
Jens Axboe4e991c22007-03-15 11:41:11 +01001637 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02001638 .parent = "rate_iops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001639 },
1640 {
1641 .name = "ratecycle",
1642 .type = FIO_OPT_INT,
1643 .off1 = td_var_offset(ratecycle),
1644 .help = "Window average for rate limits (msec)",
1645 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02001646 .parent = "rate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001647 },
1648 {
1649 .name = "invalidate",
1650 .type = FIO_OPT_BOOL,
1651 .off1 = td_var_offset(invalidate_cache),
1652 .help = "Invalidate buffer/page cache prior to running job",
1653 .def = "1",
1654 },
1655 {
1656 .name = "sync",
1657 .type = FIO_OPT_BOOL,
1658 .off1 = td_var_offset(sync_io),
1659 .help = "Use O_SYNC for buffered writes",
1660 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02001661 .parent = "buffered",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001662 },
1663 {
1664 .name = "bwavgtime",
1665 .type = FIO_OPT_INT,
1666 .off1 = td_var_offset(bw_avg_time),
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001667 .help = "Time window over which to calculate bandwidth"
1668 " (msec)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001669 .def = "500",
1670 },
1671 {
1672 .name = "create_serialize",
1673 .type = FIO_OPT_BOOL,
1674 .off1 = td_var_offset(create_serialize),
1675 .help = "Serialize creating of job files",
1676 .def = "1",
1677 },
1678 {
1679 .name = "create_fsync",
1680 .type = FIO_OPT_BOOL,
1681 .off1 = td_var_offset(create_fsync),
1682 .help = "Fsync file after creation",
1683 .def = "1",
1684 },
1685 {
Jens Axboe814452b2009-03-04 12:53:13 +01001686 .name = "create_on_open",
1687 .type = FIO_OPT_BOOL,
1688 .off1 = td_var_offset(create_on_open),
1689 .help = "Create files when they are opened for IO",
1690 .def = "0",
1691 },
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001692 {
Zhang, Yanminafad68f2009-05-20 11:30:55 +02001693 .name = "pre_read",
1694 .type = FIO_OPT_BOOL,
1695 .off1 = td_var_offset(pre_read),
1696 .help = "Preread files before starting official testing",
1697 .def = "0",
1698 },
Jens Axboe814452b2009-03-04 12:53:13 +01001699 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001700 .name = "cpuload",
1701 .type = FIO_OPT_INT,
1702 .off1 = td_var_offset(cpuload),
1703 .help = "Use this percentage of CPU",
1704 },
1705 {
1706 .name = "cpuchunks",
1707 .type = FIO_OPT_INT,
1708 .off1 = td_var_offset(cpucycle),
1709 .help = "Length of the CPU burn cycles (usecs)",
1710 .def = "50000",
Jens Axboe67a10002007-07-31 23:12:16 +02001711 .parent = "cpuload",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001712 },
1713#ifdef FIO_HAVE_CPU_AFFINITY
1714 {
1715 .name = "cpumask",
1716 .type = FIO_OPT_INT,
1717 .cb = str_cpumask_cb,
1718 .help = "CPU affinity mask",
1719 },
Jens Axboed2e268b2007-06-15 10:33:49 +02001720 {
1721 .name = "cpus_allowed",
1722 .type = FIO_OPT_STR,
1723 .cb = str_cpus_allowed_cb,
1724 .help = "Set CPUs allowed",
1725 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001726#endif
1727 {
1728 .name = "end_fsync",
1729 .type = FIO_OPT_BOOL,
1730 .off1 = td_var_offset(end_fsync),
1731 .help = "Include fsync at the end of job",
1732 .def = "0",
1733 },
1734 {
1735 .name = "fsync_on_close",
1736 .type = FIO_OPT_BOOL,
1737 .off1 = td_var_offset(fsync_on_close),
1738 .help = "fsync files on close",
1739 .def = "0",
1740 },
1741 {
1742 .name = "unlink",
1743 .type = FIO_OPT_BOOL,
1744 .off1 = td_var_offset(unlink),
1745 .help = "Unlink created files after job has completed",
1746 .def = "0",
1747 },
1748 {
1749 .name = "exitall",
1750 .type = FIO_OPT_STR_SET,
1751 .cb = str_exitall_cb,
1752 .help = "Terminate all jobs when one exits",
1753 },
1754 {
1755 .name = "stonewall",
1756 .type = FIO_OPT_STR_SET,
1757 .off1 = td_var_offset(stonewall),
1758 .help = "Insert a hard barrier between this job and previous",
1759 },
1760 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01001761 .name = "new_group",
1762 .type = FIO_OPT_STR_SET,
1763 .off1 = td_var_offset(new_group),
1764 .help = "Mark the start of a new group (for reporting)",
1765 },
1766 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001767 .name = "thread",
1768 .type = FIO_OPT_STR_SET,
1769 .off1 = td_var_offset(use_thread),
1770 .help = "Use threads instead of forks",
1771 },
1772 {
1773 .name = "write_bw_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001774 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001775 .off1 = td_var_offset(write_bw_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001776 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001777 .help = "Write log of bandwidth during run",
1778 },
1779 {
1780 .name = "write_lat_log",
Jens Axboee3cedca2008-11-19 19:57:52 +01001781 .type = FIO_OPT_STR,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001782 .off1 = td_var_offset(write_lat_log),
Jens Axboee3cedca2008-11-19 19:57:52 +01001783 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001784 .help = "Write log of latency during run",
1785 },
1786 {
1787 .name = "hugepage-size",
Jens Axboee01b22b2009-06-09 15:43:25 +02001788 .type = FIO_OPT_INT,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001789 .off1 = td_var_offset(hugepage_size),
1790 .help = "When using hugepages, specify size of each page",
1791 .def = __stringify(FIO_HUGE_PAGE),
1792 },
1793 {
1794 .name = "group_reporting",
1795 .type = FIO_OPT_STR_SET,
1796 .off1 = td_var_offset(group_reporting),
1797 .help = "Do reporting on a per-group basis",
1798 },
1799 {
Jens Axboee9459e52007-04-17 15:46:32 +02001800 .name = "zero_buffers",
1801 .type = FIO_OPT_STR_SET,
1802 .off1 = td_var_offset(zero_buffers),
1803 .help = "Init IO buffers to all zeroes",
1804 },
Jens Axboe5973caf2008-05-21 19:52:35 +02001805 {
1806 .name = "refill_buffers",
1807 .type = FIO_OPT_STR_SET,
1808 .off1 = td_var_offset(refill_buffers),
1809 .help = "Refill IO buffers on every IO submit",
1810 },
Jens Axboe0a839f32007-04-26 09:02:34 +02001811#ifdef FIO_HAVE_DISK_UTIL
1812 {
1813 .name = "disk_util",
1814 .type = FIO_OPT_BOOL,
1815 .off1 = td_var_offset(do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02001816 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02001817 .def = "1",
1818 },
1819#endif
Jens Axboee9459e52007-04-17 15:46:32 +02001820 {
Jens Axboe993bf482008-11-14 13:04:53 +01001821 .name = "gtod_reduce",
1822 .type = FIO_OPT_BOOL,
1823 .help = "Greatly reduce number of gettimeofday() calls",
1824 .cb = str_gtod_reduce_cb,
1825 .def = "0",
1826 },
1827 {
Jens Axboe02af0982010-06-24 09:59:34 +02001828 .name = "disable_lat",
1829 .type = FIO_OPT_BOOL,
1830 .off1 = td_var_offset(disable_lat),
1831 .help = "Disable latency numbers",
1832 .parent = "gtod_reduce",
1833 .def = "0",
1834 },
1835 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02001836 .name = "disable_clat",
1837 .type = FIO_OPT_BOOL,
1838 .off1 = td_var_offset(disable_clat),
1839 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001840 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001841 .def = "0",
1842 },
1843 {
1844 .name = "disable_slat",
1845 .type = FIO_OPT_BOOL,
1846 .off1 = td_var_offset(disable_slat),
1847 .help = "Disable submissionn latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01001848 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001849 .def = "0",
1850 },
1851 {
1852 .name = "disable_bw_measurement",
1853 .type = FIO_OPT_BOOL,
1854 .off1 = td_var_offset(disable_bw),
1855 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01001856 .parent = "gtod_reduce",
Jens Axboe9520ebb2008-10-16 21:03:27 +02001857 .def = "0",
1858 },
1859 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001860 .name = "gtod_cpu",
1861 .type = FIO_OPT_INT,
1862 .cb = str_gtod_cpu_cb,
1863 .help = "Setup dedicated gettimeofday() thread on this CPU",
Jens Axboe29d43ff2009-07-01 10:42:18 +02001864 .verify = gtod_cpu_verify,
Jens Axboebe4ecfd2008-12-08 14:10:52 +01001865 },
1866 {
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001867 .name = "continue_on_error",
1868 .type = FIO_OPT_BOOL,
1869 .off1 = td_var_offset(continue_on_error),
1870 .help = "Continue on non-fatal errors during I/O",
1871 .def = "0",
1872 },
1873 {
Jens Axboe9ac8a792009-11-13 21:23:07 +01001874 .name = "profile",
Jens Axboe79d16312010-03-04 12:43:20 +01001875 .type = FIO_OPT_STR_STORE,
Jens Axboe9ac8a792009-11-13 21:23:07 +01001876 .off1 = td_var_offset(profile),
Jens Axboe9ac8a792009-11-13 21:23:07 +01001877 .help = "Select a specific builtin performance test",
1878 },
1879 {
Jens Axboea696fa22009-12-04 10:05:02 +01001880 .name = "cgroup",
1881 .type = FIO_OPT_STR_STORE,
1882 .off1 = td_var_offset(cgroup),
1883 .help = "Add job to cgroup of this name",
1884 },
1885 {
1886 .name = "cgroup_weight",
1887 .type = FIO_OPT_INT,
1888 .off1 = td_var_offset(cgroup_weight),
1889 .help = "Use given weight for cgroup",
1890 .minval = 100,
1891 .maxval = 1000,
Jens Axboea696fa22009-12-04 10:05:02 +01001892 },
1893 {
Vivek Goyal7de87092010-03-31 22:55:15 +02001894 .name = "cgroup_nodelete",
1895 .type = FIO_OPT_BOOL,
1896 .off1 = td_var_offset(cgroup_nodelete),
1897 .help = "Do not delete cgroups after job completion",
1898 .def = "0",
1899 },
1900 {
Jens Axboee0b0d892009-12-08 10:10:14 +01001901 .name = "uid",
1902 .type = FIO_OPT_INT,
1903 .off1 = td_var_offset(uid),
1904 .help = "Run job with this user ID",
1905 },
1906 {
1907 .name = "gid",
1908 .type = FIO_OPT_INT,
1909 .off1 = td_var_offset(gid),
1910 .help = "Run job with this group ID",
1911 },
1912 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001913 .name = NULL,
1914 },
1915};
1916
Jens Axboe17af15d2010-04-13 10:38:16 +02001917static void add_to_lopt(struct option *lopt, struct fio_option *o,
1918 const char *name)
Jens Axboe9f817362010-03-04 14:38:10 +01001919{
Jens Axboe17af15d2010-04-13 10:38:16 +02001920 lopt->name = (char *) name;
Jens Axboe9f817362010-03-04 14:38:10 +01001921 lopt->val = FIO_GETOPT_JOB;
1922 if (o->type == FIO_OPT_STR_SET)
1923 lopt->has_arg = no_argument;
1924 else
1925 lopt->has_arg = required_argument;
1926}
1927
Jens Axboe214e1ec2007-03-15 10:48:13 +01001928void fio_options_dup_and_init(struct option *long_options)
1929{
1930 struct fio_option *o;
1931 unsigned int i;
1932
1933 options_init(options);
1934
1935 i = 0;
1936 while (long_options[i].name)
1937 i++;
1938
1939 o = &options[0];
1940 while (o->name) {
Jens Axboe17af15d2010-04-13 10:38:16 +02001941 add_to_lopt(&long_options[i], o, o->name);
1942 if (o->alias) {
1943 i++;
1944 add_to_lopt(&long_options[i], o, o->alias);
1945 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001946
1947 i++;
1948 o++;
1949 assert(i < FIO_NR_OPTIONS);
1950 }
1951}
1952
Jens Axboe74929ac2009-08-05 11:42:37 +02001953struct fio_keyword {
1954 const char *word;
1955 const char *desc;
1956 char *replace;
1957};
1958
1959static struct fio_keyword fio_keywords[] = {
1960 {
1961 .word = "$pagesize",
1962 .desc = "Page size in the system",
1963 },
1964 {
1965 .word = "$mb_memory",
1966 .desc = "Megabytes of memory online",
1967 },
1968 {
1969 .word = "$ncpus",
1970 .desc = "Number of CPUs online in the system",
1971 },
1972 {
1973 .word = NULL,
1974 },
1975};
1976
1977void fio_keywords_init(void)
1978{
Jens Axboe3b2e1462009-12-15 08:58:10 +01001979 unsigned long long mb_memory;
Jens Axboe74929ac2009-08-05 11:42:37 +02001980 char buf[128];
1981 long l;
1982
1983 sprintf(buf, "%lu", page_size);
1984 fio_keywords[0].replace = strdup(buf);
1985
Jens Axboe3b2e1462009-12-15 08:58:10 +01001986 mb_memory = os_phys_mem() / page_size;
1987 sprintf(buf, "%llu", mb_memory);
Jens Axboe74929ac2009-08-05 11:42:37 +02001988 fio_keywords[1].replace = strdup(buf);
1989
1990 l = sysconf(_SC_NPROCESSORS_ONLN);
1991 sprintf(buf, "%lu", l);
1992 fio_keywords[2].replace = strdup(buf);
1993}
1994
Jens Axboe892a6ff2009-11-13 12:19:49 +01001995#define BC_APP "bc"
1996
1997static char *bc_calc(char *str)
1998{
1999 char *buf, *tmp, opt[80];
2000 FILE *f;
2001 int ret;
2002
2003 /*
2004 * No math, just return string
2005 */
2006 if (!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
2007 !strchr(str, '/'))
2008 return str;
2009
2010 /*
2011 * Split option from value, we only need to calculate the value
2012 */
2013 tmp = strchr(str, '=');
2014 if (!tmp)
2015 return str;
2016
2017 tmp++;
Jens Axboe9ac8a792009-11-13 21:23:07 +01002018 memset(opt, 0, sizeof(opt));
Jens Axboe892a6ff2009-11-13 12:19:49 +01002019 strncpy(opt, str, tmp - str);
2020
2021 buf = malloc(128);
2022
2023 sprintf(buf, "which %s > /dev/null", BC_APP);
2024 if (system(buf)) {
2025 log_err("fio: bc is needed for performing math\n");
2026 free(buf);
2027 return NULL;
2028 }
2029
2030 sprintf(buf, "echo %s | %s", tmp, BC_APP);
2031 f = popen(buf, "r");
2032 if (!f) {
2033 free(buf);
2034 return NULL;
2035 }
2036
2037 ret = fread(buf, 1, 128, f);
2038 if (ret <= 0) {
2039 free(buf);
2040 return NULL;
2041 }
2042
2043 buf[ret - 1] = '\0';
2044 strcat(opt, buf);
2045 strcpy(buf, opt);
2046 pclose(f);
2047 free(str);
2048 return buf;
2049}
2050
Jens Axboe74929ac2009-08-05 11:42:37 +02002051/*
2052 * Look for reserved variable names and replace them with real values
2053 */
2054static char *fio_keyword_replace(char *opt)
2055{
2056 char *s;
2057 int i;
2058
2059 for (i = 0; fio_keywords[i].word != NULL; i++) {
2060 struct fio_keyword *kw = &fio_keywords[i];
2061
2062 while ((s = strstr(opt, kw->word)) != NULL) {
2063 char *new = malloc(strlen(opt) + 1);
2064 char *o_org = opt;
2065 int olen = s - opt;
2066 int len;
2067
2068 /*
2069 * Copy part of the string before the keyword and
2070 * sprintf() the replacement after it.
2071 */
2072 memcpy(new, opt, olen);
2073 len = sprintf(new + olen, "%s", kw->replace);
2074
2075 /*
2076 * If there's more in the original string, copy that
2077 * in too
2078 */
2079 opt += strlen(kw->word) + olen;
2080 if (strlen(opt))
2081 memcpy(new + olen + len, opt, opt - o_org - 1);
2082
2083 /*
2084 * replace opt and free the old opt
2085 */
2086 opt = new;
Jens Axboe9ac8a792009-11-13 21:23:07 +01002087 //free(o_org);
Jens Axboe7a958bd2009-11-13 12:33:54 +01002088
2089 /*
2090 * Check for potential math and invoke bc, if possible
2091 */
2092 opt = bc_calc(opt);
Jens Axboe74929ac2009-08-05 11:42:37 +02002093 }
2094 }
2095
Jens Axboe7a958bd2009-11-13 12:33:54 +01002096 return opt;
Jens Axboe74929ac2009-08-05 11:42:37 +02002097}
2098
Jens Axboe3b8b7132008-06-10 19:46:23 +02002099int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01002100{
Jens Axboe3b8b7132008-06-10 19:46:23 +02002101 int i, ret;
2102
2103 sort_options(opts, options, num_opts);
2104
Jens Axboe74929ac2009-08-05 11:42:37 +02002105 for (ret = 0, i = 0; i < num_opts; i++) {
2106 opts[i] = fio_keyword_replace(opts[i]);
Jens Axboe07b32322010-03-05 09:48:44 +01002107 ret |= parse_option(opts[i], options, td);
Jens Axboe74929ac2009-08-05 11:42:37 +02002108 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02002109
2110 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01002111}
2112
2113int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
2114{
Jens Axboe07b32322010-03-05 09:48:44 +01002115 return parse_cmd_option(opt, val, options, td);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002116}
2117
2118void fio_fill_default_options(struct thread_data *td)
2119{
2120 fill_default_options(td, options);
2121}
2122
2123int fio_show_option_help(const char *opt)
2124{
Jens Axboe07b32322010-03-05 09:48:44 +01002125 return show_cmd_help(options, opt);
Jens Axboe214e1ec2007-03-15 10:48:13 +01002126}
Jens Axboed23bb322007-03-23 15:57:56 +01002127
2128static void __options_mem(struct thread_data *td, int alloc)
2129{
2130 struct thread_options *o = &td->o;
2131 struct fio_option *opt;
2132 char **ptr;
2133 int i;
2134
2135 for (i = 0, opt = &options[0]; opt->name; i++, opt = &options[i]) {
2136 if (opt->type != FIO_OPT_STR_STORE)
2137 continue;
2138
2139 ptr = (void *) o + opt->off1;
2140 if (*ptr) {
2141 if (alloc)
2142 *ptr = strdup(*ptr);
2143 else {
2144 free(*ptr);
2145 *ptr = NULL;
2146 }
2147 }
2148 }
2149}
2150
2151/*
2152 * dupe FIO_OPT_STR_STORE options
2153 */
2154void options_mem_dupe(struct thread_data *td)
2155{
2156 __options_mem(td, 1);
2157}
2158
Jens Axboe22d66212007-03-27 20:06:25 +02002159void options_mem_free(struct thread_data fio_unused *td)
Jens Axboed23bb322007-03-23 15:57:56 +01002160{
Jens Axboe22d66212007-03-27 20:06:25 +02002161#if 0
Jens Axboed23bb322007-03-23 15:57:56 +01002162 __options_mem(td, 0);
Jens Axboe22d66212007-03-27 20:06:25 +02002163#endif
Jens Axboed23bb322007-03-23 15:57:56 +01002164}
Jens Axboed6978a32009-07-18 21:04:09 +02002165
2166unsigned int fio_get_kb_base(void *data)
2167{
2168 struct thread_data *td = data;
2169 unsigned int kb_base = 0;
2170
2171 if (td)
2172 kb_base = td->o.kb_base;
2173 if (!kb_base)
2174 kb_base = 1024;
2175
2176 return kb_base;
2177}
Jens Axboe9f988e22010-03-04 10:42:38 +01002178
Jens Axboe07b32322010-03-05 09:48:44 +01002179int add_option(struct fio_option *o)
Jens Axboe9f988e22010-03-04 10:42:38 +01002180{
Jens Axboe07b32322010-03-05 09:48:44 +01002181 struct fio_option *__o;
2182 int opt_index = 0;
2183
2184 __o = options;
2185 while (__o->name) {
2186 opt_index++;
2187 __o++;
2188 }
2189
2190 memcpy(&options[opt_index], o, sizeof(*o));
2191 return 0;
Jens Axboe9f988e22010-03-04 10:42:38 +01002192}
Jens Axboee2de69d2010-03-04 14:05:48 +01002193
Jens Axboe07b32322010-03-05 09:48:44 +01002194void invalidate_profile_options(const char *prof_name)
Jens Axboee2de69d2010-03-04 14:05:48 +01002195{
Jens Axboe07b32322010-03-05 09:48:44 +01002196 struct fio_option *o;
Jens Axboee2de69d2010-03-04 14:05:48 +01002197
Jens Axboe07b32322010-03-05 09:48:44 +01002198 o = options;
2199 while (o->name) {
2200 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
2201 o->type = FIO_OPT_INVALID;
2202 o->prof_name = NULL;
2203 }
2204 o++;
Jens Axboee2de69d2010-03-04 14:05:48 +01002205 }
2206}
Jens Axboef5b6bb82010-03-05 10:09:59 +01002207
2208void add_opt_posval(const char *optname, const char *ival, const char *help)
2209{
2210 struct fio_option *o;
2211 unsigned int i;
2212
2213 o = find_option(options, optname);
2214 if (!o)
2215 return;
2216
2217 for (i = 0; i < PARSE_MAX_VP; i++) {
2218 if (o->posval[i].ival)
2219 continue;
2220
2221 o->posval[i].ival = ival;
2222 o->posval[i].help = help;
2223 break;
2224 }
2225}
2226
2227void del_opt_posval(const char *optname, const char *ival)
2228{
2229 struct fio_option *o;
2230 unsigned int i;
2231
2232 o = find_option(options, optname);
2233 if (!o)
2234 return;
2235
2236 for (i = 0; i < PARSE_MAX_VP; i++) {
2237 if (!o->posval[i].ival)
2238 continue;
2239 if (strcmp(o->posval[i].ival, ival))
2240 continue;
2241
2242 o->posval[i].ival = NULL;
2243 o->posval[i].help = NULL;
2244 }
2245}