blob: b489e90210ae008be47b427195242a56272daa90 [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>
Elliott Hugheseda3a602017-05-19 18:53:02 -070011#include <netinet/in.h>
Jens Axboe214e1ec2007-03-15 10:48:13 +010012
13#include "fio.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020014#include "verify.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010015#include "parse.h"
Jens Axboeeef32352008-06-02 13:31:26 +020016#include "lib/fls.h"
Elliott Hugheseda3a602017-05-19 18:53:02 -070017#include "lib/pattern.h"
Jens Axboe9f988e22010-03-04 10:42:38 +010018#include "options.h"
Elliott Hugheseda3a602017-05-19 18:53:02 -070019#include "optgroup.h"
Jens Axboe214e1ec2007-03-15 10:48:13 +010020
Elliott Hugheseda3a602017-05-19 18:53:02 -070021char client_sockaddr_str[INET6_ADDRSTRLEN] = { 0 };
22
23#define cb_data_to_td(data) container_of(data, struct thread_data, o)
24
25static struct pattern_fmt_desc fmt_desc[] = {
26 {
27 .fmt = "%o",
28 .len = FIELD_SIZE(struct io_u *, offset),
29 .paste = paste_blockoff
30 }
31};
Jens Axboe5d7c5d32010-06-21 15:08:17 +020032
Jens Axboe214e1ec2007-03-15 10:48:13 +010033/*
34 * Check if mmap/mmaphuge has a :/foo/bar/file at the end. If so, return that.
35 */
36static char *get_opt_postfix(const char *str)
37{
38 char *p = strstr(str, ":");
39
40 if (!p)
41 return NULL;
42
43 p++;
44 strip_blank_front(&p);
45 strip_blank_end(p);
46 return strdup(p);
47}
48
Jens Axboe564ca972007-12-14 12:21:19 +010049static int bs_cmp(const void *p1, const void *p2)
50{
51 const struct bssplit *bsp1 = p1;
52 const struct bssplit *bsp2 = p2;
53
Elliott Hugheseda3a602017-05-19 18:53:02 -070054 return (int) bsp1->perc - (int) bsp2->perc;
Jens Axboe564ca972007-12-14 12:21:19 +010055}
56
Elliott Hugheseda3a602017-05-19 18:53:02 -070057struct split {
58 unsigned int nr;
59 unsigned int val1[100];
60 unsigned int val2[100];
61};
62
63static int split_parse_ddir(struct thread_options *o, struct split *split,
64 enum fio_ddir ddir, char *str)
Jens Axboe564ca972007-12-14 12:21:19 +010065{
Elliott Hugheseda3a602017-05-19 18:53:02 -070066 unsigned int i, perc;
Jens Axboe564ca972007-12-14 12:21:19 +010067 long long val;
Jens Axboe720e84a2009-04-21 08:29:55 +020068 char *fname;
Jens Axboe564ca972007-12-14 12:21:19 +010069
Elliott Hugheseda3a602017-05-19 18:53:02 -070070 split->nr = 0;
Jens Axboe564ca972007-12-14 12:21:19 +010071
72 i = 0;
Jens Axboe564ca972007-12-14 12:21:19 +010073 while ((fname = strsep(&str, ":")) != NULL) {
74 char *perc_str;
75
76 if (!strlen(fname))
77 break;
78
Jens Axboe564ca972007-12-14 12:21:19 +010079 perc_str = strstr(fname, "/");
80 if (perc_str) {
81 *perc_str = '\0';
82 perc_str++;
83 perc = atoi(perc_str);
84 if (perc > 100)
85 perc = 100;
86 else if (!perc)
Jens Axboe03479882014-09-27 08:08:00 -060087 perc = -1U;
Jens Axboe564ca972007-12-14 12:21:19 +010088 } else
Jens Axboe03479882014-09-27 08:08:00 -060089 perc = -1U;
Jens Axboe564ca972007-12-14 12:21:19 +010090
Stephen M. Cameron79dc9142014-11-10 20:31:26 -070091 if (str_to_decimal(fname, &val, 1, o, 0, 0)) {
Jens Axboe564ca972007-12-14 12:21:19 +010092 log_err("fio: bssplit conversion failed\n");
Jens Axboe564ca972007-12-14 12:21:19 +010093 return 1;
94 }
95
Elliott Hugheseda3a602017-05-19 18:53:02 -070096 split->val1[i] = val;
97 split->val2[i] = perc;
Jens Axboe564ca972007-12-14 12:21:19 +010098 i++;
Elliott Hugheseda3a602017-05-19 18:53:02 -070099 if (i == 100)
100 break;
Jens Axboe564ca972007-12-14 12:21:19 +0100101 }
102
Elliott Hugheseda3a602017-05-19 18:53:02 -0700103 split->nr = i;
104 return 0;
105}
106
107static int bssplit_ddir(struct thread_options *o, enum fio_ddir ddir, char *str)
108{
109 unsigned int i, perc, perc_missing;
110 unsigned int max_bs, min_bs;
111 struct split split;
112
113 memset(&split, 0, sizeof(split));
114
115 if (split_parse_ddir(o, &split, ddir, str))
116 return 1;
117 if (!split.nr)
118 return 0;
119
120 max_bs = 0;
121 min_bs = -1;
122 o->bssplit[ddir] = malloc(split.nr * sizeof(struct bssplit));
123 o->bssplit_nr[ddir] = split.nr;
124 for (i = 0; i < split.nr; i++) {
125 if (split.val1[i] > max_bs)
126 max_bs = split.val1[i];
127 if (split.val1[i] < min_bs)
128 min_bs = split.val1[i];
129
130 o->bssplit[ddir][i].bs = split.val1[i];
131 o->bssplit[ddir][i].perc =split.val2[i];
132 }
Jens Axboe564ca972007-12-14 12:21:19 +0100133
134 /*
135 * Now check if the percentages add up, and how much is missing
136 */
137 perc = perc_missing = 0;
Jens Axboe83ea4222012-03-28 14:01:46 +0200138 for (i = 0; i < o->bssplit_nr[ddir]; i++) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700139 struct bssplit *bsp = &o->bssplit[ddir][i];
Jens Axboe564ca972007-12-14 12:21:19 +0100140
Jens Axboe03479882014-09-27 08:08:00 -0600141 if (bsp->perc == -1U)
Jens Axboe564ca972007-12-14 12:21:19 +0100142 perc_missing++;
143 else
144 perc += bsp->perc;
145 }
146
Jens Axboef3cc9892014-09-15 18:51:32 -0600147 if (perc > 100 && perc_missing > 1) {
Jens Axboe564ca972007-12-14 12:21:19 +0100148 log_err("fio: bssplit percentages add to more than 100%%\n");
Elliott Hugheseda3a602017-05-19 18:53:02 -0700149 free(o->bssplit[ddir]);
150 o->bssplit[ddir] = NULL;
Jens Axboe564ca972007-12-14 12:21:19 +0100151 return 1;
152 }
Jens Axboe03479882014-09-27 08:08:00 -0600153
Jens Axboe564ca972007-12-14 12:21:19 +0100154 /*
155 * If values didn't have a percentage set, divide the remains between
156 * them.
157 */
158 if (perc_missing) {
Jens Axboe03479882014-09-27 08:08:00 -0600159 if (perc_missing == 1 && o->bssplit_nr[ddir] == 1)
Jens Axboef3cc9892014-09-15 18:51:32 -0600160 perc = 100;
Jens Axboe83ea4222012-03-28 14:01:46 +0200161 for (i = 0; i < o->bssplit_nr[ddir]; i++) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700162 struct bssplit *bsp = &o->bssplit[ddir][i];
Jens Axboe564ca972007-12-14 12:21:19 +0100163
Jens Axboe03479882014-09-27 08:08:00 -0600164 if (bsp->perc == -1U)
Jens Axboe564ca972007-12-14 12:21:19 +0100165 bsp->perc = (100 - perc) / perc_missing;
166 }
167 }
168
Jens Axboe83ea4222012-03-28 14:01:46 +0200169 o->min_bs[ddir] = min_bs;
170 o->max_bs[ddir] = max_bs;
Jens Axboe564ca972007-12-14 12:21:19 +0100171
172 /*
173 * now sort based on percentages, for ease of lookup
174 */
Elliott Hugheseda3a602017-05-19 18:53:02 -0700175 qsort(o->bssplit[ddir], o->bssplit_nr[ddir], sizeof(struct bssplit), bs_cmp);
Jens Axboe720e84a2009-04-21 08:29:55 +0200176 return 0;
Jens Axboe720e84a2009-04-21 08:29:55 +0200177}
178
Elliott Hugheseda3a602017-05-19 18:53:02 -0700179typedef int (split_parse_fn)(struct thread_options *, enum fio_ddir, char *);
180
181static int str_split_parse(struct thread_data *td, char *str, split_parse_fn *fn)
Jens Axboe720e84a2009-04-21 08:29:55 +0200182{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700183 char *odir, *ddir;
Jens Axboe720e84a2009-04-21 08:29:55 +0200184 int ret = 0;
185
Jens Axboe720e84a2009-04-21 08:29:55 +0200186 odir = strchr(str, ',');
187 if (odir) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200188 ddir = strchr(odir + 1, ',');
189 if (ddir) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700190 ret = fn(&td->o, DDIR_TRIM, ddir + 1);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200191 if (!ret)
192 *ddir = '\0';
193 } else {
194 char *op;
195
196 op = strdup(odir + 1);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700197 ret = fn(&td->o, DDIR_TRIM, op);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200198
199 free(op);
200 }
Jens Axboed79db122012-09-24 08:51:24 +0200201 if (!ret)
Elliott Hugheseda3a602017-05-19 18:53:02 -0700202 ret = fn(&td->o, DDIR_WRITE, odir + 1);
Jens Axboe720e84a2009-04-21 08:29:55 +0200203 if (!ret) {
204 *odir = '\0';
Elliott Hugheseda3a602017-05-19 18:53:02 -0700205 ret = fn(&td->o, DDIR_READ, str);
Jens Axboe720e84a2009-04-21 08:29:55 +0200206 }
207 } else {
208 char *op;
209
210 op = strdup(str);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700211 ret = fn(&td->o, DDIR_WRITE, op);
Jens Axboe720e84a2009-04-21 08:29:55 +0200212 free(op);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200213
214 if (!ret) {
215 op = strdup(str);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700216 ret = fn(&td->o, DDIR_TRIM, op);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200217 free(op);
218 }
Elliott Hugheseda3a602017-05-19 18:53:02 -0700219 if (!ret)
220 ret = fn(&td->o, DDIR_READ, str);
221 }
222
223 return ret;
224}
225
226static int str_bssplit_cb(void *data, const char *input)
227{
228 struct thread_data *td = cb_data_to_td(data);
229 char *str, *p;
230 int ret = 0;
231
232 p = str = strdup(input);
233
234 strip_blank_front(&str);
235 strip_blank_end(str);
236
237 ret = str_split_parse(td, str, bssplit_ddir);
238
239 if (parse_dryrun()) {
240 int i;
241
242 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
243 free(td->o.bssplit[i]);
244 td->o.bssplit[i] = NULL;
245 td->o.bssplit_nr[i] = 0;
246 }
Jens Axboe720e84a2009-04-21 08:29:55 +0200247 }
Jens Axboe564ca972007-12-14 12:21:19 +0100248
249 free(p);
Jens Axboe720e84a2009-04-21 08:29:55 +0200250 return ret;
Jens Axboe564ca972007-12-14 12:21:19 +0100251}
252
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400253static int str2error(char *str)
254{
Jens Axboea94eb992012-09-24 18:46:34 +0200255 const char *err[] = { "EPERM", "ENOENT", "ESRCH", "EINTR", "EIO",
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400256 "ENXIO", "E2BIG", "ENOEXEC", "EBADF",
257 "ECHILD", "EAGAIN", "ENOMEM", "EACCES",
258 "EFAULT", "ENOTBLK", "EBUSY", "EEXIST",
259 "EXDEV", "ENODEV", "ENOTDIR", "EISDIR",
260 "EINVAL", "ENFILE", "EMFILE", "ENOTTY",
261 "ETXTBSY","EFBIG", "ENOSPC", "ESPIPE",
Jens Axboea94eb992012-09-24 18:46:34 +0200262 "EROFS","EMLINK", "EPIPE", "EDOM", "ERANGE" };
Elliott Hugheseda3a602017-05-19 18:53:02 -0700263 int i = 0, num = sizeof(err) / sizeof(char *);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400264
Jens Axboea94eb992012-09-24 18:46:34 +0200265 while (i < num) {
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400266 if (!strcmp(err[i], str))
267 return i + 1;
268 i++;
269 }
270 return 0;
271}
272
273static int ignore_error_type(struct thread_data *td, int etype, char *str)
274{
275 unsigned int i;
276 int *error;
277 char *fname;
278
279 if (etype >= ERROR_TYPE_CNT) {
280 log_err("Illegal error type\n");
281 return 1;
282 }
283
284 td->o.ignore_error_nr[etype] = 4;
285 error = malloc(4 * sizeof(struct bssplit));
286
287 i = 0;
288 while ((fname = strsep(&str, ":")) != NULL) {
289
290 if (!strlen(fname))
291 break;
292
293 /*
294 * grow struct buffer, if needed
295 */
296 if (i == td->o.ignore_error_nr[etype]) {
297 td->o.ignore_error_nr[etype] <<= 1;
298 error = realloc(error, td->o.ignore_error_nr[etype]
299 * sizeof(int));
300 }
301 if (fname[0] == 'E') {
302 error[i] = str2error(fname);
303 } else {
304 error[i] = atoi(fname);
305 if (error[i] < 0)
Jens Axboe1616e022014-04-14 08:59:17 -0600306 error[i] = -error[i];
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400307 }
308 if (!error[i]) {
309 log_err("Unknown error %s, please use number value \n",
310 fname);
Erwan Velu0fddbf72013-07-22 23:46:10 +0200311 free(error);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400312 return 1;
313 }
314 i++;
315 }
316 if (i) {
317 td->o.continue_on_error |= 1 << etype;
318 td->o.ignore_error_nr[etype] = i;
319 td->o.ignore_error[etype] = error;
Jens Axboec7b086b2014-04-11 11:20:29 -0600320 } else
321 free(error);
322
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400323 return 0;
324
325}
326
327static int str_ignore_error_cb(void *data, const char *input)
328{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700329 struct thread_data *td = cb_data_to_td(data);
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400330 char *str, *p, *n;
331 int type = 0, ret = 1;
Jens Axboe52c0cea2013-09-06 10:07:37 -0600332
333 if (parse_dryrun())
334 return 0;
335
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +0400336 p = str = strdup(input);
337
338 strip_blank_front(&str);
339 strip_blank_end(str);
340
341 while (p) {
342 n = strchr(p, ',');
343 if (n)
344 *n++ = '\0';
345 ret = ignore_error_type(td, type, p);
346 if (ret)
347 break;
348 p = n;
349 type++;
350 }
351 free(str);
352 return ret;
353}
354
Jens Axboe211097b2007-03-22 18:56:45 +0100355static int str_rw_cb(void *data, const char *str)
356{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700357 struct thread_data *td = cb_data_to_td(data);
Jens Axboe83ea4222012-03-28 14:01:46 +0200358 struct thread_options *o = &td->o;
Jens Axboe27ca9492014-04-11 11:25:32 -0600359 char *nr;
Jens Axboe211097b2007-03-22 18:56:45 +0100360
Jens Axboe52c0cea2013-09-06 10:07:37 -0600361 if (parse_dryrun())
362 return 0;
363
Jens Axboe83ea4222012-03-28 14:01:46 +0200364 o->ddir_seq_nr = 1;
365 o->ddir_seq_add = 0;
Jens Axboe059b0802011-08-25 09:09:37 +0200366
Jens Axboe27ca9492014-04-11 11:25:32 -0600367 nr = get_opt_postfix(str);
Jens Axboe059b0802011-08-25 09:09:37 +0200368 if (!nr)
369 return 0;
370
371 if (td_random(td))
Jens Axboe83ea4222012-03-28 14:01:46 +0200372 o->ddir_seq_nr = atoi(nr);
Jens Axboe059b0802011-08-25 09:09:37 +0200373 else {
374 long long val;
375
Stephen M. Cameron79dc9142014-11-10 20:31:26 -0700376 if (str_to_decimal(nr, &val, 1, o, 0, 0)) {
Jens Axboe059b0802011-08-25 09:09:37 +0200377 log_err("fio: rw postfix parsing failed\n");
378 free(nr);
379 return 1;
380 }
381
Jens Axboe83ea4222012-03-28 14:01:46 +0200382 o->ddir_seq_add = val;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100383 }
Jens Axboe211097b2007-03-22 18:56:45 +0100384
Jens Axboe059b0802011-08-25 09:09:37 +0200385 free(nr);
Jens Axboe211097b2007-03-22 18:56:45 +0100386 return 0;
387}
388
Jens Axboe214e1ec2007-03-15 10:48:13 +0100389static int str_mem_cb(void *data, const char *mem)
390{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700391 struct thread_data *td = cb_data_to_td(data);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100392
Elliott Hugheseda3a602017-05-19 18:53:02 -0700393 if (td->o.mem_type == MEM_MMAPHUGE || td->o.mem_type == MEM_MMAP ||
394 td->o.mem_type == MEM_MMAPSHARED)
Jens Axboe836fcc02013-01-24 09:08:45 -0700395 td->o.mmapfile = get_opt_postfix(mem);
Jens Axboe214e1ec2007-03-15 10:48:13 +0100396
397 return 0;
398}
399
Jens Axboec223da82010-03-24 13:23:53 +0100400static int fio_clock_source_cb(void *data, const char *str)
401{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700402 struct thread_data *td = cb_data_to_td(data);
Jens Axboec223da82010-03-24 13:23:53 +0100403
404 fio_clock_source = td->o.clocksource;
Jens Axboefa80fea2012-12-09 20:29:00 +0100405 fio_clock_source_set = 1;
Jens Axboe01423ea2012-12-14 20:37:06 +0100406 fio_clock_init();
Jens Axboec223da82010-03-24 13:23:53 +0100407 return 0;
408}
409
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400410static int str_rwmix_read_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200411{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700412 struct thread_data *td = cb_data_to_td(data);
Jens Axboecb499fc2008-05-28 10:33:32 +0200413
414 td->o.rwmix[DDIR_READ] = *val;
415 td->o.rwmix[DDIR_WRITE] = 100 - *val;
416 return 0;
417}
418
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400419static int str_rwmix_write_cb(void *data, unsigned long long *val)
Jens Axboecb499fc2008-05-28 10:33:32 +0200420{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700421 struct thread_data *td = cb_data_to_td(data);
Jens Axboecb499fc2008-05-28 10:33:32 +0200422
423 td->o.rwmix[DDIR_WRITE] = *val;
424 td->o.rwmix[DDIR_READ] = 100 - *val;
425 return 0;
426}
427
Jens Axboe214e1ec2007-03-15 10:48:13 +0100428static int str_exitall_cb(void)
429{
430 exitall_on_terminate = 1;
431 return 0;
432}
433
Jens Axboe214e1ec2007-03-15 10:48:13 +0100434#ifdef FIO_HAVE_CPU_AFFINITY
Jens Axboe50b58602014-02-28 15:08:25 -0800435int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu_index)
Jens Axboec2acfba2014-02-27 15:52:02 -0800436{
Jens Axboe50b58602014-02-28 15:08:25 -0800437 unsigned int i, index, cpus_in_mask;
Jens Axboec2acfba2014-02-27 15:52:02 -0800438 const long max_cpu = cpus_online();
Jens Axboec2acfba2014-02-27 15:52:02 -0800439
Jens Axboe50b58602014-02-28 15:08:25 -0800440 cpus_in_mask = fio_cpu_count(mask);
441 cpu_index = cpu_index % cpus_in_mask;
442
443 index = 0;
Jens Axboec2acfba2014-02-27 15:52:02 -0800444 for (i = 0; i < max_cpu; i++) {
Jens Axboe50b58602014-02-28 15:08:25 -0800445 if (!fio_cpu_isset(mask, i))
Jens Axboec2acfba2014-02-27 15:52:02 -0800446 continue;
Jens Axboe50b58602014-02-28 15:08:25 -0800447
448 if (cpu_index != index)
449 fio_cpu_clear(mask, i);
450
451 index++;
Jens Axboec2acfba2014-02-27 15:52:02 -0800452 }
453
454 return fio_cpu_count(mask);
455}
456
Cigy Cyriac85bc8332010-08-10 19:21:09 -0400457static int str_cpumask_cb(void *data, unsigned long long *val)
Jens Axboe214e1ec2007-03-15 10:48:13 +0100458{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700459 struct thread_data *td = cb_data_to_td(data);
Jens Axboed2e268b2007-06-15 10:33:49 +0200460 unsigned int i;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100461 long max_cpu;
Jens Axboed2ce18b2008-12-12 20:51:40 +0100462 int ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100463
Jens Axboe52c0cea2013-09-06 10:07:37 -0600464 if (parse_dryrun())
465 return 0;
466
Jens Axboed2ce18b2008-12-12 20:51:40 +0100467 ret = fio_cpuset_init(&td->o.cpumask);
468 if (ret < 0) {
469 log_err("fio: cpuset_init failed\n");
470 td_verror(td, ret, "fio_cpuset_init");
471 return 1;
472 }
473
Jens Axboec00a2282011-07-08 20:56:06 +0200474 max_cpu = cpus_online();
Jens Axboed2e268b2007-06-15 10:33:49 +0200475
Jens Axboe62a72732008-12-08 11:37:01 +0100476 for (i = 0; i < sizeof(int) * 8; i++) {
477 if ((1 << i) & *val) {
Elliott Hugheseda3a602017-05-19 18:53:02 -0700478 if (i >= max_cpu) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100479 log_err("fio: CPU %d too large (max=%ld)\n", i,
Elliott Hugheseda3a602017-05-19 18:53:02 -0700480 max_cpu - 1);
Jens Axboeb03daaf2008-12-08 20:31:43 +0100481 return 1;
482 }
Jens Axboe62a72732008-12-08 11:37:01 +0100483 dprint(FD_PARSE, "set cpu allowed %d\n", i);
Jens Axboe6d459ee2008-12-12 20:02:58 +0100484 fio_cpu_set(&td->o.cpumask, i);
Jens Axboe62a72732008-12-08 11:37:01 +0100485 }
486 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200487
Jens Axboe214e1ec2007-03-15 10:48:13 +0100488 return 0;
489}
490
Jens Axboee8462bd2009-07-06 12:59:04 +0200491static int set_cpus_allowed(struct thread_data *td, os_cpu_mask_t *mask,
492 const char *input)
Jens Axboed2e268b2007-06-15 10:33:49 +0200493{
Jens Axboed2e268b2007-06-15 10:33:49 +0200494 char *cpu, *str, *p;
Jens Axboeb03daaf2008-12-08 20:31:43 +0100495 long max_cpu;
Jens Axboe19608d62008-12-08 15:03:12 +0100496 int ret = 0;
Jens Axboed2e268b2007-06-15 10:33:49 +0200497
Jens Axboee8462bd2009-07-06 12:59:04 +0200498 ret = fio_cpuset_init(mask);
Jens Axboed2ce18b2008-12-12 20:51:40 +0100499 if (ret < 0) {
500 log_err("fio: cpuset_init failed\n");
501 td_verror(td, ret, "fio_cpuset_init");
502 return 1;
503 }
Jens Axboed2e268b2007-06-15 10:33:49 +0200504
505 p = str = strdup(input);
506
507 strip_blank_front(&str);
508 strip_blank_end(str);
509
Jens Axboec00a2282011-07-08 20:56:06 +0200510 max_cpu = cpus_online();
Jens Axboeb03daaf2008-12-08 20:31:43 +0100511
Jens Axboed2e268b2007-06-15 10:33:49 +0200512 while ((cpu = strsep(&str, ",")) != NULL) {
Jens Axboe62a72732008-12-08 11:37:01 +0100513 char *str2, *cpu2;
514 int icpu, icpu2;
515
Jens Axboed2e268b2007-06-15 10:33:49 +0200516 if (!strlen(cpu))
517 break;
Jens Axboe62a72732008-12-08 11:37:01 +0100518
519 str2 = cpu;
520 icpu2 = -1;
521 while ((cpu2 = strsep(&str2, "-")) != NULL) {
522 if (!strlen(cpu2))
523 break;
524
525 icpu2 = atoi(cpu2);
526 }
527
528 icpu = atoi(cpu);
529 if (icpu2 == -1)
530 icpu2 = icpu;
531 while (icpu <= icpu2) {
Jens Axboe6d459ee2008-12-12 20:02:58 +0100532 if (icpu >= FIO_MAX_CPUS) {
Jens Axboe19608d62008-12-08 15:03:12 +0100533 log_err("fio: your OS only supports up to"
Jens Axboe6d459ee2008-12-12 20:02:58 +0100534 " %d CPUs\n", (int) FIO_MAX_CPUS);
Jens Axboe19608d62008-12-08 15:03:12 +0100535 ret = 1;
536 break;
537 }
Elliott Hugheseda3a602017-05-19 18:53:02 -0700538 if (icpu >= max_cpu) {
Jens Axboeb03daaf2008-12-08 20:31:43 +0100539 log_err("fio: CPU %d too large (max=%ld)\n",
Elliott Hugheseda3a602017-05-19 18:53:02 -0700540 icpu, max_cpu - 1);
Jens Axboeb03daaf2008-12-08 20:31:43 +0100541 ret = 1;
542 break;
543 }
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200544
Jens Axboe62a72732008-12-08 11:37:01 +0100545 dprint(FD_PARSE, "set cpu allowed %d\n", icpu);
Jens Axboee8462bd2009-07-06 12:59:04 +0200546 fio_cpu_set(mask, icpu);
Jens Axboe62a72732008-12-08 11:37:01 +0100547 icpu++;
548 }
Jens Axboe19608d62008-12-08 15:03:12 +0100549 if (ret)
550 break;
Jens Axboed2e268b2007-06-15 10:33:49 +0200551 }
552
553 free(p);
Jens Axboe19608d62008-12-08 15:03:12 +0100554 return ret;
Jens Axboed2e268b2007-06-15 10:33:49 +0200555}
Jens Axboee8462bd2009-07-06 12:59:04 +0200556
557static int str_cpus_allowed_cb(void *data, const char *input)
558{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700559 struct thread_data *td = cb_data_to_td(data);
Jens Axboee8462bd2009-07-06 12:59:04 +0200560
Jens Axboe52c0cea2013-09-06 10:07:37 -0600561 if (parse_dryrun())
562 return 0;
563
Jens Axboe94b360f2014-12-09 13:17:33 -0700564 return set_cpus_allowed(td, &td->o.cpumask, input);
Jens Axboee8462bd2009-07-06 12:59:04 +0200565}
566
567static int str_verify_cpus_allowed_cb(void *data, const char *input)
568{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700569 struct thread_data *td = cb_data_to_td(data);
570
571 if (parse_dryrun())
572 return 0;
Jens Axboee8462bd2009-07-06 12:59:04 +0200573
Jens Axboe94b360f2014-12-09 13:17:33 -0700574 return set_cpus_allowed(td, &td->o.verify_cpumask, input);
Jens Axboee8462bd2009-07-06 12:59:04 +0200575}
Elliott Hugheseda3a602017-05-19 18:53:02 -0700576
577#ifdef CONFIG_ZLIB
578static int str_log_cpus_allowed_cb(void *data, const char *input)
579{
580 struct thread_data *td = cb_data_to_td(data);
581
582 if (parse_dryrun())
583 return 0;
584
585 return set_cpus_allowed(td, &td->o.log_gz_cpumask, input);
586}
587#endif /* CONFIG_ZLIB */
588
589#endif /* FIO_HAVE_CPU_AFFINITY */
Jens Axboed2e268b2007-06-15 10:33:49 +0200590
Jens Axboe67bf9822013-01-10 11:23:19 +0100591#ifdef CONFIG_LIBNUMA
Yufei Rend0b937e2012-10-19 23:11:52 -0400592static int str_numa_cpunodes_cb(void *data, char *input)
593{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700594 struct thread_data *td = cb_data_to_td(data);
Daniel Gollub43522842014-05-01 17:07:49 +0200595 struct bitmask *verify_bitmask;
Yufei Rend0b937e2012-10-19 23:11:52 -0400596
Jens Axboe52c0cea2013-09-06 10:07:37 -0600597 if (parse_dryrun())
598 return 0;
599
Yufei Rend0b937e2012-10-19 23:11:52 -0400600 /* numa_parse_nodestring() parses a character string list
601 * of nodes into a bit mask. The bit mask is allocated by
602 * numa_allocate_nodemask(), so it should be freed by
603 * numa_free_nodemask().
604 */
Daniel Gollub43522842014-05-01 17:07:49 +0200605 verify_bitmask = numa_parse_nodestring(input);
606 if (verify_bitmask == NULL) {
Yufei Rend0b937e2012-10-19 23:11:52 -0400607 log_err("fio: numa_parse_nodestring failed\n");
608 td_verror(td, 1, "str_numa_cpunodes_cb");
609 return 1;
610 }
Daniel Gollub43522842014-05-01 17:07:49 +0200611 numa_free_nodemask(verify_bitmask);
Yufei Rend0b937e2012-10-19 23:11:52 -0400612
Daniel Gollub43522842014-05-01 17:07:49 +0200613 td->o.numa_cpunodes = strdup(input);
Yufei Rend0b937e2012-10-19 23:11:52 -0400614 return 0;
615}
616
617static int str_numa_mpol_cb(void *data, char *input)
618{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700619 struct thread_data *td = cb_data_to_td(data);
Yufei Rend0b937e2012-10-19 23:11:52 -0400620 const char * const policy_types[] =
Jens Axboe05d6f442013-07-17 16:15:31 -0600621 { "default", "prefer", "bind", "interleave", "local", NULL };
Yufei Rend0b937e2012-10-19 23:11:52 -0400622 int i;
Jens Axboe52c0cea2013-09-06 10:07:37 -0600623 char *nodelist;
Daniel Gollub43522842014-05-01 17:07:49 +0200624 struct bitmask *verify_bitmask;
Yufei Rend0b937e2012-10-19 23:11:52 -0400625
Jens Axboe52c0cea2013-09-06 10:07:37 -0600626 if (parse_dryrun())
627 return 0;
628
629 nodelist = strchr(input, ':');
Yufei Rend0b937e2012-10-19 23:11:52 -0400630 if (nodelist) {
631 /* NUL-terminate mode */
632 *nodelist++ = '\0';
633 }
634
635 for (i = 0; i <= MPOL_LOCAL; i++) {
636 if (!strcmp(input, policy_types[i])) {
637 td->o.numa_mem_mode = i;
638 break;
639 }
640 }
641 if (i > MPOL_LOCAL) {
642 log_err("fio: memory policy should be: default, prefer, bind, interleave, local\n");
643 goto out;
644 }
645
646 switch (td->o.numa_mem_mode) {
647 case MPOL_PREFERRED:
648 /*
649 * Insist on a nodelist of one node only
650 */
651 if (nodelist) {
652 char *rest = nodelist;
653 while (isdigit(*rest))
654 rest++;
655 if (*rest) {
656 log_err("fio: one node only for \'prefer\'\n");
657 goto out;
658 }
659 } else {
660 log_err("fio: one node is needed for \'prefer\'\n");
661 goto out;
662 }
663 break;
664 case MPOL_INTERLEAVE:
665 /*
666 * Default to online nodes with memory if no nodelist
667 */
668 if (!nodelist)
669 nodelist = strdup("all");
670 break;
671 case MPOL_LOCAL:
672 case MPOL_DEFAULT:
673 /*
674 * Don't allow a nodelist
675 */
676 if (nodelist) {
677 log_err("fio: NO nodelist for \'local\'\n");
678 goto out;
679 }
680 break;
681 case MPOL_BIND:
682 /*
683 * Insist on a nodelist
684 */
685 if (!nodelist) {
686 log_err("fio: a nodelist is needed for \'bind\'\n");
687 goto out;
688 }
689 break;
690 }
691
692
693 /* numa_parse_nodestring() parses a character string list
694 * of nodes into a bit mask. The bit mask is allocated by
695 * numa_allocate_nodemask(), so it should be freed by
696 * numa_free_nodemask().
697 */
698 switch (td->o.numa_mem_mode) {
699 case MPOL_PREFERRED:
700 td->o.numa_mem_prefer_node = atoi(nodelist);
701 break;
702 case MPOL_INTERLEAVE:
703 case MPOL_BIND:
Daniel Gollub43522842014-05-01 17:07:49 +0200704 verify_bitmask = numa_parse_nodestring(nodelist);
705 if (verify_bitmask == NULL) {
Yufei Rend0b937e2012-10-19 23:11:52 -0400706 log_err("fio: numa_parse_nodestring failed\n");
707 td_verror(td, 1, "str_numa_memnodes_cb");
708 return 1;
709 }
Daniel Gollub43522842014-05-01 17:07:49 +0200710 td->o.numa_memnodes = strdup(nodelist);
711 numa_free_nodemask(verify_bitmask);
Manish Mandlik44e2ab52014-08-14 11:45:16 -0600712
Yufei Rend0b937e2012-10-19 23:11:52 -0400713 break;
714 case MPOL_LOCAL:
715 case MPOL_DEFAULT:
716 default:
717 break;
718 }
719
Yufei Rend0b937e2012-10-19 23:11:52 -0400720 return 0;
Yufei Rend0b937e2012-10-19 23:11:52 -0400721out:
722 return 1;
723}
724#endif
725
Jens Axboe214e1ec2007-03-15 10:48:13 +0100726static int str_fst_cb(void *data, const char *str)
727{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700728 struct thread_data *td = cb_data_to_td(data);
729 double val;
730 bool done = false;
731 char *nr;
Jens Axboe214e1ec2007-03-15 10:48:13 +0100732
733 td->file_service_nr = 1;
Elliott Hugheseda3a602017-05-19 18:53:02 -0700734
735 switch (td->o.file_service_type) {
736 case FIO_FSERVICE_RANDOM:
737 case FIO_FSERVICE_RR:
738 case FIO_FSERVICE_SEQ:
739 nr = get_opt_postfix(str);
740 if (nr) {
741 td->file_service_nr = atoi(nr);
742 free(nr);
743 }
744 done = true;
745 break;
746 case FIO_FSERVICE_ZIPF:
747 val = FIO_DEF_ZIPF;
748 break;
749 case FIO_FSERVICE_PARETO:
750 val = FIO_DEF_PARETO;
751 break;
752 case FIO_FSERVICE_GAUSS:
753 val = 0.0;
754 break;
755 default:
756 log_err("fio: bad file service type: %d\n", td->o.file_service_type);
757 return 1;
758 }
759
760 if (done)
761 return 0;
762
763 nr = get_opt_postfix(str);
764 if (nr && !str_to_float(nr, &val, 0)) {
765 log_err("fio: file service type random postfix parsing failed\n");
Jens Axboe182ec6e2008-11-14 13:06:06 +0100766 free(nr);
Elliott Hugheseda3a602017-05-19 18:53:02 -0700767 return 1;
768 }
769
770 free(nr);
771
772 switch (td->o.file_service_type) {
773 case FIO_FSERVICE_ZIPF:
774 if (val == 1.00) {
775 log_err("fio: zipf theta must be different than 1.0\n");
776 return 1;
777 }
778 if (parse_dryrun())
779 return 0;
780 td->zipf_theta = val;
781 break;
782 case FIO_FSERVICE_PARETO:
783 if (val <= 0.00 || val >= 1.00) {
784 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
785 return 1;
786 }
787 if (parse_dryrun())
788 return 0;
789 td->pareto_h = val;
790 break;
791 case FIO_FSERVICE_GAUSS:
792 if (val < 0.00 || val >= 100.00) {
793 log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
794 return 1;
795 }
796 if (parse_dryrun())
797 return 0;
798 td->gauss_dev = val;
799 break;
Jens Axboe182ec6e2008-11-14 13:06:06 +0100800 }
Jens Axboe214e1ec2007-03-15 10:48:13 +0100801
802 return 0;
803}
804
Jens Axboe67bf9822013-01-10 11:23:19 +0100805#ifdef CONFIG_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +0100806static int str_sfr_cb(void *data, const char *str)
807{
Elliott Hugheseda3a602017-05-19 18:53:02 -0700808 struct thread_data *td = cb_data_to_td(data);
Jens Axboe44f29692010-03-09 20:09:44 +0100809 char *nr = get_opt_postfix(str);
810
811 td->sync_file_range_nr = 1;
812 if (nr) {
813 td->sync_file_range_nr = atoi(nr);
814 free(nr);
815 }
816
817 return 0;
818}
Jens Axboe3ae06372010-03-19 19:17:15 +0100819#endif
Jens Axboe44f29692010-03-09 20:09:44 +0100820
Elliott Hugheseda3a602017-05-19 18:53:02 -0700821static int zone_cmp(const void *p1, const void *p2)
822{
823 const struct zone_split *zsp1 = p1;
824 const struct zone_split *zsp2 = p2;
825
826 return (int) zsp2->access_perc - (int) zsp1->access_perc;
827}
828
829static int zone_split_ddir(struct thread_options *o, enum fio_ddir ddir,
830 char *str)
831{
832 unsigned int i, perc, perc_missing, sperc, sperc_missing;
833 struct split split;
834
835 memset(&split, 0, sizeof(split));
836
837 if (split_parse_ddir(o, &split, ddir, str))
838 return 1;
839 if (!split.nr)
840 return 0;
841
842 o->zone_split[ddir] = malloc(split.nr * sizeof(struct zone_split));
843 o->zone_split_nr[ddir] = split.nr;
844 for (i = 0; i < split.nr; i++) {
845 o->zone_split[ddir][i].access_perc = split.val1[i];
846 o->zone_split[ddir][i].size_perc = split.val2[i];
847 }
848
849 /*
850 * Now check if the percentages add up, and how much is missing
851 */
852 perc = perc_missing = 0;
853 sperc = sperc_missing = 0;
854 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
855 struct zone_split *zsp = &o->zone_split[ddir][i];
856
857 if (zsp->access_perc == (uint8_t) -1U)
858 perc_missing++;
859 else
860 perc += zsp->access_perc;
861
862 if (zsp->size_perc == (uint8_t) -1U)
863 sperc_missing++;
864 else
865 sperc += zsp->size_perc;
866
867 }
868
869 if (perc > 100 || sperc > 100) {
870 log_err("fio: zone_split percentages add to more than 100%%\n");
871 free(o->zone_split[ddir]);
872 o->zone_split[ddir] = NULL;
873 return 1;
874 }
875 if (perc < 100) {
876 log_err("fio: access percentage don't add up to 100 for zoned "
877 "random distribution (got=%u)\n", perc);
878 free(o->zone_split[ddir]);
879 o->zone_split[ddir] = NULL;
880 return 1;
881 }
882
883 /*
884 * If values didn't have a percentage set, divide the remains between
885 * them.
886 */
887 if (perc_missing) {
888 if (perc_missing == 1 && o->zone_split_nr[ddir] == 1)
889 perc = 100;
890 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
891 struct zone_split *zsp = &o->zone_split[ddir][i];
892
893 if (zsp->access_perc == (uint8_t) -1U)
894 zsp->access_perc = (100 - perc) / perc_missing;
895 }
896 }
897 if (sperc_missing) {
898 if (sperc_missing == 1 && o->zone_split_nr[ddir] == 1)
899 sperc = 100;
900 for (i = 0; i < o->zone_split_nr[ddir]; i++) {
901 struct zone_split *zsp = &o->zone_split[ddir][i];
902
903 if (zsp->size_perc == (uint8_t) -1U)
904 zsp->size_perc = (100 - sperc) / sperc_missing;
905 }
906 }
907
908 /*
909 * now sort based on percentages, for ease of lookup
910 */
911 qsort(o->zone_split[ddir], o->zone_split_nr[ddir], sizeof(struct zone_split), zone_cmp);
912 return 0;
913}
914
915static void __td_zone_gen_index(struct thread_data *td, enum fio_ddir ddir)
916{
917 unsigned int i, j, sprev, aprev;
918
919 td->zone_state_index[ddir] = malloc(sizeof(struct zone_split_index) * 100);
920
921 sprev = aprev = 0;
922 for (i = 0; i < td->o.zone_split_nr[ddir]; i++) {
923 struct zone_split *zsp = &td->o.zone_split[ddir][i];
924
925 for (j = aprev; j < aprev + zsp->access_perc; j++) {
926 struct zone_split_index *zsi = &td->zone_state_index[ddir][j];
927
928 zsi->size_perc = sprev + zsp->size_perc;
929 zsi->size_perc_prev = sprev;
930 }
931
932 aprev += zsp->access_perc;
933 sprev += zsp->size_perc;
934 }
935}
936
937/*
938 * Generate state table for indexes, so we don't have to do it inline from
939 * the hot IO path
940 */
941static void td_zone_gen_index(struct thread_data *td)
942{
943 int i;
944
945 td->zone_state_index = malloc(DDIR_RWDIR_CNT *
946 sizeof(struct zone_split_index *));
947
948 for (i = 0; i < DDIR_RWDIR_CNT; i++)
949 __td_zone_gen_index(td, i);
950}
951
952static int parse_zoned_distribution(struct thread_data *td, const char *input)
953{
954 char *str, *p;
955 int i, ret = 0;
956
957 p = str = strdup(input);
958
959 strip_blank_front(&str);
960 strip_blank_end(str);
961
962 /* We expect it to start like that, bail if not */
963 if (strncmp(str, "zoned:", 6)) {
964 log_err("fio: mismatch in zoned input <%s>\n", str);
965 free(p);
966 return 1;
967 }
968 str += strlen("zoned:");
969
970 ret = str_split_parse(td, str, zone_split_ddir);
971
972 free(p);
973
974 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
975 int j;
976
977 dprint(FD_PARSE, "zone ddir %d (nr=%u): \n", i, td->o.zone_split_nr[i]);
978
979 for (j = 0; j < td->o.zone_split_nr[i]; j++) {
980 struct zone_split *zsp = &td->o.zone_split[i][j];
981
982 dprint(FD_PARSE, "\t%d: %u/%u\n", j, zsp->access_perc,
983 zsp->size_perc);
984 }
985 }
986
987 if (parse_dryrun()) {
988 int i;
989
990 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
991 free(td->o.zone_split[i]);
992 td->o.zone_split[i] = NULL;
993 td->o.zone_split_nr[i] = 0;
994 }
995
996 return ret;
997 }
998
999 if (!ret)
1000 td_zone_gen_index(td);
1001 else {
1002 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1003 td->o.zone_split_nr[i] = 0;
1004 }
1005
1006 return ret;
1007}
1008
Jens Axboee25839d2012-11-06 10:49:42 +01001009static int str_random_distribution_cb(void *data, const char *str)
1010{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001011 struct thread_data *td = cb_data_to_td(data);
Jens Axboee25839d2012-11-06 10:49:42 +01001012 double val;
1013 char *nr;
1014
Jens Axboe925fee32012-11-06 13:50:32 +01001015 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
Jens Axboeb357a222015-01-04 10:02:34 -07001016 val = FIO_DEF_ZIPF;
Jens Axboe925fee32012-11-06 13:50:32 +01001017 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
Jens Axboeb357a222015-01-04 10:02:34 -07001018 val = FIO_DEF_PARETO;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001019 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
1020 val = 0.0;
1021 else if (td->o.random_distribution == FIO_RAND_DIST_ZONED)
1022 return parse_zoned_distribution(td, str);
Jens Axboe925fee32012-11-06 13:50:32 +01001023 else
Jens Axboee25839d2012-11-06 10:49:42 +01001024 return 0;
1025
1026 nr = get_opt_postfix(str);
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07001027 if (nr && !str_to_float(nr, &val, 0)) {
Jens Axboee25839d2012-11-06 10:49:42 +01001028 log_err("fio: random postfix parsing failed\n");
1029 free(nr);
1030 return 1;
1031 }
1032
Jens Axboe078189c2012-11-07 13:47:22 +01001033 free(nr);
1034
Jens Axboe18ded912012-11-08 08:36:00 +01001035 if (td->o.random_distribution == FIO_RAND_DIST_ZIPF) {
1036 if (val == 1.00) {
1037 log_err("fio: zipf theta must different than 1.0\n");
1038 return 1;
1039 }
Elliott Hugheseda3a602017-05-19 18:53:02 -07001040 if (parse_dryrun())
1041 return 0;
Jens Axboe1e5324e2012-11-14 14:25:31 -07001042 td->o.zipf_theta.u.f = val;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001043 } else if (td->o.random_distribution == FIO_RAND_DIST_PARETO) {
Jens Axboe078189c2012-11-07 13:47:22 +01001044 if (val <= 0.00 || val >= 1.00) {
1045 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
1046 return 1;
1047 }
Elliott Hugheseda3a602017-05-19 18:53:02 -07001048 if (parse_dryrun())
1049 return 0;
Jens Axboe1e5324e2012-11-14 14:25:31 -07001050 td->o.pareto_h.u.f = val;
Elliott Hugheseda3a602017-05-19 18:53:02 -07001051 } else {
1052 if (val < 0.00 || val >= 100.0) {
1053 log_err("fio: normal deviation out of range (0 <= input < 100.0)\n");
1054 return 1;
1055 }
1056 if (parse_dryrun())
1057 return 0;
1058 td->o.gauss_dev.u.f = val;
Jens Axboe078189c2012-11-07 13:47:22 +01001059 }
Jens Axboe925fee32012-11-06 13:50:32 +01001060
Jens Axboee25839d2012-11-06 10:49:42 +01001061 return 0;
1062}
1063
Elliott Hugheseda3a602017-05-19 18:53:02 -07001064static int str_steadystate_cb(void *data, const char *str)
1065{
1066 struct thread_data *td = cb_data_to_td(data);
1067 double val;
1068 char *nr;
1069 char *pct;
1070 long long ll;
1071
1072 if (td->o.ss_state != FIO_SS_IOPS && td->o.ss_state != FIO_SS_IOPS_SLOPE &&
1073 td->o.ss_state != FIO_SS_BW && td->o.ss_state != FIO_SS_BW_SLOPE) {
1074 /* should be impossible to get here */
1075 log_err("fio: unknown steady state criterion\n");
1076 return 1;
1077 }
1078
1079 nr = get_opt_postfix(str);
1080 if (!nr) {
1081 log_err("fio: steadystate threshold must be specified in addition to criterion\n");
1082 free(nr);
1083 return 1;
1084 }
1085
1086 /* ENHANCEMENT Allow fio to understand size=10.2% and use here */
1087 pct = strstr(nr, "%");
1088 if (pct) {
1089 *pct = '\0';
1090 strip_blank_end(nr);
1091 if (!str_to_float(nr, &val, 0)) {
1092 log_err("fio: could not parse steadystate threshold percentage\n");
1093 free(nr);
1094 return 1;
1095 }
1096
1097 dprint(FD_PARSE, "set steady state threshold to %f%%\n", val);
1098 free(nr);
1099 if (parse_dryrun())
1100 return 0;
1101
1102 td->o.ss_state |= __FIO_SS_PCT;
1103 td->o.ss_limit.u.f = val;
1104 } else if (td->o.ss_state & __FIO_SS_IOPS) {
1105 if (!str_to_float(nr, &val, 0)) {
1106 log_err("fio: steadystate IOPS threshold postfix parsing failed\n");
1107 free(nr);
1108 return 1;
1109 }
1110
1111 dprint(FD_PARSE, "set steady state IOPS threshold to %f\n", val);
1112 free(nr);
1113 if (parse_dryrun())
1114 return 0;
1115
1116 td->o.ss_limit.u.f = val;
1117 } else { /* bandwidth criterion */
1118 if (str_to_decimal(nr, &ll, 1, td, 0, 0)) {
1119 log_err("fio: steadystate BW threshold postfix parsing failed\n");
1120 free(nr);
1121 return 1;
1122 }
1123
1124 dprint(FD_PARSE, "set steady state BW threshold to %lld\n", ll);
1125 free(nr);
1126 if (parse_dryrun())
1127 return 0;
1128
1129 td->o.ss_limit.u.f = (double) ll;
1130 }
1131
1132 td->ss.state = td->o.ss_state;
1133 return 0;
1134}
1135
Jens Axboe8e827d32009-08-04 09:51:48 +02001136/*
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001137 * Return next name in the string. Files are separated with ':'. If the ':'
Jens Axboe8e827d32009-08-04 09:51:48 +02001138 * is escaped with a '\', then that ':' is part of the filename and does not
1139 * indicate a new file.
1140 */
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001141static char *get_next_name(char **ptr)
Jens Axboe8e827d32009-08-04 09:51:48 +02001142{
1143 char *str = *ptr;
1144 char *p, *start;
1145
1146 if (!str || !strlen(str))
1147 return NULL;
1148
1149 start = str;
1150 do {
1151 /*
1152 * No colon, we are done
1153 */
1154 p = strchr(str, ':');
1155 if (!p) {
1156 *ptr = NULL;
1157 break;
1158 }
1159
1160 /*
1161 * We got a colon, but it's the first character. Skip and
1162 * continue
1163 */
1164 if (p == start) {
1165 str = ++start;
1166 continue;
1167 }
1168
1169 if (*(p - 1) != '\\') {
1170 *p = '\0';
1171 *ptr = p + 1;
1172 break;
1173 }
1174
1175 memmove(p - 1, p, strlen(p) + 1);
1176 str = p;
1177 } while (1);
1178
1179 return start;
1180}
1181
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001182
1183static int get_max_name_idx(char *input)
1184{
1185 unsigned int cur_idx;
1186 char *str, *p;
1187
1188 p = str = strdup(input);
1189 for (cur_idx = 0; ; cur_idx++)
1190 if (get_next_name(&str) == NULL)
1191 break;
1192
1193 free(p);
1194 return cur_idx;
1195}
1196
1197/*
1198 * Returns the directory at the index, indexes > entires will be
1199 * assigned via modulo division of the index
1200 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001201int set_name_idx(char *target, size_t tlen, char *input, int index,
1202 bool unique_filename)
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001203{
1204 unsigned int cur_idx;
1205 int len;
1206 char *fname, *str, *p;
1207
1208 p = str = strdup(input);
1209
1210 index %= get_max_name_idx(input);
1211 for (cur_idx = 0; cur_idx <= index; cur_idx++)
1212 fname = get_next_name(&str);
1213
Elliott Hugheseda3a602017-05-19 18:53:02 -07001214 if (client_sockaddr_str[0] && unique_filename) {
1215 len = snprintf(target, tlen, "%s/%s.", fname,
1216 client_sockaddr_str);
1217 } else
1218 len = snprintf(target, tlen, "%s/", fname);
1219
1220 target[tlen - 1] = '\0';
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001221 free(p);
1222
1223 return len;
1224}
1225
Jens Axboe214e1ec2007-03-15 10:48:13 +01001226static int str_filename_cb(void *data, const char *input)
1227{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001228 struct thread_data *td = cb_data_to_td(data);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001229 char *fname, *str, *p;
1230
1231 p = str = strdup(input);
1232
1233 strip_blank_front(&str);
1234 strip_blank_end(str);
1235
Elliott Hugheseda3a602017-05-19 18:53:02 -07001236 /*
1237 * Ignore what we may already have from nrfiles option.
1238 */
Jens Axboe214e1ec2007-03-15 10:48:13 +01001239 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001240 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001241
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001242 while ((fname = get_next_name(&str)) != NULL) {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001243 if (!strlen(fname))
1244 break;
Jens Axboe5903e7b2014-02-26 13:42:13 -08001245 add_file(td, fname, 0, 1);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001246 }
1247
1248 free(p);
1249 return 0;
1250}
1251
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001252static int str_directory_cb(void *data, const char fio_unused *unused)
Jens Axboe214e1ec2007-03-15 10:48:13 +01001253{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001254 struct thread_data *td = cb_data_to_td(data);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001255 struct stat sb;
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001256 char *dirname, *str, *p;
1257 int ret = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001258
Jens Axboef9633d72013-09-06 09:59:56 -06001259 if (parse_dryrun())
1260 return 0;
1261
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001262 p = str = strdup(td->o.directory);
1263 while ((dirname = get_next_name(&str)) != NULL) {
1264 if (lstat(dirname, &sb) < 0) {
1265 ret = errno;
Jens Axboe921c7662008-03-26 09:17:55 +01001266
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001267 log_err("fio: %s is not a directory\n", dirname);
1268 td_verror(td, ret, "lstat");
1269 goto out;
1270 }
1271 if (!S_ISDIR(sb.st_mode)) {
1272 log_err("fio: %s is not a directory\n", dirname);
1273 ret = 1;
1274 goto out;
1275 }
Jens Axboe214e1ec2007-03-15 10:48:13 +01001276 }
1277
Christian Ehrhardtbcbfeef2014-02-20 09:13:06 -08001278out:
1279 free(p);
1280 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001281}
1282
1283static int str_opendir_cb(void *data, const char fio_unused *str)
1284{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001285 struct thread_data *td = cb_data_to_td(data);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001286
Jens Axboe52c0cea2013-09-06 10:07:37 -06001287 if (parse_dryrun())
1288 return 0;
1289
Jens Axboe214e1ec2007-03-15 10:48:13 +01001290 if (!td->files_index)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001291 td->o.nr_files = 0;
Jens Axboe214e1ec2007-03-15 10:48:13 +01001292
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001293 return add_dir_files(td, td->o.opendir);
Jens Axboe214e1ec2007-03-15 10:48:13 +01001294}
1295
Jens Axboece35b1e2014-01-14 15:35:58 -07001296static int str_buffer_pattern_cb(void *data, const char *input)
1297{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001298 struct thread_data *td = cb_data_to_td(data);
Jens Axboece35b1e2014-01-14 15:35:58 -07001299 int ret;
1300
Elliott Hugheseda3a602017-05-19 18:53:02 -07001301 /* FIXME: for now buffer pattern does not support formats */
1302 ret = parse_and_fill_pattern(input, strlen(input), td->o.buffer_pattern,
1303 MAX_PATTERN_SIZE, NULL, 0, NULL, NULL);
1304 if (ret < 0)
1305 return 1;
Jens Axboece35b1e2014-01-14 15:35:58 -07001306
Elliott Hugheseda3a602017-05-19 18:53:02 -07001307 assert(ret != 0);
1308 td->o.buffer_pattern_bytes = ret;
Jens Axboece35b1e2014-01-14 15:35:58 -07001309
Elliott Hugheseda3a602017-05-19 18:53:02 -07001310 /*
1311 * If this job is doing any reading or has compression set,
1312 * ensure that we refill buffers for writes or we could be
1313 * invalidating the pattern through reads.
1314 */
1315 if (!td->o.compress_percentage && !td_read(td))
1316 td->o.refill_buffers = 0;
1317 else
1318 td->o.refill_buffers = 1;
1319
1320 td->o.scramble_buffers = 0;
1321 td->o.zero_buffers = 0;
1322
1323 return 0;
Jens Axboece35b1e2014-01-14 15:35:58 -07001324}
1325
Jens Axboebedc9dc2014-03-17 12:51:09 -06001326static int str_buffer_compress_cb(void *data, unsigned long long *il)
1327{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001328 struct thread_data *td = cb_data_to_td(data);
Jens Axboebedc9dc2014-03-17 12:51:09 -06001329
1330 td->flags |= TD_F_COMPRESS;
1331 td->o.compress_percentage = *il;
1332 return 0;
1333}
1334
Jens Axboee66dac22014-09-22 10:02:07 -06001335static int str_dedupe_cb(void *data, unsigned long long *il)
1336{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001337 struct thread_data *td = cb_data_to_td(data);
Jens Axboee66dac22014-09-22 10:02:07 -06001338
1339 td->flags |= TD_F_COMPRESS;
1340 td->o.dedupe_percentage = *il;
1341 td->o.refill_buffers = 1;
1342 return 0;
1343}
1344
Jens Axboece35b1e2014-01-14 15:35:58 -07001345static int str_verify_pattern_cb(void *data, const char *input)
1346{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001347 struct thread_data *td = cb_data_to_td(data);
Jens Axboece35b1e2014-01-14 15:35:58 -07001348 int ret;
1349
Elliott Hugheseda3a602017-05-19 18:53:02 -07001350 td->o.verify_fmt_sz = ARRAY_SIZE(td->o.verify_fmt);
1351 ret = parse_and_fill_pattern(input, strlen(input), td->o.verify_pattern,
1352 MAX_PATTERN_SIZE, fmt_desc, sizeof(fmt_desc),
1353 td->o.verify_fmt, &td->o.verify_fmt_sz);
1354 if (ret < 0)
1355 return 1;
Steven Langefcd9dc2012-02-02 20:22:04 +01001356
Elliott Hugheseda3a602017-05-19 18:53:02 -07001357 assert(ret != 0);
1358 td->o.verify_pattern_bytes = ret;
Jens Axboe92bf48d2011-01-14 21:20:42 +01001359 /*
Elliott Hugheseda3a602017-05-19 18:53:02 -07001360 * VERIFY_* could already be set
Jens Axboe92bf48d2011-01-14 21:20:42 +01001361 */
Elliott Hugheseda3a602017-05-19 18:53:02 -07001362 if (!fio_option_is_set(&td->o, verify))
Jens Axboe92bf48d2011-01-14 21:20:42 +01001363 td->o.verify = VERIFY_PATTERN;
Steven Langefcd9dc2012-02-02 20:22:04 +01001364
Elliott Hugheseda3a602017-05-19 18:53:02 -07001365 return 0;
Jens Axboe90059d62007-07-30 09:33:12 +02001366}
Jens Axboe214e1ec2007-03-15 10:48:13 +01001367
Jens Axboe993bf482008-11-14 13:04:53 +01001368static int str_gtod_reduce_cb(void *data, int *il)
1369{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001370 struct thread_data *td = cb_data_to_td(data);
Jens Axboe993bf482008-11-14 13:04:53 +01001371 int val = *il;
1372
Jens Axboe02af0982010-06-24 09:59:34 +02001373 td->o.disable_lat = !!val;
Jens Axboe993bf482008-11-14 13:04:53 +01001374 td->o.disable_clat = !!val;
1375 td->o.disable_slat = !!val;
1376 td->o.disable_bw = !!val;
Jens Axboe0dc1bc02011-10-13 08:55:29 +02001377 td->o.clat_percentiles = !val;
Jens Axboe993bf482008-11-14 13:04:53 +01001378 if (val)
1379 td->tv_cache_mask = 63;
1380
1381 return 0;
1382}
1383
Jens Axboe7bb59102011-07-12 19:47:03 +02001384static int str_size_cb(void *data, unsigned long long *__val)
1385{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001386 struct thread_data *td = cb_data_to_td(data);
Jens Axboe7bb59102011-07-12 19:47:03 +02001387 unsigned long long v = *__val;
1388
1389 if (parse_is_percent(v)) {
1390 td->o.size = 0;
1391 td->o.size_percent = -1ULL - v;
1392 } else
1393 td->o.size = v;
1394
1395 return 0;
1396}
1397
Elliott Hugheseda3a602017-05-19 18:53:02 -07001398static int str_write_bw_log_cb(void *data, const char *str)
1399{
1400 struct thread_data *td = cb_data_to_td(data);
1401
1402 if (str)
1403 td->o.bw_log_file = strdup(str);
1404
1405 td->o.write_bw_log = 1;
1406 return 0;
1407}
1408
1409static int str_write_lat_log_cb(void *data, const char *str)
1410{
1411 struct thread_data *td = cb_data_to_td(data);
1412
1413 if (str)
1414 td->o.lat_log_file = strdup(str);
1415
1416 td->o.write_lat_log = 1;
1417 return 0;
1418}
1419
1420static int str_write_iops_log_cb(void *data, const char *str)
1421{
1422 struct thread_data *td = cb_data_to_td(data);
1423
1424 if (str)
1425 td->o.iops_log_file = strdup(str);
1426
1427 td->o.write_iops_log = 1;
1428 return 0;
1429}
1430
1431static int str_write_hist_log_cb(void *data, const char *str)
1432{
1433 struct thread_data *td = cb_data_to_td(data);
1434
1435 if (str)
1436 td->o.hist_log_file = strdup(str);
1437
1438 td->o.write_hist_log = 1;
1439 return 0;
1440}
1441
Jens Axboe896cac22009-07-01 10:38:35 +02001442static int rw_verify(struct fio_option *o, void *data)
1443{
Elliott Hugheseda3a602017-05-19 18:53:02 -07001444 struct thread_data *td = cb_data_to_td(data);
Jens Axboe896cac22009-07-01 10:38:35 +02001445
1446 if (read_only && td_write(td)) {
1447 log_err("fio: job <%s> has write bit set, but fio is in"
1448 " read-only mode\n", td->o.name);
1449 return 1;
1450 }
1451
1452 return 0;
1453}
1454
Jens Axboe276ca4f2009-07-01 10:43:05 +02001455static int gtod_cpu_verify(struct fio_option *o, void *data)
Jens Axboe29d43ff2009-07-01 10:42:18 +02001456{
Jens Axboe276ca4f2009-07-01 10:43:05 +02001457#ifndef FIO_HAVE_CPU_AFFINITY
Elliott Hugheseda3a602017-05-19 18:53:02 -07001458 struct thread_data *td = cb_data_to_td(data);
Jens Axboe29d43ff2009-07-01 10:42:18 +02001459
Jens Axboe29d43ff2009-07-01 10:42:18 +02001460 if (td->o.gtod_cpu) {
1461 log_err("fio: platform must support CPU affinity for"
1462 "gettimeofday() offloading\n");
1463 return 1;
1464 }
1465#endif
1466
1467 return 0;
1468}
1469
Jens Axboe214e1ec2007-03-15 10:48:13 +01001470/*
1471 * Map of job/command line options
1472 */
Jens Axboe9af4a242012-03-16 10:13:49 +01001473struct fio_option fio_options[FIO_MAX_OPTS] = {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001474 {
1475 .name = "description",
Jens Axboee8b0e952012-03-19 14:37:08 +01001476 .lname = "Description of job",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001477 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001478 .off1 = offsetof(struct thread_options, description),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001479 .help = "Text job description",
Jens Axboee8b0e952012-03-19 14:37:08 +01001480 .category = FIO_OPT_C_GENERAL,
Jens Axboe06260372012-03-19 15:16:08 +01001481 .group = FIO_OPT_G_DESC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001482 },
1483 {
1484 .name = "name",
Jens Axboee8b0e952012-03-19 14:37:08 +01001485 .lname = "Job name",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001486 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001487 .off1 = offsetof(struct thread_options, name),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001488 .help = "Name of this job",
Jens Axboee8b0e952012-03-19 14:37:08 +01001489 .category = FIO_OPT_C_GENERAL,
Jens Axboe06260372012-03-19 15:16:08 +01001490 .group = FIO_OPT_G_DESC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001491 },
1492 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001493 .name = "wait_for",
1494 .lname = "Waitee name",
1495 .type = FIO_OPT_STR_STORE,
1496 .off1 = offsetof(struct thread_options, wait_for),
1497 .help = "Name of the job this one wants to wait for before starting",
1498 .category = FIO_OPT_C_GENERAL,
1499 .group = FIO_OPT_G_DESC,
1500 },
1501 {
Jens Axboee8b0e952012-03-19 14:37:08 +01001502 .name = "filename",
1503 .lname = "Filename(s)",
1504 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001505 .off1 = offsetof(struct thread_options, filename),
Jens Axboee8b0e952012-03-19 14:37:08 +01001506 .cb = str_filename_cb,
1507 .prio = -1, /* must come after "directory" */
1508 .help = "File(s) to use for the workload",
1509 .category = FIO_OPT_C_FILE,
Jens Axboe06260372012-03-19 15:16:08 +01001510 .group = FIO_OPT_G_FILENAME,
Jens Axboee8b0e952012-03-19 14:37:08 +01001511 },
1512 {
1513 .name = "directory",
1514 .lname = "Directory",
1515 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001516 .off1 = offsetof(struct thread_options, directory),
Jens Axboee8b0e952012-03-19 14:37:08 +01001517 .cb = str_directory_cb,
1518 .help = "Directory to store files in",
1519 .category = FIO_OPT_C_FILE,
Jens Axboe06260372012-03-19 15:16:08 +01001520 .group = FIO_OPT_G_FILENAME,
Jens Axboe90fef2d2009-07-17 22:33:32 +02001521 },
1522 {
Jens Axboede98bd32013-04-05 11:09:20 +02001523 .name = "filename_format",
Elliott Hugheseda3a602017-05-19 18:53:02 -07001524 .lname = "Filename Format",
Jens Axboede98bd32013-04-05 11:09:20 +02001525 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001526 .off1 = offsetof(struct thread_options, filename_format),
Jens Axboede98bd32013-04-05 11:09:20 +02001527 .prio = -1, /* must come after "directory" */
1528 .help = "Override default $jobname.$jobnum.$filenum naming",
1529 .def = "$jobname.$jobnum.$filenum",
Jens Axboe93bb6262013-04-10 13:01:30 +02001530 .category = FIO_OPT_C_FILE,
1531 .group = FIO_OPT_G_FILENAME,
Steven Noonanad705bc2013-04-08 15:05:25 -07001532 },
1533 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001534 .name = "unique_filename",
1535 .lname = "Unique Filename",
1536 .type = FIO_OPT_BOOL,
1537 .off1 = offsetof(struct thread_options, unique_filename),
1538 .help = "For network clients, prefix file with source IP",
1539 .def = "1",
1540 .category = FIO_OPT_C_FILE,
1541 .group = FIO_OPT_G_FILENAME,
1542 },
1543 {
Jens Axboe29c13492008-03-01 19:25:20 +01001544 .name = "lockfile",
Jens Axboee8b0e952012-03-19 14:37:08 +01001545 .lname = "Lockfile",
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001546 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001547 .off1 = offsetof(struct thread_options, file_lock_mode),
Jens Axboe29c13492008-03-01 19:25:20 +01001548 .help = "Lock file when doing IO to it",
Jens Axboebc6a0a52014-02-07 10:57:13 -07001549 .prio = 1,
Jens Axboe29c13492008-03-01 19:25:20 +01001550 .parent = "filename",
Jens Axboed71c1542012-03-16 20:16:59 +01001551 .hide = 0,
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001552 .def = "none",
Jens Axboee8b0e952012-03-19 14:37:08 +01001553 .category = FIO_OPT_C_FILE,
Jens Axboe06260372012-03-19 15:16:08 +01001554 .group = FIO_OPT_G_FILENAME,
Jens Axboe4d4e80f2008-03-04 10:18:56 +01001555 .posval = {
1556 { .ival = "none",
1557 .oval = FILE_LOCK_NONE,
1558 .help = "No file locking",
1559 },
1560 { .ival = "exclusive",
1561 .oval = FILE_LOCK_EXCLUSIVE,
1562 .help = "Exclusive file lock",
1563 },
1564 {
1565 .ival = "readwrite",
1566 .oval = FILE_LOCK_READWRITE,
1567 .help = "Read vs write lock",
1568 },
1569 },
Jens Axboe29c13492008-03-01 19:25:20 +01001570 },
1571 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001572 .name = "opendir",
Jens Axboee8b0e952012-03-19 14:37:08 +01001573 .lname = "Open directory",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001574 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001575 .off1 = offsetof(struct thread_options, opendir),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001576 .cb = str_opendir_cb,
1577 .help = "Recursively add files from this directory and down",
Jens Axboee8b0e952012-03-19 14:37:08 +01001578 .category = FIO_OPT_C_FILE,
Jens Axboe06260372012-03-19 15:16:08 +01001579 .group = FIO_OPT_G_FILENAME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001580 },
1581 {
1582 .name = "rw",
Jens Axboee8b0e952012-03-19 14:37:08 +01001583 .lname = "Read/write",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001584 .alias = "readwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001585 .type = FIO_OPT_STR,
Jens Axboe211097b2007-03-22 18:56:45 +01001586 .cb = str_rw_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001587 .off1 = offsetof(struct thread_options, td_ddir),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001588 .help = "IO direction",
1589 .def = "read",
Jens Axboe896cac22009-07-01 10:38:35 +02001590 .verify = rw_verify,
Jens Axboee8b0e952012-03-19 14:37:08 +01001591 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001592 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001593 .posval = {
1594 { .ival = "read",
1595 .oval = TD_DDIR_READ,
1596 .help = "Sequential read",
1597 },
1598 { .ival = "write",
1599 .oval = TD_DDIR_WRITE,
1600 .help = "Sequential write",
1601 },
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001602 { .ival = "trim",
1603 .oval = TD_DDIR_TRIM,
1604 .help = "Sequential trim",
1605 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001606 { .ival = "randread",
1607 .oval = TD_DDIR_RANDREAD,
1608 .help = "Random read",
1609 },
1610 { .ival = "randwrite",
1611 .oval = TD_DDIR_RANDWRITE,
1612 .help = "Random write",
1613 },
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001614 { .ival = "randtrim",
1615 .oval = TD_DDIR_RANDTRIM,
1616 .help = "Random trim",
1617 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001618 { .ival = "rw",
1619 .oval = TD_DDIR_RW,
1620 .help = "Sequential read and write mix",
1621 },
Jens Axboe10b023d2012-03-23 13:40:06 +01001622 { .ival = "readwrite",
1623 .oval = TD_DDIR_RW,
1624 .help = "Sequential read and write mix",
1625 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001626 { .ival = "randrw",
1627 .oval = TD_DDIR_RANDRW,
1628 .help = "Random read and write mix"
1629 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07001630 { .ival = "trimwrite",
1631 .oval = TD_DDIR_TRIMWRITE,
1632 .help = "Trim and write mix, trims preceding writes"
1633 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001634 },
1635 },
1636 {
Jens Axboe38dad622010-07-20 14:46:00 -06001637 .name = "rw_sequencer",
Jens Axboee8b0e952012-03-19 14:37:08 +01001638 .lname = "RW Sequencer",
Jens Axboe38dad622010-07-20 14:46:00 -06001639 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001640 .off1 = offsetof(struct thread_options, rw_seq),
Jens Axboe38dad622010-07-20 14:46:00 -06001641 .help = "IO offset generator modifier",
1642 .def = "sequential",
Jens Axboee8b0e952012-03-19 14:37:08 +01001643 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001644 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe38dad622010-07-20 14:46:00 -06001645 .posval = {
1646 { .ival = "sequential",
1647 .oval = RW_SEQ_SEQ,
1648 .help = "Generate sequential offsets",
1649 },
1650 { .ival = "identical",
1651 .oval = RW_SEQ_IDENT,
1652 .help = "Generate identical offsets",
1653 },
1654 },
1655 },
1656
1657 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001658 .name = "ioengine",
Jens Axboee8b0e952012-03-19 14:37:08 +01001659 .lname = "IO Engine",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001660 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001661 .off1 = offsetof(struct thread_options, ioengine),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001662 .help = "IO engine to use",
Jens Axboe58483fa2011-01-19 11:09:58 -07001663 .def = FIO_PREFERRED_ENGINE,
Jens Axboee8b0e952012-03-19 14:37:08 +01001664 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001665 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001666 .posval = {
1667 { .ival = "sync",
1668 .help = "Use read/write",
1669 },
gurudas paia31041e2007-10-23 15:12:30 +02001670 { .ival = "psync",
1671 .help = "Use pread/pwrite",
1672 },
Jens Axboe1d2af022008-02-04 10:59:07 +01001673 { .ival = "vsync",
Bruce Cran03e20d62011-01-02 20:14:54 +01001674 .help = "Use readv/writev",
Jens Axboe1d2af022008-02-04 10:59:07 +01001675 },
Jens Axboe07fc0ac2013-05-16 20:36:57 +02001676#ifdef CONFIG_PWRITEV
1677 { .ival = "pvsync",
1678 .help = "Use preadv/pwritev",
1679 },
1680#endif
Elliott Hugheseda3a602017-05-19 18:53:02 -07001681#ifdef FIO_HAVE_PWRITEV2
1682 { .ival = "pvsync2",
1683 .help = "Use preadv2/pwritev2",
1684 },
1685#endif
Jens Axboe67bf9822013-01-10 11:23:19 +01001686#ifdef CONFIG_LIBAIO
Jens Axboe214e1ec2007-03-15 10:48:13 +01001687 { .ival = "libaio",
1688 .help = "Linux native asynchronous IO",
1689 },
1690#endif
Jens Axboe67bf9822013-01-10 11:23:19 +01001691#ifdef CONFIG_POSIXAIO
Jens Axboe214e1ec2007-03-15 10:48:13 +01001692 { .ival = "posixaio",
1693 .help = "POSIX asynchronous IO",
1694 },
1695#endif
Jens Axboe997843c2013-01-24 15:27:40 -07001696#ifdef CONFIG_SOLARISAIO
Jens Axboe417f0062008-06-02 11:59:30 +02001697 { .ival = "solarisaio",
1698 .help = "Solaris native asynchronous IO",
1699 },
1700#endif
Jens Axboe4700b232013-01-24 15:33:33 -07001701#ifdef CONFIG_WINDOWSAIO
Bruce Cran03e20d62011-01-02 20:14:54 +01001702 { .ival = "windowsaio",
Jens Axboe3be80072011-01-19 11:07:28 -07001703 .help = "Windows native asynchronous IO"
Steven Langde890a12011-11-09 14:03:34 +01001704 },
Jens Axboe3be80072011-01-19 11:07:28 -07001705#endif
Daniel Gollubfc5c0342014-02-17 14:35:28 +01001706#ifdef CONFIG_RBD
1707 { .ival = "rbd",
1708 .help = "Rados Block Device asynchronous IO"
1709 },
1710#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001711 { .ival = "mmap",
Bruce Cran03e20d62011-01-02 20:14:54 +01001712 .help = "Memory mapped IO"
Jens Axboe214e1ec2007-03-15 10:48:13 +01001713 },
Jens Axboe67bf9822013-01-10 11:23:19 +01001714#ifdef CONFIG_LINUX_SPLICE
Jens Axboe214e1ec2007-03-15 10:48:13 +01001715 { .ival = "splice",
1716 .help = "splice/vmsplice based IO",
1717 },
Jens Axboe9cce02e2007-06-22 15:42:21 +02001718 { .ival = "netsplice",
1719 .help = "splice/vmsplice to/from the network",
1720 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001721#endif
1722#ifdef FIO_HAVE_SGIO
1723 { .ival = "sg",
1724 .help = "SCSI generic v3 IO",
1725 },
1726#endif
1727 { .ival = "null",
1728 .help = "Testing engine (no data transfer)",
1729 },
1730 { .ival = "net",
1731 .help = "Network IO",
1732 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01001733 { .ival = "cpuio",
Bruce Cran03e20d62011-01-02 20:14:54 +01001734 .help = "CPU cycle burner engine",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001735 },
Jens Axboe67bf9822013-01-10 11:23:19 +01001736#ifdef CONFIG_GUASI
Jens Axboeb8c82a42007-03-21 08:48:26 +01001737 { .ival = "guasi",
1738 .help = "GUASI IO engine",
1739 },
1740#endif
Jens Axboe79a43182010-09-07 13:28:58 +02001741#ifdef FIO_HAVE_BINJECT
1742 { .ival = "binject",
1743 .help = "binject direct inject block engine",
1744 },
1745#endif
Jens Axboe67bf9822013-01-10 11:23:19 +01001746#ifdef CONFIG_RDMA
ren yufei21b8aee2011-08-01 10:01:57 +02001747 { .ival = "rdma",
1748 .help = "RDMA IO engine",
1749 },
1750#endif
Jens Axboe67bf9822013-01-10 11:23:19 +01001751#ifdef CONFIG_FUSION_AW
Jens Axboe8200b8c2012-09-18 23:55:43 +02001752 { .ival = "fusion-aw-sync",
1753 .help = "Fusion-io atomic write engine",
1754 },
1755#endif
Jens Axboe997843c2013-01-24 15:27:40 -07001756#ifdef CONFIG_LINUX_EXT4_MOVE_EXTENT
Jens Axboe1ecc95c2012-09-20 13:46:34 +02001757 { .ival = "e4defrag",
1758 .help = "ext4 defrag engine",
1759 },
1760#endif
Jens Axboe997843c2013-01-24 15:27:40 -07001761#ifdef CONFIG_LINUX_FALLOCATE
Jens Axboe1ecc95c2012-09-20 13:46:34 +02001762 { .ival = "falloc",
1763 .help = "fallocate() file based engine",
1764 },
1765#endif
chenh321fc5a2014-03-31 11:32:29 -04001766#ifdef CONFIG_GFAPI
1767 { .ival = "gfapi",
chenhcb92c7f2014-04-02 13:01:01 -04001768 .help = "Glusterfs libgfapi(sync) based engine"
1769 },
1770 { .ival = "gfapi_async",
1771 .help = "Glusterfs libgfapi(async) based engine"
chenh321fc5a2014-03-31 11:32:29 -04001772 },
1773#endif
Manish Mandlikd60aa362014-08-13 13:36:52 -06001774#ifdef CONFIG_LIBHDFS
Manish Mandlik44e2ab52014-08-14 11:45:16 -06001775 { .ival = "libhdfs",
Manish Mandlikd60aa362014-08-13 13:36:52 -06001776 .help = "Hadoop Distributed Filesystem (HDFS) engine"
1777 },
1778#endif
Elliott Hugheseda3a602017-05-19 18:53:02 -07001779#ifdef CONFIG_PMEMBLK
1780 { .ival = "pmemblk",
1781 .help = "NVML libpmemblk based IO engine",
1782 },
1783
1784#endif
1785#ifdef CONFIG_LINUX_DEVDAX
1786 { .ival = "dev-dax",
1787 .help = "DAX Device based IO engine",
1788 },
1789#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01001790 { .ival = "external",
1791 .help = "Load external engine (append name)",
1792 },
1793 },
1794 },
1795 {
1796 .name = "iodepth",
Jens Axboee8b0e952012-03-19 14:37:08 +01001797 .lname = "IO Depth",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001798 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001799 .off1 = offsetof(struct thread_options, iodepth),
Bruce Cran03e20d62011-01-02 20:14:54 +01001800 .help = "Number of IO buffers to keep in flight",
Jens Axboe757aff42007-12-12 19:42:13 +01001801 .minval = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01001802 .interval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001803 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01001804 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001805 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001806 },
1807 {
1808 .name = "iodepth_batch",
Jens Axboee8b0e952012-03-19 14:37:08 +01001809 .lname = "IO Depth batch",
Jens Axboe49504212008-06-05 09:03:30 +02001810 .alias = "iodepth_batch_submit",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001811 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001812 .off1 = offsetof(struct thread_options, iodepth_batch),
Jens Axboed65db442009-01-16 19:15:33 +01001813 .help = "Number of IO buffers to submit in one go",
Jens Axboeafdf9352007-07-31 16:14:34 +02001814 .parent = "iodepth",
Jens Axboed71c1542012-03-16 20:16:59 +01001815 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01001816 .interval = 1,
Jens Axboea2e6f8a2008-01-18 10:28:11 +01001817 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01001818 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001819 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001820 },
1821 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001822 .name = "iodepth_batch_complete_min",
1823 .lname = "Min IO depth batch complete",
1824 .alias = "iodepth_batch_complete",
Jens Axboe49504212008-06-05 09:03:30 +02001825 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001826 .off1 = offsetof(struct thread_options, iodepth_batch_complete_min),
1827 .help = "Min number of IO buffers to retrieve in one go",
Jens Axboe49504212008-06-05 09:03:30 +02001828 .parent = "iodepth",
Jens Axboed71c1542012-03-16 20:16:59 +01001829 .hide = 1,
Jens Axboe49504212008-06-05 09:03:30 +02001830 .minval = 0,
Jens Axboe20eb06b2012-03-16 19:57:23 +01001831 .interval = 1,
Jens Axboe49504212008-06-05 09:03:30 +02001832 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01001833 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001834 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe49504212008-06-05 09:03:30 +02001835 },
1836 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001837 .name = "iodepth_batch_complete_max",
1838 .lname = "Max IO depth batch complete",
1839 .type = FIO_OPT_INT,
1840 .off1 = offsetof(struct thread_options, iodepth_batch_complete_max),
1841 .help = "Max number of IO buffers to retrieve in one go",
1842 .parent = "iodepth",
1843 .hide = 1,
1844 .minval = 0,
1845 .interval = 1,
1846 .category = FIO_OPT_C_IO,
1847 .group = FIO_OPT_G_IO_BASIC,
1848 },
1849 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001850 .name = "iodepth_low",
Jens Axboee8b0e952012-03-19 14:37:08 +01001851 .lname = "IO Depth batch low",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001852 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001853 .off1 = offsetof(struct thread_options, iodepth_low),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001854 .help = "Low water mark for queuing depth",
Jens Axboeafdf9352007-07-31 16:14:34 +02001855 .parent = "iodepth",
Jens Axboed71c1542012-03-16 20:16:59 +01001856 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01001857 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01001858 .category = FIO_OPT_C_IO,
Jens Axboe06260372012-03-19 15:16:08 +01001859 .group = FIO_OPT_G_IO_BASIC,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001860 },
1861 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07001862 .name = "io_submit_mode",
1863 .lname = "IO submit mode",
1864 .type = FIO_OPT_STR,
1865 .off1 = offsetof(struct thread_options, io_submit_mode),
1866 .help = "How IO submissions and completions are done",
1867 .def = "inline",
1868 .category = FIO_OPT_C_IO,
1869 .group = FIO_OPT_G_IO_BASIC,
1870 .posval = {
1871 { .ival = "inline",
1872 .oval = IO_MODE_INLINE,
1873 .help = "Submit and complete IO inline",
1874 },
1875 { .ival = "offload",
1876 .oval = IO_MODE_OFFLOAD,
1877 .help = "Offload submit and complete to threads",
1878 },
1879 },
1880 },
1881 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001882 .name = "size",
Jens Axboee8b0e952012-03-19 14:37:08 +01001883 .lname = "Size",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001884 .type = FIO_OPT_STR_VAL,
Jens Axboe7bb59102011-07-12 19:47:03 +02001885 .cb = str_size_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001886 .off1 = offsetof(struct thread_options, size),
Jens Axboe214e1ec2007-03-15 10:48:13 +01001887 .help = "Total size of device or files",
Jens Axboe20eb06b2012-03-16 19:57:23 +01001888 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01001889 .category = FIO_OPT_C_IO,
1890 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001891 },
1892 {
Jens Axboeb65f3922014-12-10 19:21:37 -07001893 .name = "io_size",
1894 .alias = "io_limit",
1895 .lname = "IO Size",
Jens Axboe77731b22014-04-28 12:08:47 -06001896 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001897 .off1 = offsetof(struct thread_options, io_size),
1898 .help = "Total size of I/O to be performed",
Jens Axboe77731b22014-04-28 12:08:47 -06001899 .interval = 1024 * 1024,
1900 .category = FIO_OPT_C_IO,
1901 .group = FIO_OPT_G_INVALID,
1902 },
1903 {
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001904 .name = "fill_device",
Jens Axboee8b0e952012-03-19 14:37:08 +01001905 .lname = "Fill device",
Jens Axboe74586c12011-01-20 10:16:03 -07001906 .alias = "fill_fs",
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001907 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001908 .off1 = offsetof(struct thread_options, fill_device),
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001909 .help = "Write until an ENOSPC error occurs",
1910 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01001911 .category = FIO_OPT_C_FILE,
1912 .group = FIO_OPT_G_INVALID,
Shawn Lewisaa31f1f2008-01-11 09:45:11 +01001913 },
1914 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001915 .name = "filesize",
Jens Axboee8b0e952012-03-19 14:37:08 +01001916 .lname = "File size",
Jens Axboe214e1ec2007-03-15 10:48:13 +01001917 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001918 .off1 = offsetof(struct thread_options, file_size_low),
1919 .off2 = offsetof(struct thread_options, file_size_high),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001920 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001921 .help = "Size of individual files",
Jens Axboe20eb06b2012-03-16 19:57:23 +01001922 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01001923 .category = FIO_OPT_C_FILE,
1924 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001925 },
1926 {
Jens Axboebedc9dc2014-03-17 12:51:09 -06001927 .name = "file_append",
1928 .lname = "File append",
1929 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001930 .off1 = offsetof(struct thread_options, file_append),
Jens Axboebedc9dc2014-03-17 12:51:09 -06001931 .help = "IO will start at the end of the file(s)",
1932 .def = "0",
1933 .category = FIO_OPT_C_FILE,
1934 .group = FIO_OPT_G_INVALID,
1935 },
1936 {
Jens Axboe67a10002007-07-31 23:12:16 +02001937 .name = "offset",
Jens Axboee8b0e952012-03-19 14:37:08 +01001938 .lname = "IO offset",
Jens Axboe67a10002007-07-31 23:12:16 +02001939 .alias = "fileoffset",
1940 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001941 .off1 = offsetof(struct thread_options, start_offset),
Jens Axboe67a10002007-07-31 23:12:16 +02001942 .help = "Start IO from this offset",
1943 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01001944 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01001945 .category = FIO_OPT_C_IO,
1946 .group = FIO_OPT_G_INVALID,
Jens Axboe67a10002007-07-31 23:12:16 +02001947 },
1948 {
Jens Axboe2d7cd862012-03-15 14:53:38 +01001949 .name = "offset_increment",
Jens Axboee8b0e952012-03-19 14:37:08 +01001950 .lname = "IO offset increment",
Jens Axboe2d7cd862012-03-15 14:53:38 +01001951 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001952 .off1 = offsetof(struct thread_options, offset_increment),
Jens Axboe2d7cd862012-03-15 14:53:38 +01001953 .help = "What is the increment from one offset to the next",
1954 .parent = "offset",
Jens Axboed71c1542012-03-16 20:16:59 +01001955 .hide = 1,
Jens Axboe2d7cd862012-03-15 14:53:38 +01001956 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01001957 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01001958 .category = FIO_OPT_C_IO,
1959 .group = FIO_OPT_G_INVALID,
Jens Axboe2d7cd862012-03-15 14:53:38 +01001960 },
1961 {
Jens Axboeddf24e42013-08-09 12:53:44 -06001962 .name = "number_ios",
1963 .lname = "Number of IOs to perform",
1964 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001965 .off1 = offsetof(struct thread_options, number_ios),
Jens Axboe0b24a952014-09-28 16:24:23 -06001966 .help = "Force job completion after this number of IOs",
Jens Axboeddf24e42013-08-09 12:53:44 -06001967 .def = "0",
1968 .category = FIO_OPT_C_IO,
1969 .group = FIO_OPT_G_INVALID,
1970 },
1971 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01001972 .name = "bs",
Jens Axboee8b0e952012-03-19 14:37:08 +01001973 .lname = "Block size",
Jens Axboed3aad8f2007-03-15 14:12:05 +01001974 .alias = "blocksize",
Jens Axboee01b22b2009-06-09 15:43:25 +02001975 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001976 .off1 = offsetof(struct thread_options, bs[DDIR_READ]),
1977 .off2 = offsetof(struct thread_options, bs[DDIR_WRITE]),
1978 .off3 = offsetof(struct thread_options, bs[DDIR_TRIM]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02001979 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001980 .help = "Block size unit",
Elliott Hugheseda3a602017-05-19 18:53:02 -07001981 .def = "4096",
Jens Axboe67a10002007-07-31 23:12:16 +02001982 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01001983 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01001984 .interval = 512,
Jens Axboee8b0e952012-03-19 14:37:08 +01001985 .category = FIO_OPT_C_IO,
1986 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01001987 },
1988 {
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001989 .name = "ba",
Jens Axboee8b0e952012-03-19 14:37:08 +01001990 .lname = "Block size align",
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001991 .alias = "blockalign",
Jens Axboee01b22b2009-06-09 15:43:25 +02001992 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07001993 .off1 = offsetof(struct thread_options, ba[DDIR_READ]),
1994 .off2 = offsetof(struct thread_options, ba[DDIR_WRITE]),
1995 .off3 = offsetof(struct thread_options, ba[DDIR_TRIM]),
Jens Axboe2b7a01d2009-03-11 11:00:13 +01001996 .minval = 1,
1997 .help = "IO block offset alignment",
1998 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01001999 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01002000 .interval = 512,
Jens Axboee8b0e952012-03-19 14:37:08 +01002001 .category = FIO_OPT_C_IO,
2002 .group = FIO_OPT_G_INVALID,
Jens Axboe2b7a01d2009-03-11 11:00:13 +01002003 },
2004 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002005 .name = "bsrange",
Jens Axboee8b0e952012-03-19 14:37:08 +01002006 .lname = "Block size range",
Jens Axboed3aad8f2007-03-15 14:12:05 +01002007 .alias = "blocksize_range",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002008 .type = FIO_OPT_RANGE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002009 .off1 = offsetof(struct thread_options, min_bs[DDIR_READ]),
2010 .off2 = offsetof(struct thread_options, max_bs[DDIR_READ]),
2011 .off3 = offsetof(struct thread_options, min_bs[DDIR_WRITE]),
2012 .off4 = offsetof(struct thread_options, max_bs[DDIR_WRITE]),
2013 .off5 = offsetof(struct thread_options, min_bs[DDIR_TRIM]),
2014 .off6 = offsetof(struct thread_options, max_bs[DDIR_TRIM]),
Jens Axboec3edbdb2007-07-20 14:25:31 +02002015 .minval = 1,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002016 .help = "Set block size range (in more detail than bs)",
Jens Axboe67a10002007-07-31 23:12:16 +02002017 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01002018 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01002019 .interval = 4096,
Jens Axboee8b0e952012-03-19 14:37:08 +01002020 .category = FIO_OPT_C_IO,
2021 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002022 },
2023 {
Jens Axboe564ca972007-12-14 12:21:19 +01002024 .name = "bssplit",
Jens Axboee8b0e952012-03-19 14:37:08 +01002025 .lname = "Block size split",
Jens Axboe564ca972007-12-14 12:21:19 +01002026 .type = FIO_OPT_STR,
2027 .cb = str_bssplit_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002028 .off1 = offsetof(struct thread_options, bssplit),
Jens Axboe564ca972007-12-14 12:21:19 +01002029 .help = "Set a specific mix of block sizes",
2030 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01002031 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002032 .category = FIO_OPT_C_IO,
2033 .group = FIO_OPT_G_INVALID,
Jens Axboe564ca972007-12-14 12:21:19 +01002034 },
2035 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002036 .name = "bs_unaligned",
Jens Axboee8b0e952012-03-19 14:37:08 +01002037 .lname = "Block size unaligned",
Jens Axboed3aad8f2007-03-15 14:12:05 +01002038 .alias = "blocksize_unaligned",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002039 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002040 .off1 = offsetof(struct thread_options, bs_unaligned),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002041 .help = "Don't sector align IO buffer sizes",
Jens Axboe67a10002007-07-31 23:12:16 +02002042 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01002043 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002044 .category = FIO_OPT_C_IO,
2045 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002046 },
2047 {
Jens Axboe6aca9b32013-07-25 12:45:26 -06002048 .name = "bs_is_seq_rand",
2049 .lname = "Block size division is seq/random (not read/write)",
2050 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002051 .off1 = offsetof(struct thread_options, bs_is_seq_rand),
Jens Axboe86051d42014-09-28 16:25:49 -06002052 .help = "Consider any blocksize setting to be sequential,random",
Jens Axboe6aca9b32013-07-25 12:45:26 -06002053 .def = "0",
2054 .parent = "blocksize",
2055 .category = FIO_OPT_C_IO,
2056 .group = FIO_OPT_G_INVALID,
2057 },
2058 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002059 .name = "randrepeat",
Jens Axboee8b0e952012-03-19 14:37:08 +01002060 .lname = "Random repeatable",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002061 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002062 .off1 = offsetof(struct thread_options, rand_repeatable),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002063 .help = "Use repeatable random IO pattern",
2064 .def = "1",
Jens Axboe67a10002007-07-31 23:12:16 +02002065 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01002066 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002067 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002068 .group = FIO_OPT_G_RANDOM,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002069 },
2070 {
Jens Axboe04778ba2014-01-10 20:57:01 -07002071 .name = "randseed",
2072 .lname = "The random generator seed",
Grant Grundler363cffa2014-01-28 15:11:23 -07002073 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002074 .off1 = offsetof(struct thread_options, rand_seed),
Jens Axboe04778ba2014-01-10 20:57:01 -07002075 .help = "Set the random generator seed value",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002076 .def = "0x89",
Jens Axboe04778ba2014-01-10 20:57:01 -07002077 .parent = "rw",
2078 .category = FIO_OPT_C_IO,
2079 .group = FIO_OPT_G_RANDOM,
2080 },
2081 {
Jens Axboe2615cc42011-03-28 09:35:09 +02002082 .name = "use_os_rand",
Jens Axboee8b0e952012-03-19 14:37:08 +01002083 .lname = "Use OS random",
Jens Axboe559073f2014-11-05 18:34:02 -07002084 .type = FIO_OPT_DEPRECATED,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002085 .off1 = offsetof(struct thread_options, dep_use_os_rand),
Jens Axboee8b0e952012-03-19 14:37:08 +01002086 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002087 .group = FIO_OPT_G_RANDOM,
Jens Axboe2615cc42011-03-28 09:35:09 +02002088 },
2089 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002090 .name = "norandommap",
Jens Axboee8b0e952012-03-19 14:37:08 +01002091 .lname = "No randommap",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002092 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002093 .off1 = offsetof(struct thread_options, norandommap),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002094 .help = "Accept potential duplicate random blocks",
Jens Axboe67a10002007-07-31 23:12:16 +02002095 .parent = "rw",
Jens Axboed71c1542012-03-16 20:16:59 +01002096 .hide = 1,
Jens Axboeb2452a42012-03-20 10:29:45 +01002097 .hide_on_set = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002098 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002099 .group = FIO_OPT_G_RANDOM,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002100 },
2101 {
Jens Axboe2b386d22008-03-26 10:32:57 +01002102 .name = "softrandommap",
Jens Axboee8b0e952012-03-19 14:37:08 +01002103 .lname = "Soft randommap",
Jens Axboe2b386d22008-03-26 10:32:57 +01002104 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002105 .off1 = offsetof(struct thread_options, softrandommap),
Jens Axboef66ab3c2008-06-05 11:48:22 +02002106 .help = "Set norandommap if randommap allocation fails",
Jens Axboe2b386d22008-03-26 10:32:57 +01002107 .parent = "norandommap",
Jens Axboed71c1542012-03-16 20:16:59 +01002108 .hide = 1,
Jens Axboe2b386d22008-03-26 10:32:57 +01002109 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01002110 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002111 .group = FIO_OPT_G_RANDOM,
Jens Axboe2b386d22008-03-26 10:32:57 +01002112 },
2113 {
Jens Axboe8055e412012-11-26 08:43:47 +01002114 .name = "random_generator",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002115 .lname = "Random Generator",
Jens Axboe8055e412012-11-26 08:43:47 +01002116 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002117 .off1 = offsetof(struct thread_options, random_generator),
Jens Axboe8055e412012-11-26 08:43:47 +01002118 .help = "Type of random number generator to use",
2119 .def = "tausworthe",
2120 .posval = {
2121 { .ival = "tausworthe",
2122 .oval = FIO_RAND_GEN_TAUSWORTHE,
2123 .help = "Strong Tausworthe generator",
2124 },
2125 { .ival = "lfsr",
2126 .oval = FIO_RAND_GEN_LFSR,
2127 .help = "Variable length LFSR",
2128 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002129 {
2130 .ival = "tausworthe64",
2131 .oval = FIO_RAND_GEN_TAUSWORTHE64,
2132 .help = "64-bit Tausworthe variant",
2133 },
Jens Axboe8055e412012-11-26 08:43:47 +01002134 },
Jens Axboe48107592012-12-04 09:43:11 +01002135 .category = FIO_OPT_C_IO,
2136 .group = FIO_OPT_G_RANDOM,
Jens Axboe8055e412012-11-26 08:43:47 +01002137 },
2138 {
Jens Axboee25839d2012-11-06 10:49:42 +01002139 .name = "random_distribution",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002140 .lname = "Random Distribution",
Jens Axboee25839d2012-11-06 10:49:42 +01002141 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002142 .off1 = offsetof(struct thread_options, random_distribution),
Jens Axboee25839d2012-11-06 10:49:42 +01002143 .cb = str_random_distribution_cb,
2144 .help = "Random offset distribution generator",
2145 .def = "random",
2146 .posval = {
2147 { .ival = "random",
2148 .oval = FIO_RAND_DIST_RANDOM,
2149 .help = "Completely random",
2150 },
2151 { .ival = "zipf",
2152 .oval = FIO_RAND_DIST_ZIPF,
2153 .help = "Zipf distribution",
2154 },
Jens Axboe925fee32012-11-06 13:50:32 +01002155 { .ival = "pareto",
2156 .oval = FIO_RAND_DIST_PARETO,
2157 .help = "Pareto distribution",
2158 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002159 { .ival = "normal",
2160 .oval = FIO_RAND_DIST_GAUSS,
2161 .help = "Normal (Gaussian) distribution",
2162 },
2163 { .ival = "zoned",
2164 .oval = FIO_RAND_DIST_ZONED,
2165 .help = "Zoned random distribution",
2166 },
2167
Jens Axboee25839d2012-11-06 10:49:42 +01002168 },
Jens Axboe48107592012-12-04 09:43:11 +01002169 .category = FIO_OPT_C_IO,
2170 .group = FIO_OPT_G_RANDOM,
Jens Axboee25839d2012-11-06 10:49:42 +01002171 },
2172 {
Jens Axboe211c9b82013-04-26 08:56:17 -06002173 .name = "percentage_random",
2174 .lname = "Percentage Random",
2175 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002176 .off1 = offsetof(struct thread_options, perc_rand[DDIR_READ]),
2177 .off2 = offsetof(struct thread_options, perc_rand[DDIR_WRITE]),
2178 .off3 = offsetof(struct thread_options, perc_rand[DDIR_TRIM]),
Jens Axboe211c9b82013-04-26 08:56:17 -06002179 .maxval = 100,
2180 .help = "Percentage of seq/random mix that should be random",
Jens Axboed9472272013-07-25 10:20:45 -06002181 .def = "100,100,100",
Jens Axboe211c9b82013-04-26 08:56:17 -06002182 .interval = 5,
2183 .inverse = "percentage_sequential",
2184 .category = FIO_OPT_C_IO,
2185 .group = FIO_OPT_G_RANDOM,
2186 },
2187 {
2188 .name = "percentage_sequential",
2189 .lname = "Percentage Sequential",
Jens Axboed9472272013-07-25 10:20:45 -06002190 .type = FIO_OPT_DEPRECATED,
Jens Axboe211c9b82013-04-26 08:56:17 -06002191 .category = FIO_OPT_C_IO,
2192 .group = FIO_OPT_G_RANDOM,
2193 },
2194 {
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -08002195 .name = "allrandrepeat",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002196 .lname = "All Random Repeat",
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -08002197 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002198 .off1 = offsetof(struct thread_options, allrand_repeatable),
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -08002199 .help = "Use repeatable random numbers for everything",
2200 .def = "0",
Jens Axboea869d9c2014-02-20 13:22:48 -08002201 .category = FIO_OPT_C_IO,
2202 .group = FIO_OPT_G_RANDOM,
Christian Ehrhardt56e2a5f2014-02-20 09:10:17 -08002203 },
2204 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002205 .name = "nrfiles",
Jens Axboee8b0e952012-03-19 14:37:08 +01002206 .lname = "Number of files",
Jens Axboed7c8be02010-11-25 08:21:39 +01002207 .alias = "nr_files",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002208 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002209 .off1 = offsetof(struct thread_options, nr_files),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002210 .help = "Split job workload between this number of files",
2211 .def = "1",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002212 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002213 .category = FIO_OPT_C_FILE,
2214 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002215 },
2216 {
2217 .name = "openfiles",
Jens Axboee8b0e952012-03-19 14:37:08 +01002218 .lname = "Number of open files",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002219 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002220 .off1 = offsetof(struct thread_options, open_files),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002221 .help = "Number of files to keep open at the same time",
Jens Axboee8b0e952012-03-19 14:37:08 +01002222 .category = FIO_OPT_C_FILE,
2223 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002224 },
2225 {
2226 .name = "file_service_type",
Jens Axboee8b0e952012-03-19 14:37:08 +01002227 .lname = "File service type",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002228 .type = FIO_OPT_STR,
2229 .cb = str_fst_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002230 .off1 = offsetof(struct thread_options, file_service_type),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002231 .help = "How to select which file to service next",
2232 .def = "roundrobin",
Jens Axboee8b0e952012-03-19 14:37:08 +01002233 .category = FIO_OPT_C_FILE,
2234 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002235 .posval = {
2236 { .ival = "random",
2237 .oval = FIO_FSERVICE_RANDOM,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002238 .help = "Choose a file at random (uniform)",
2239 },
2240 { .ival = "zipf",
2241 .oval = FIO_FSERVICE_ZIPF,
2242 .help = "Zipf randomized",
2243 },
2244 { .ival = "pareto",
2245 .oval = FIO_FSERVICE_PARETO,
2246 .help = "Pareto randomized",
2247 },
2248 { .ival = "gauss",
2249 .oval = FIO_FSERVICE_GAUSS,
2250 .help = "Normal (Gaussian) distribution",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002251 },
2252 { .ival = "roundrobin",
2253 .oval = FIO_FSERVICE_RR,
2254 .help = "Round robin select files",
2255 },
Jens Axboea086c252009-03-04 08:27:37 +01002256 { .ival = "sequential",
2257 .oval = FIO_FSERVICE_SEQ,
2258 .help = "Finish one file before moving to the next",
2259 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01002260 },
Jens Axboe67a10002007-07-31 23:12:16 +02002261 .parent = "nrfiles",
Jens Axboed71c1542012-03-16 20:16:59 +01002262 .hide = 1,
Jens Axboe67a10002007-07-31 23:12:16 +02002263 },
Jens Axboe97ac9922013-01-24 15:00:25 -07002264#ifdef CONFIG_POSIX_FALLOCATE
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01002265 {
2266 .name = "fallocate",
Jens Axboee8b0e952012-03-19 14:37:08 +01002267 .lname = "Fallocate",
Eric Gourioua596f042011-06-17 09:11:45 +02002268 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002269 .off1 = offsetof(struct thread_options, fallocate_mode),
Eric Gourioua596f042011-06-17 09:11:45 +02002270 .help = "Whether pre-allocation is performed when laying out files",
2271 .def = "posix",
Jens Axboee8b0e952012-03-19 14:37:08 +01002272 .category = FIO_OPT_C_FILE,
2273 .group = FIO_OPT_G_INVALID,
Eric Gourioua596f042011-06-17 09:11:45 +02002274 .posval = {
2275 { .ival = "none",
2276 .oval = FIO_FALLOCATE_NONE,
2277 .help = "Do not pre-allocate space",
2278 },
2279 { .ival = "posix",
2280 .oval = FIO_FALLOCATE_POSIX,
2281 .help = "Use posix_fallocate()",
2282 },
Jens Axboe97ac9922013-01-24 15:00:25 -07002283#ifdef CONFIG_LINUX_FALLOCATE
Eric Gourioua596f042011-06-17 09:11:45 +02002284 { .ival = "keep",
2285 .oval = FIO_FALLOCATE_KEEP_SIZE,
2286 .help = "Use fallocate(..., FALLOC_FL_KEEP_SIZE, ...)",
2287 },
Jens Axboe7bc8c2c2010-01-28 11:31:31 +01002288#endif
Eric Gourioua596f042011-06-17 09:11:45 +02002289 /* Compatibility with former boolean values */
2290 { .ival = "0",
2291 .oval = FIO_FALLOCATE_NONE,
2292 .help = "Alias for 'none'",
2293 },
2294 { .ival = "1",
2295 .oval = FIO_FALLOCATE_POSIX,
2296 .help = "Alias for 'posix'",
2297 },
2298 },
2299 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002300#else /* CONFIG_POSIX_FALLOCATE */
2301 {
2302 .name = "fallocate",
2303 .lname = "Fallocate",
2304 .type = FIO_OPT_UNSUPPORTED,
2305 .help = "Your platform does not support fallocate",
2306 },
2307#endif /* CONFIG_POSIX_FALLOCATE */
Jens Axboe67a10002007-07-31 23:12:16 +02002308 {
2309 .name = "fadvise_hint",
Jens Axboee8b0e952012-03-19 14:37:08 +01002310 .lname = "Fadvise hint",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002311 .type = FIO_OPT_STR,
2312 .off1 = offsetof(struct thread_options, fadvise_hint),
2313 .posval = {
2314 { .ival = "0",
2315 .oval = F_ADV_NONE,
2316 .help = "Don't issue fadvise",
2317 },
2318 { .ival = "1",
2319 .oval = F_ADV_TYPE,
2320 .help = "Advise using fio IO pattern",
2321 },
2322 { .ival = "random",
2323 .oval = F_ADV_RANDOM,
2324 .help = "Advise using FADV_RANDOM",
2325 },
2326 { .ival = "sequential",
2327 .oval = F_ADV_SEQUENTIAL,
2328 .help = "Advise using FADV_SEQUENTIAL",
2329 },
2330 },
Jens Axboe67a10002007-07-31 23:12:16 +02002331 .help = "Use fadvise() to advise the kernel on IO pattern",
2332 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01002333 .category = FIO_OPT_C_FILE,
2334 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002335 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002336#ifdef FIO_HAVE_STREAMID
2337 {
2338 .name = "fadvise_stream",
2339 .lname = "Fadvise stream",
2340 .type = FIO_OPT_INT,
2341 .off1 = offsetof(struct thread_options, fadvise_stream),
2342 .help = "Use fadvise() to set stream ID",
2343 .category = FIO_OPT_C_FILE,
2344 .group = FIO_OPT_G_INVALID,
2345 },
2346#else
2347 {
2348 .name = "fadvise_stream",
2349 .lname = "Fadvise stream",
2350 .type = FIO_OPT_UNSUPPORTED,
2351 .help = "Your platform does not support fadvise stream ID",
2352 },
2353#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01002354 {
2355 .name = "fsync",
Jens Axboee8b0e952012-03-19 14:37:08 +01002356 .lname = "Fsync",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002357 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002358 .off1 = offsetof(struct thread_options, fsync_blocks),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002359 .help = "Issue fsync for writes every given number of blocks",
2360 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002361 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002362 .category = FIO_OPT_C_FILE,
2363 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002364 },
2365 {
Jens Axboe5f9099e2009-06-16 22:40:26 +02002366 .name = "fdatasync",
Jens Axboee8b0e952012-03-19 14:37:08 +01002367 .lname = "Fdatasync",
Jens Axboe5f9099e2009-06-16 22:40:26 +02002368 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002369 .off1 = offsetof(struct thread_options, fdatasync_blocks),
Jens Axboe5f9099e2009-06-16 22:40:26 +02002370 .help = "Issue fdatasync for writes every given number of blocks",
2371 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002372 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002373 .category = FIO_OPT_C_FILE,
2374 .group = FIO_OPT_G_INVALID,
Jens Axboe5f9099e2009-06-16 22:40:26 +02002375 },
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02002376 {
2377 .name = "write_barrier",
Jens Axboee8b0e952012-03-19 14:37:08 +01002378 .lname = "Write barrier",
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02002379 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002380 .off1 = offsetof(struct thread_options, barrier_blocks),
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02002381 .help = "Make every Nth write a barrier write",
2382 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002383 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002384 .category = FIO_OPT_C_IO,
2385 .group = FIO_OPT_G_INVALID,
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02002386 },
Jens Axboe67bf9822013-01-10 11:23:19 +01002387#ifdef CONFIG_SYNC_FILE_RANGE
Jens Axboe44f29692010-03-09 20:09:44 +01002388 {
2389 .name = "sync_file_range",
Jens Axboee8b0e952012-03-19 14:37:08 +01002390 .lname = "Sync file range",
Jens Axboe44f29692010-03-09 20:09:44 +01002391 .posval = {
2392 { .ival = "wait_before",
2393 .oval = SYNC_FILE_RANGE_WAIT_BEFORE,
2394 .help = "SYNC_FILE_RANGE_WAIT_BEFORE",
Daniel Gollubebadc0c2014-02-12 08:24:57 -07002395 .orval = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01002396 },
2397 { .ival = "write",
2398 .oval = SYNC_FILE_RANGE_WRITE,
2399 .help = "SYNC_FILE_RANGE_WRITE",
Daniel Gollubebadc0c2014-02-12 08:24:57 -07002400 .orval = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01002401 },
2402 {
2403 .ival = "wait_after",
2404 .oval = SYNC_FILE_RANGE_WAIT_AFTER,
2405 .help = "SYNC_FILE_RANGE_WAIT_AFTER",
Daniel Gollubebadc0c2014-02-12 08:24:57 -07002406 .orval = 1,
Jens Axboe44f29692010-03-09 20:09:44 +01002407 },
2408 },
Jens Axboe3843deb2010-03-09 20:41:15 +01002409 .type = FIO_OPT_STR_MULTI,
Jens Axboe44f29692010-03-09 20:09:44 +01002410 .cb = str_sfr_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002411 .off1 = offsetof(struct thread_options, sync_file_range),
Jens Axboe44f29692010-03-09 20:09:44 +01002412 .help = "Use sync_file_range()",
Jens Axboee8b0e952012-03-19 14:37:08 +01002413 .category = FIO_OPT_C_FILE,
2414 .group = FIO_OPT_G_INVALID,
Jens Axboe44f29692010-03-09 20:09:44 +01002415 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002416#else
2417 {
2418 .name = "sync_file_range",
2419 .lname = "Sync file range",
2420 .type = FIO_OPT_UNSUPPORTED,
2421 .help = "Your platform does not support sync_file_range",
2422 },
Jens Axboe44f29692010-03-09 20:09:44 +01002423#endif
Jens Axboe5f9099e2009-06-16 22:40:26 +02002424 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002425 .name = "direct",
Jens Axboee8b0e952012-03-19 14:37:08 +01002426 .lname = "Direct I/O",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002427 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002428 .off1 = offsetof(struct thread_options, odirect),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002429 .help = "Use O_DIRECT IO (negates buffered)",
2430 .def = "0",
Jens Axboea01a1bc2012-03-19 21:13:01 +01002431 .inverse = "buffered",
Jens Axboee8b0e952012-03-19 14:37:08 +01002432 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002433 .group = FIO_OPT_G_IO_TYPE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002434 },
2435 {
Chris Masond01612f2013-11-15 15:52:58 -07002436 .name = "atomic",
2437 .lname = "Atomic I/O",
2438 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002439 .off1 = offsetof(struct thread_options, oatomic),
Chris Masond01612f2013-11-15 15:52:58 -07002440 .help = "Use Atomic IO with O_DIRECT (implies O_DIRECT)",
2441 .def = "0",
2442 .category = FIO_OPT_C_IO,
2443 .group = FIO_OPT_G_IO_TYPE,
2444 },
2445 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002446 .name = "buffered",
Jens Axboee8b0e952012-03-19 14:37:08 +01002447 .lname = "Buffered I/O",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002448 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002449 .off1 = offsetof(struct thread_options, odirect),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002450 .neg = 1,
2451 .help = "Use buffered IO (negates direct)",
2452 .def = "1",
Jens Axboea01a1bc2012-03-19 21:13:01 +01002453 .inverse = "direct",
Jens Axboee8b0e952012-03-19 14:37:08 +01002454 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002455 .group = FIO_OPT_G_IO_TYPE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002456 },
2457 {
2458 .name = "overwrite",
Jens Axboee8b0e952012-03-19 14:37:08 +01002459 .lname = "Overwrite",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002460 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002461 .off1 = offsetof(struct thread_options, overwrite),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002462 .help = "When writing, set whether to overwrite current data",
2463 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01002464 .category = FIO_OPT_C_FILE,
2465 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002466 },
2467 {
2468 .name = "loops",
Jens Axboee8b0e952012-03-19 14:37:08 +01002469 .lname = "Loops",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002470 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002471 .off1 = offsetof(struct thread_options, loops),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002472 .help = "Number of times to run the job",
2473 .def = "1",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002474 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002475 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002476 .group = FIO_OPT_G_RUNTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002477 },
2478 {
2479 .name = "numjobs",
Jens Axboee8b0e952012-03-19 14:37:08 +01002480 .lname = "Number of jobs",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002481 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002482 .off1 = offsetof(struct thread_options, numjobs),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002483 .help = "Duplicate this job this many times",
2484 .def = "1",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002485 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002486 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002487 .group = FIO_OPT_G_RUNTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002488 },
2489 {
2490 .name = "startdelay",
Jens Axboee8b0e952012-03-19 14:37:08 +01002491 .lname = "Start delay",
Jens Axboea5737c92010-06-29 10:40:30 +02002492 .type = FIO_OPT_STR_VAL_TIME,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002493 .off1 = offsetof(struct thread_options, start_delay),
2494 .off2 = offsetof(struct thread_options, start_delay_high),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002495 .help = "Only start job when this period has passed",
2496 .def = "0",
Jens Axboe0de5b262014-02-21 15:26:01 -08002497 .is_seconds = 1,
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07002498 .is_time = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002499 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002500 .group = FIO_OPT_G_RUNTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002501 },
2502 {
2503 .name = "runtime",
Jens Axboee8b0e952012-03-19 14:37:08 +01002504 .lname = "Runtime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002505 .alias = "timeout",
2506 .type = FIO_OPT_STR_VAL_TIME,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002507 .off1 = offsetof(struct thread_options, timeout),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002508 .help = "Stop workload when this amount of time has passed",
2509 .def = "0",
Jens Axboe0de5b262014-02-21 15:26:01 -08002510 .is_seconds = 1,
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07002511 .is_time = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002512 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002513 .group = FIO_OPT_G_RUNTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002514 },
2515 {
Jens Axboecf4464c2007-04-17 20:14:42 +02002516 .name = "time_based",
Jens Axboee8b0e952012-03-19 14:37:08 +01002517 .lname = "Time based",
Jens Axboecf4464c2007-04-17 20:14:42 +02002518 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002519 .off1 = offsetof(struct thread_options, time_based),
Jens Axboecf4464c2007-04-17 20:14:42 +02002520 .help = "Keep running until runtime/timeout is met",
Jens Axboee8b0e952012-03-19 14:37:08 +01002521 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002522 .group = FIO_OPT_G_RUNTIME,
Jens Axboecf4464c2007-04-17 20:14:42 +02002523 },
2524 {
Juan Casse62167762013-09-17 14:06:13 -07002525 .name = "verify_only",
2526 .lname = "Verify only",
2527 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002528 .off1 = offsetof(struct thread_options, verify_only),
Juan Casse62167762013-09-17 14:06:13 -07002529 .help = "Verifies previously written data is still valid",
2530 .category = FIO_OPT_C_GENERAL,
2531 .group = FIO_OPT_G_RUNTIME,
2532 },
2533 {
Jens Axboe721938a2008-09-10 09:46:16 +02002534 .name = "ramp_time",
Jens Axboee8b0e952012-03-19 14:37:08 +01002535 .lname = "Ramp time",
Jens Axboe721938a2008-09-10 09:46:16 +02002536 .type = FIO_OPT_STR_VAL_TIME,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002537 .off1 = offsetof(struct thread_options, ramp_time),
Jens Axboe721938a2008-09-10 09:46:16 +02002538 .help = "Ramp up time before measuring performance",
Jens Axboe0de5b262014-02-21 15:26:01 -08002539 .is_seconds = 1,
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07002540 .is_time = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002541 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01002542 .group = FIO_OPT_G_RUNTIME,
Jens Axboe721938a2008-09-10 09:46:16 +02002543 },
2544 {
Jens Axboec223da82010-03-24 13:23:53 +01002545 .name = "clocksource",
Jens Axboee8b0e952012-03-19 14:37:08 +01002546 .lname = "Clock source",
Jens Axboec223da82010-03-24 13:23:53 +01002547 .type = FIO_OPT_STR,
2548 .cb = fio_clock_source_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002549 .off1 = offsetof(struct thread_options, clocksource),
Jens Axboec223da82010-03-24 13:23:53 +01002550 .help = "What type of timing source to use",
Jens Axboee8b0e952012-03-19 14:37:08 +01002551 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01002552 .group = FIO_OPT_G_CLOCK,
Jens Axboec223da82010-03-24 13:23:53 +01002553 .posval = {
Jens Axboe67bf9822013-01-10 11:23:19 +01002554#ifdef CONFIG_GETTIMEOFDAY
Jens Axboec223da82010-03-24 13:23:53 +01002555 { .ival = "gettimeofday",
2556 .oval = CS_GTOD,
2557 .help = "Use gettimeofday(2) for timing",
2558 },
Jens Axboe67bf9822013-01-10 11:23:19 +01002559#endif
2560#ifdef CONFIG_CLOCK_GETTIME
Jens Axboec223da82010-03-24 13:23:53 +01002561 { .ival = "clock_gettime",
2562 .oval = CS_CGETTIME,
2563 .help = "Use clock_gettime(2) for timing",
2564 },
Jens Axboe67bf9822013-01-10 11:23:19 +01002565#endif
Jens Axboec223da82010-03-24 13:23:53 +01002566#ifdef ARCH_HAVE_CPU_CLOCK
2567 { .ival = "cpu",
2568 .oval = CS_CPUCLOCK,
2569 .help = "Use CPU private clock",
2570 },
2571#endif
2572 },
2573 },
2574 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002575 .name = "mem",
Jens Axboed3aad8f2007-03-15 14:12:05 +01002576 .alias = "iomem",
Jens Axboee8b0e952012-03-19 14:37:08 +01002577 .lname = "I/O Memory",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002578 .type = FIO_OPT_STR,
2579 .cb = str_mem_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002580 .off1 = offsetof(struct thread_options, mem_type),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002581 .help = "Backing type for IO buffers",
2582 .def = "malloc",
Jens Axboee8b0e952012-03-19 14:37:08 +01002583 .category = FIO_OPT_C_IO,
2584 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002585 .posval = {
2586 { .ival = "malloc",
2587 .oval = MEM_MALLOC,
2588 .help = "Use malloc(3) for IO buffers",
2589 },
Jens Axboeef7035a2014-06-18 15:30:09 -07002590#ifndef CONFIG_NO_SHM
Jens Axboeb370e462007-03-19 10:51:49 +01002591 { .ival = "shm",
2592 .oval = MEM_SHM,
2593 .help = "Use shared memory segments for IO buffers",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002594 },
2595#ifdef FIO_HAVE_HUGETLB
Jens Axboe37c8cdf2007-03-19 13:14:03 +01002596 { .ival = "shmhuge",
2597 .oval = MEM_SHMHUGE,
2598 .help = "Like shm, but use huge pages",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002599 },
2600#endif
Jens Axboeef7035a2014-06-18 15:30:09 -07002601#endif
Jens Axboeb370e462007-03-19 10:51:49 +01002602 { .ival = "mmap",
2603 .oval = MEM_MMAP,
2604 .help = "Use mmap(2) (file or anon) for IO buffers",
2605 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002606 { .ival = "mmapshared",
2607 .oval = MEM_MMAPSHARED,
2608 .help = "Like mmap, but use the shared flag",
2609 },
Jens Axboe37c8cdf2007-03-19 13:14:03 +01002610#ifdef FIO_HAVE_HUGETLB
2611 { .ival = "mmaphuge",
2612 .oval = MEM_MMAPHUGE,
2613 .help = "Like mmap, but use huge pages",
2614 },
2615#endif
Elliott Hugheseda3a602017-05-19 18:53:02 -07002616#ifdef CONFIG_CUDA
2617 { .ival = "cudamalloc",
2618 .oval = MEM_CUDA_MALLOC,
2619 .help = "Allocate GPU device memory for GPUDirect RDMA",
2620 },
2621#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01002622 },
2623 },
2624 {
Jens Axboed529ee12009-07-01 10:33:03 +02002625 .name = "iomem_align",
2626 .alias = "mem_align",
Jens Axboee8b0e952012-03-19 14:37:08 +01002627 .lname = "I/O memory alignment",
Jens Axboed529ee12009-07-01 10:33:03 +02002628 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002629 .off1 = offsetof(struct thread_options, mem_align),
Jens Axboed529ee12009-07-01 10:33:03 +02002630 .minval = 0,
2631 .help = "IO memory buffer offset alignment",
2632 .def = "0",
2633 .parent = "iomem",
Jens Axboed71c1542012-03-16 20:16:59 +01002634 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002635 .category = FIO_OPT_C_IO,
2636 .group = FIO_OPT_G_INVALID,
Jens Axboed529ee12009-07-01 10:33:03 +02002637 },
2638 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002639 .name = "verify",
Jens Axboee8b0e952012-03-19 14:37:08 +01002640 .lname = "Verify",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002641 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002642 .off1 = offsetof(struct thread_options, verify),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002643 .help = "Verify data written",
2644 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01002645 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01002646 .group = FIO_OPT_G_VERIFY,
Jens Axboe214e1ec2007-03-15 10:48:13 +01002647 .posval = {
2648 { .ival = "0",
2649 .oval = VERIFY_NONE,
2650 .help = "Don't do IO verification",
2651 },
Jens Axboefcca4b52007-07-27 15:42:00 +02002652 { .ival = "md5",
2653 .oval = VERIFY_MD5,
2654 .help = "Use md5 checksums for verification",
2655 },
Jens Axboed77a7af2007-07-27 15:35:06 +02002656 { .ival = "crc64",
2657 .oval = VERIFY_CRC64,
2658 .help = "Use crc64 checksums for verification",
2659 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01002660 { .ival = "crc32",
2661 .oval = VERIFY_CRC32,
2662 .help = "Use crc32 checksums for verification",
2663 },
Jens Axboeaf497e62008-08-04 15:40:35 +02002664 { .ival = "crc32c-intel",
Jens Axboee3aaafc2012-02-22 20:28:17 +01002665 .oval = VERIFY_CRC32C,
2666 .help = "Use crc32c checksums for verification (hw assisted, if available)",
Jens Axboeaf497e62008-08-04 15:40:35 +02002667 },
Jens Axboebac39e02008-06-11 20:46:19 +02002668 { .ival = "crc32c",
2669 .oval = VERIFY_CRC32C,
Jens Axboee3aaafc2012-02-22 20:28:17 +01002670 .help = "Use crc32c checksums for verification (hw assisted, if available)",
Jens Axboebac39e02008-06-11 20:46:19 +02002671 },
Jens Axboe969f7ed2007-07-27 09:07:17 +02002672 { .ival = "crc16",
2673 .oval = VERIFY_CRC16,
2674 .help = "Use crc16 checksums for verification",
2675 },
Jens Axboe1e154bd2007-07-27 09:52:40 +02002676 { .ival = "crc7",
2677 .oval = VERIFY_CRC7,
2678 .help = "Use crc7 checksums for verification",
2679 },
Jens Axboe7c353ce2009-08-09 22:40:33 +02002680 { .ival = "sha1",
2681 .oval = VERIFY_SHA1,
2682 .help = "Use sha1 checksums for verification",
2683 },
Jens Axboecd14cc12007-07-30 10:59:33 +02002684 { .ival = "sha256",
2685 .oval = VERIFY_SHA256,
2686 .help = "Use sha256 checksums for verification",
2687 },
2688 { .ival = "sha512",
2689 .oval = VERIFY_SHA512,
2690 .help = "Use sha512 checksums for verification",
2691 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002692 { .ival = "sha3-224",
2693 .oval = VERIFY_SHA3_224,
2694 .help = "Use sha3-224 checksums for verification",
2695 },
2696 { .ival = "sha3-256",
2697 .oval = VERIFY_SHA3_256,
2698 .help = "Use sha3-256 checksums for verification",
2699 },
2700 { .ival = "sha3-384",
2701 .oval = VERIFY_SHA3_384,
2702 .help = "Use sha3-384 checksums for verification",
2703 },
2704 { .ival = "sha3-512",
2705 .oval = VERIFY_SHA3_512,
2706 .help = "Use sha3-512 checksums for verification",
2707 },
Jens Axboe844ea602014-02-20 13:21:45 -08002708 { .ival = "xxhash",
2709 .oval = VERIFY_XXHASH,
2710 .help = "Use xxhash checksums for verification",
2711 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002712 /* Meta information was included into verify_header,
2713 * 'meta' verification is implied by default. */
Shawn Lewis7437ee82007-08-02 21:05:58 +02002714 { .ival = "meta",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002715 .oval = VERIFY_HDR_ONLY,
2716 .help = "Use io information for verification. "
2717 "Now is implied by default, thus option is obsolete, "
2718 "don't use it",
2719 },
2720 { .ival = "pattern",
2721 .oval = VERIFY_PATTERN_NO_HDR,
2722 .help = "Verify strict pattern",
Shawn Lewis7437ee82007-08-02 21:05:58 +02002723 },
Jens Axboe36690c92007-03-26 10:23:34 +02002724 {
2725 .ival = "null",
2726 .oval = VERIFY_NULL,
2727 .help = "Pretend to verify",
2728 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01002729 },
2730 },
2731 {
Jens Axboe005c5652007-08-02 22:21:36 +02002732 .name = "do_verify",
Jens Axboee8b0e952012-03-19 14:37:08 +01002733 .lname = "Perform verify step",
Jens Axboe68e1f292007-08-10 10:32:14 +02002734 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002735 .off1 = offsetof(struct thread_options, do_verify),
Jens Axboe005c5652007-08-02 22:21:36 +02002736 .help = "Run verification stage after write",
2737 .def = "1",
2738 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002739 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002740 .category = FIO_OPT_C_IO,
2741 .group = FIO_OPT_G_VERIFY,
Jens Axboe005c5652007-08-02 22:21:36 +02002742 },
2743 {
Jens Axboe160b9662007-03-27 10:59:49 +02002744 .name = "verifysort",
Jens Axboee8b0e952012-03-19 14:37:08 +01002745 .lname = "Verify sort",
Jens Axboe160b9662007-03-27 10:59:49 +02002746 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002747 .off1 = offsetof(struct thread_options, verifysort),
Jens Axboe160b9662007-03-27 10:59:49 +02002748 .help = "Sort written verify blocks for read back",
2749 .def = "1",
Jens Axboec83f2df2007-07-31 22:51:47 +02002750 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002751 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002752 .category = FIO_OPT_C_IO,
2753 .group = FIO_OPT_G_VERIFY,
Jens Axboe160b9662007-03-27 10:59:49 +02002754 },
2755 {
Jens Axboe1ae83d42013-01-12 01:44:15 -07002756 .name = "verifysort_nr",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002757 .lname = "Verify Sort Nr",
Jens Axboe1ae83d42013-01-12 01:44:15 -07002758 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002759 .off1 = offsetof(struct thread_options, verifysort_nr),
Jens Axboe1ae83d42013-01-12 01:44:15 -07002760 .help = "Pre-load and sort verify blocks for a read workload",
2761 .minval = 0,
2762 .maxval = 131072,
2763 .def = "1024",
2764 .parent = "verify",
Jens Axboe836fcc02013-01-24 09:08:45 -07002765 .category = FIO_OPT_C_IO,
2766 .group = FIO_OPT_G_VERIFY,
Jens Axboe1ae83d42013-01-12 01:44:15 -07002767 },
2768 {
Jens Axboea59e1702007-07-30 08:53:27 +02002769 .name = "verify_interval",
Jens Axboee8b0e952012-03-19 14:37:08 +01002770 .lname = "Verify interval",
Jens Axboee01b22b2009-06-09 15:43:25 +02002771 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002772 .off1 = offsetof(struct thread_options, verify_interval),
Jens Axboe819a9682007-07-28 21:30:31 +02002773 .minval = 2 * sizeof(struct verify_header),
Jens Axboea59e1702007-07-30 08:53:27 +02002774 .help = "Store verify buffer header every N bytes",
Jens Axboeafdf9352007-07-31 16:14:34 +02002775 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002776 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01002777 .interval = 2 * sizeof(struct verify_header),
Jens Axboee8b0e952012-03-19 14:37:08 +01002778 .category = FIO_OPT_C_IO,
2779 .group = FIO_OPT_G_VERIFY,
Shawn Lewis3f9f4e22007-07-28 21:10:37 +02002780 },
2781 {
Jens Axboea59e1702007-07-30 08:53:27 +02002782 .name = "verify_offset",
Jens Axboee8b0e952012-03-19 14:37:08 +01002783 .lname = "Verify offset",
Jens Axboee01b22b2009-06-09 15:43:25 +02002784 .type = FIO_OPT_INT,
Jens Axboea59e1702007-07-30 08:53:27 +02002785 .help = "Offset verify header location by N bytes",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002786 .off1 = offsetof(struct thread_options, verify_offset),
Jens Axboe203160d2012-03-29 21:17:12 +02002787 .minval = sizeof(struct verify_header),
Jens Axboeafdf9352007-07-31 16:14:34 +02002788 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002789 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002790 .category = FIO_OPT_C_IO,
2791 .group = FIO_OPT_G_VERIFY,
Shawn Lewis546a9142007-07-28 21:11:37 +02002792 },
2793 {
Shawn Lewise28218f2008-01-16 11:01:33 +01002794 .name = "verify_pattern",
Jens Axboee8b0e952012-03-19 14:37:08 +01002795 .lname = "Verify pattern",
Radha Ramachandran0e92f872009-10-27 20:14:27 +01002796 .type = FIO_OPT_STR,
Shawn Lewise28218f2008-01-16 11:01:33 +01002797 .cb = str_verify_pattern_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002798 .off1 = offsetof(struct thread_options, verify_pattern),
Shawn Lewise28218f2008-01-16 11:01:33 +01002799 .help = "Fill pattern for IO buffers",
2800 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002801 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002802 .category = FIO_OPT_C_IO,
2803 .group = FIO_OPT_G_VERIFY,
Shawn Lewise28218f2008-01-16 11:01:33 +01002804 },
2805 {
Jens Axboea12a3b42007-08-09 10:20:54 +02002806 .name = "verify_fatal",
Jens Axboee8b0e952012-03-19 14:37:08 +01002807 .lname = "Verify fatal",
Jens Axboe68e1f292007-08-10 10:32:14 +02002808 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002809 .off1 = offsetof(struct thread_options, verify_fatal),
Jens Axboea12a3b42007-08-09 10:20:54 +02002810 .def = "0",
2811 .help = "Exit on a single verify failure, don't continue",
2812 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002813 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002814 .category = FIO_OPT_C_IO,
2815 .group = FIO_OPT_G_VERIFY,
Jens Axboea12a3b42007-08-09 10:20:54 +02002816 },
2817 {
Jens Axboeb463e932011-01-12 09:03:23 +01002818 .name = "verify_dump",
Jens Axboee8b0e952012-03-19 14:37:08 +01002819 .lname = "Verify dump",
Jens Axboeb463e932011-01-12 09:03:23 +01002820 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002821 .off1 = offsetof(struct thread_options, verify_dump),
Jens Axboeef71e312011-10-25 22:43:36 +02002822 .def = "0",
Jens Axboeb463e932011-01-12 09:03:23 +01002823 .help = "Dump contents of good and bad blocks on failure",
2824 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002825 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002826 .category = FIO_OPT_C_IO,
2827 .group = FIO_OPT_G_VERIFY,
Jens Axboeb463e932011-01-12 09:03:23 +01002828 },
2829 {
Jens Axboee8462bd2009-07-06 12:59:04 +02002830 .name = "verify_async",
Jens Axboee8b0e952012-03-19 14:37:08 +01002831 .lname = "Verify asynchronously",
Jens Axboee8462bd2009-07-06 12:59:04 +02002832 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002833 .off1 = offsetof(struct thread_options, verify_async),
Jens Axboee8462bd2009-07-06 12:59:04 +02002834 .def = "0",
2835 .help = "Number of async verifier threads to use",
2836 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002837 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002838 .category = FIO_OPT_C_IO,
2839 .group = FIO_OPT_G_VERIFY,
Jens Axboee8462bd2009-07-06 12:59:04 +02002840 },
Jens Axboe9e144182010-06-15 14:25:36 +02002841 {
2842 .name = "verify_backlog",
Jens Axboee8b0e952012-03-19 14:37:08 +01002843 .lname = "Verify backlog",
Jens Axboe9e144182010-06-15 14:25:36 +02002844 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002845 .off1 = offsetof(struct thread_options, verify_backlog),
Jens Axboe9e144182010-06-15 14:25:36 +02002846 .help = "Verify after this number of blocks are written",
2847 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002848 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002849 .category = FIO_OPT_C_IO,
2850 .group = FIO_OPT_G_VERIFY,
Jens Axboe9e144182010-06-15 14:25:36 +02002851 },
2852 {
2853 .name = "verify_backlog_batch",
Jens Axboee8b0e952012-03-19 14:37:08 +01002854 .lname = "Verify backlog batch",
Jens Axboe9e144182010-06-15 14:25:36 +02002855 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002856 .off1 = offsetof(struct thread_options, verify_batch),
Jens Axboe9e144182010-06-15 14:25:36 +02002857 .help = "Verify this number of IO blocks",
Jens Axboe0d29de82010-09-01 13:54:15 +02002858 .parent = "verify",
Jens Axboed71c1542012-03-16 20:16:59 +01002859 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002860 .category = FIO_OPT_C_IO,
2861 .group = FIO_OPT_G_VERIFY,
Jens Axboe9e144182010-06-15 14:25:36 +02002862 },
Jens Axboee8462bd2009-07-06 12:59:04 +02002863#ifdef FIO_HAVE_CPU_AFFINITY
2864 {
2865 .name = "verify_async_cpus",
Jens Axboee8b0e952012-03-19 14:37:08 +01002866 .lname = "Async verify CPUs",
Jens Axboee8462bd2009-07-06 12:59:04 +02002867 .type = FIO_OPT_STR,
2868 .cb = str_verify_cpus_allowed_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002869 .off1 = offsetof(struct thread_options, verify_cpumask),
Jens Axboee8462bd2009-07-06 12:59:04 +02002870 .help = "Set CPUs allowed for async verify threads",
2871 .parent = "verify_async",
Jens Axboed71c1542012-03-16 20:16:59 +01002872 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002873 .category = FIO_OPT_C_IO,
2874 .group = FIO_OPT_G_VERIFY,
Jens Axboee8462bd2009-07-06 12:59:04 +02002875 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002876#else
2877 {
2878 .name = "verify_async_cpus",
2879 .lname = "Async verify CPUs",
2880 .type = FIO_OPT_UNSUPPORTED,
2881 .help = "Your platform does not support CPU affinities",
2882 },
Jens Axboee8462bd2009-07-06 12:59:04 +02002883#endif
Jens Axboe51aa2da2013-01-21 10:55:02 -07002884 {
2885 .name = "experimental_verify",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002886 .lname = "Experimental Verify",
2887 .off1 = offsetof(struct thread_options, experimental_verify),
Jens Axboe51aa2da2013-01-21 10:55:02 -07002888 .type = FIO_OPT_BOOL,
Jens Axboeb31eaac2013-01-24 15:29:58 -07002889 .help = "Enable experimental verification",
Jens Axboede54cfd2014-11-10 20:34:00 -07002890 .parent = "verify",
2891 .category = FIO_OPT_C_IO,
2892 .group = FIO_OPT_G_VERIFY,
2893 },
2894 {
2895 .name = "verify_state_load",
2896 .lname = "Load verify state",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002897 .off1 = offsetof(struct thread_options, verify_state),
Jens Axboede54cfd2014-11-10 20:34:00 -07002898 .type = FIO_OPT_BOOL,
2899 .help = "Load verify termination state",
2900 .parent = "verify",
2901 .category = FIO_OPT_C_IO,
2902 .group = FIO_OPT_G_VERIFY,
2903 },
2904 {
2905 .name = "verify_state_save",
2906 .lname = "Save verify state",
Elliott Hugheseda3a602017-05-19 18:53:02 -07002907 .off1 = offsetof(struct thread_options, verify_state_save),
Jens Axboede54cfd2014-11-10 20:34:00 -07002908 .type = FIO_OPT_BOOL,
2909 .def = "1",
2910 .help = "Save verify state on termination",
2911 .parent = "verify",
Jens Axboe836fcc02013-01-24 09:08:45 -07002912 .category = FIO_OPT_C_IO,
2913 .group = FIO_OPT_G_VERIFY,
Jens Axboe51aa2da2013-01-21 10:55:02 -07002914 },
Jens Axboe0d29de82010-09-01 13:54:15 +02002915#ifdef FIO_HAVE_TRIM
2916 {
2917 .name = "trim_percentage",
Jens Axboee8b0e952012-03-19 14:37:08 +01002918 .lname = "Trim percentage",
Jens Axboe0d29de82010-09-01 13:54:15 +02002919 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002920 .off1 = offsetof(struct thread_options, trim_percentage),
Jens Axboe20eb06b2012-03-16 19:57:23 +01002921 .minval = 0,
Jens Axboe0d29de82010-09-01 13:54:15 +02002922 .maxval = 100,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002923 .help = "Number of verify blocks to trim (i.e., discard)",
Jens Axboe0d29de82010-09-01 13:54:15 +02002924 .parent = "verify",
2925 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002926 .interval = 1,
Jens Axboed71c1542012-03-16 20:16:59 +01002927 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002928 .category = FIO_OPT_C_IO,
2929 .group = FIO_OPT_G_TRIM,
Jens Axboe0d29de82010-09-01 13:54:15 +02002930 },
2931 {
2932 .name = "trim_verify_zero",
Jens Axboee8b0e952012-03-19 14:37:08 +01002933 .lname = "Verify trim zero",
Jens Axboe20eb06b2012-03-16 19:57:23 +01002934 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002935 .help = "Verify that trimmed (i.e., discarded) blocks are returned as zeroes",
2936 .off1 = offsetof(struct thread_options, trim_zero),
Jens Axboe0d29de82010-09-01 13:54:15 +02002937 .parent = "trim_percentage",
Jens Axboed71c1542012-03-16 20:16:59 +01002938 .hide = 1,
Jens Axboe0d29de82010-09-01 13:54:15 +02002939 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01002940 .category = FIO_OPT_C_IO,
2941 .group = FIO_OPT_G_TRIM,
Jens Axboe0d29de82010-09-01 13:54:15 +02002942 },
2943 {
2944 .name = "trim_backlog",
Jens Axboee8b0e952012-03-19 14:37:08 +01002945 .lname = "Trim backlog",
Jens Axboe0d29de82010-09-01 13:54:15 +02002946 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002947 .off1 = offsetof(struct thread_options, trim_backlog),
Jens Axboe0d29de82010-09-01 13:54:15 +02002948 .help = "Trim after this number of blocks are written",
2949 .parent = "trim_percentage",
Jens Axboed71c1542012-03-16 20:16:59 +01002950 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01002951 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002952 .category = FIO_OPT_C_IO,
2953 .group = FIO_OPT_G_TRIM,
Jens Axboe0d29de82010-09-01 13:54:15 +02002954 },
2955 {
2956 .name = "trim_backlog_batch",
Jens Axboee8b0e952012-03-19 14:37:08 +01002957 .lname = "Trim backlog batch",
Jens Axboe0d29de82010-09-01 13:54:15 +02002958 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002959 .off1 = offsetof(struct thread_options, trim_batch),
Jens Axboe0d29de82010-09-01 13:54:15 +02002960 .help = "Trim this number of IO blocks",
2961 .parent = "trim_percentage",
Jens Axboed71c1542012-03-16 20:16:59 +01002962 .hide = 1,
Jens Axboe20eb06b2012-03-16 19:57:23 +01002963 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01002964 .category = FIO_OPT_C_IO,
2965 .group = FIO_OPT_G_TRIM,
Jens Axboe0d29de82010-09-01 13:54:15 +02002966 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07002967#else
2968 {
2969 .name = "trim_percentage",
2970 .lname = "Trim percentage",
2971 .type = FIO_OPT_UNSUPPORTED,
2972 .help = "Fio does not support TRIM on your platform",
2973 },
2974 {
2975 .name = "trim_verify_zero",
2976 .lname = "Verify trim zero",
2977 .type = FIO_OPT_UNSUPPORTED,
2978 .help = "Fio does not support TRIM on your platform",
2979 },
2980 {
2981 .name = "trim_backlog",
2982 .lname = "Trim backlog",
2983 .type = FIO_OPT_UNSUPPORTED,
2984 .help = "Fio does not support TRIM on your platform",
2985 },
2986 {
2987 .name = "trim_backlog_batch",
2988 .lname = "Trim backlog batch",
2989 .type = FIO_OPT_UNSUPPORTED,
2990 .help = "Fio does not support TRIM on your platform",
2991 },
Jens Axboe0d29de82010-09-01 13:54:15 +02002992#endif
Jens Axboee8462bd2009-07-06 12:59:04 +02002993 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01002994 .name = "write_iolog",
Jens Axboee8b0e952012-03-19 14:37:08 +01002995 .lname = "Write I/O log",
Jens Axboe214e1ec2007-03-15 10:48:13 +01002996 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07002997 .off1 = offsetof(struct thread_options, write_iolog_file),
Jens Axboe214e1ec2007-03-15 10:48:13 +01002998 .help = "Store IO pattern to file",
Jens Axboee8b0e952012-03-19 14:37:08 +01002999 .category = FIO_OPT_C_IO,
3000 .group = FIO_OPT_G_IOLOG,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003001 },
3002 {
3003 .name = "read_iolog",
Jens Axboee8b0e952012-03-19 14:37:08 +01003004 .lname = "Read I/O log",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003005 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003006 .off1 = offsetof(struct thread_options, read_iolog_file),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003007 .help = "Playback IO pattern from file",
Jens Axboee8b0e952012-03-19 14:37:08 +01003008 .category = FIO_OPT_C_IO,
3009 .group = FIO_OPT_G_IOLOG,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003010 },
3011 {
David Nellans64bbb862010-08-24 22:13:30 +02003012 .name = "replay_no_stall",
Jens Axboee8b0e952012-03-19 14:37:08 +01003013 .lname = "Don't stall on replay",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003014 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003015 .off1 = offsetof(struct thread_options, no_stall),
David Nellans64bbb862010-08-24 22:13:30 +02003016 .def = "0",
Jens Axboe87e7a972010-08-25 09:01:25 +02003017 .parent = "read_iolog",
Jens Axboed71c1542012-03-16 20:16:59 +01003018 .hide = 1,
David Nellans64bbb862010-08-24 22:13:30 +02003019 .help = "Playback IO pattern file as fast as possible without stalls",
Jens Axboee8b0e952012-03-19 14:37:08 +01003020 .category = FIO_OPT_C_IO,
3021 .group = FIO_OPT_G_IOLOG,
David Nellans64bbb862010-08-24 22:13:30 +02003022 },
3023 {
David Nellansd1c46c02010-08-31 21:20:47 +02003024 .name = "replay_redirect",
Jens Axboee8b0e952012-03-19 14:37:08 +01003025 .lname = "Redirect device for replay",
David Nellansd1c46c02010-08-31 21:20:47 +02003026 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003027 .off1 = offsetof(struct thread_options, replay_redirect),
David Nellansd1c46c02010-08-31 21:20:47 +02003028 .parent = "read_iolog",
Jens Axboed71c1542012-03-16 20:16:59 +01003029 .hide = 1,
David Nellansd1c46c02010-08-31 21:20:47 +02003030 .help = "Replay all I/O onto this device, regardless of trace device",
Jens Axboee8b0e952012-03-19 14:37:08 +01003031 .category = FIO_OPT_C_IO,
3032 .group = FIO_OPT_G_IOLOG,
David Nellansd1c46c02010-08-31 21:20:47 +02003033 },
3034 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003035 .name = "replay_scale",
3036 .lname = "Replace offset scale factor",
3037 .type = FIO_OPT_INT,
3038 .off1 = offsetof(struct thread_options, replay_scale),
3039 .parent = "read_iolog",
3040 .def = "1",
3041 .help = "Align offsets to this blocksize",
3042 .category = FIO_OPT_C_IO,
3043 .group = FIO_OPT_G_IOLOG,
3044 },
3045 {
3046 .name = "replay_align",
3047 .lname = "Replace alignment",
3048 .type = FIO_OPT_INT,
3049 .off1 = offsetof(struct thread_options, replay_align),
3050 .parent = "read_iolog",
3051 .help = "Scale offset down by this factor",
3052 .category = FIO_OPT_C_IO,
3053 .group = FIO_OPT_G_IOLOG,
3054 .pow2 = 1,
3055 },
3056 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003057 .name = "exec_prerun",
Jens Axboee8b0e952012-03-19 14:37:08 +01003058 .lname = "Pre-execute runnable",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003059 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003060 .off1 = offsetof(struct thread_options, exec_prerun),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003061 .help = "Execute this file prior to running job",
Jens Axboee8b0e952012-03-19 14:37:08 +01003062 .category = FIO_OPT_C_GENERAL,
3063 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003064 },
3065 {
3066 .name = "exec_postrun",
Jens Axboee8b0e952012-03-19 14:37:08 +01003067 .lname = "Post-execute runnable",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003068 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003069 .off1 = offsetof(struct thread_options, exec_postrun),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003070 .help = "Execute this file after running job",
Jens Axboee8b0e952012-03-19 14:37:08 +01003071 .category = FIO_OPT_C_GENERAL,
3072 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003073 },
3074#ifdef FIO_HAVE_IOSCHED_SWITCH
3075 {
3076 .name = "ioscheduler",
Jens Axboee8b0e952012-03-19 14:37:08 +01003077 .lname = "I/O scheduler",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003078 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003079 .off1 = offsetof(struct thread_options, ioscheduler),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003080 .help = "Use this IO scheduler on the backing device",
Jens Axboee8b0e952012-03-19 14:37:08 +01003081 .category = FIO_OPT_C_FILE,
3082 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003083 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003084#else
3085 {
3086 .name = "ioscheduler",
3087 .lname = "I/O scheduler",
3088 .type = FIO_OPT_UNSUPPORTED,
3089 .help = "Your platform does not support IO scheduler switching",
3090 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01003091#endif
3092 {
3093 .name = "zonesize",
Jens Axboee8b0e952012-03-19 14:37:08 +01003094 .lname = "Zone size",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003095 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003096 .off1 = offsetof(struct thread_options, zone_size),
Steven Noonaned335852012-01-31 13:58:00 +01003097 .help = "Amount of data to read per zone",
3098 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003099 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01003100 .category = FIO_OPT_C_IO,
3101 .group = FIO_OPT_G_ZONE,
Steven Noonaned335852012-01-31 13:58:00 +01003102 },
3103 {
3104 .name = "zonerange",
Jens Axboee8b0e952012-03-19 14:37:08 +01003105 .lname = "Zone range",
Steven Noonaned335852012-01-31 13:58:00 +01003106 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003107 .off1 = offsetof(struct thread_options, zone_range),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003108 .help = "Give size of an IO zone",
3109 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003110 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01003111 .category = FIO_OPT_C_IO,
3112 .group = FIO_OPT_G_ZONE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003113 },
3114 {
3115 .name = "zoneskip",
Jens Axboee8b0e952012-03-19 14:37:08 +01003116 .lname = "Zone skip",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003117 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003118 .off1 = offsetof(struct thread_options, zone_skip),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003119 .help = "Space between IO zones",
3120 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003121 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01003122 .category = FIO_OPT_C_IO,
3123 .group = FIO_OPT_G_ZONE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003124 },
3125 {
3126 .name = "lockmem",
Jens Axboee8b0e952012-03-19 14:37:08 +01003127 .lname = "Lock memory",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003128 .type = FIO_OPT_STR_VAL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003129 .off1 = offsetof(struct thread_options, lockmem),
Jens Axboe81c6b6c2013-04-10 19:30:50 +02003130 .help = "Lock down this amount of memory (per worker)",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003131 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003132 .interval = 1024 * 1024,
Jens Axboee8b0e952012-03-19 14:37:08 +01003133 .category = FIO_OPT_C_GENERAL,
3134 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003135 },
3136 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003137 .name = "rwmixread",
Jens Axboee8b0e952012-03-19 14:37:08 +01003138 .lname = "Read/write mix read",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003139 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02003140 .cb = str_rwmix_read_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003141 .off1 = offsetof(struct thread_options, rwmix[DDIR_READ]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003142 .maxval = 100,
3143 .help = "Percentage of mixed workload that is reads",
3144 .def = "50",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003145 .interval = 5,
Jens Axboe90265352012-03-19 20:29:44 +01003146 .inverse = "rwmixwrite",
Jens Axboee8b0e952012-03-19 14:37:08 +01003147 .category = FIO_OPT_C_IO,
3148 .group = FIO_OPT_G_RWMIX,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003149 },
3150 {
3151 .name = "rwmixwrite",
Jens Axboee8b0e952012-03-19 14:37:08 +01003152 .lname = "Read/write mix write",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003153 .type = FIO_OPT_INT,
Jens Axboecb499fc2008-05-28 10:33:32 +02003154 .cb = str_rwmix_write_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003155 .off1 = offsetof(struct thread_options, rwmix[DDIR_WRITE]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003156 .maxval = 100,
3157 .help = "Percentage of mixed workload that is writes",
3158 .def = "50",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003159 .interval = 5,
Jens Axboe90265352012-03-19 20:29:44 +01003160 .inverse = "rwmixread",
Jens Axboee8b0e952012-03-19 14:37:08 +01003161 .category = FIO_OPT_C_IO,
3162 .group = FIO_OPT_G_RWMIX,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003163 },
3164 {
Jens Axboeafdf9352007-07-31 16:14:34 +02003165 .name = "rwmixcycle",
Jens Axboee8b0e952012-03-19 14:37:08 +01003166 .lname = "Read/write mix cycle",
Jens Axboe15ca1502008-04-07 09:26:02 +02003167 .type = FIO_OPT_DEPRECATED,
Jens Axboee8b0e952012-03-19 14:37:08 +01003168 .category = FIO_OPT_C_IO,
3169 .group = FIO_OPT_G_RWMIX,
Jens Axboeafdf9352007-07-31 16:14:34 +02003170 },
3171 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003172 .name = "nice",
Jens Axboee8b0e952012-03-19 14:37:08 +01003173 .lname = "Nice",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003174 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003175 .off1 = offsetof(struct thread_options, nice),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003176 .help = "Set job CPU nice value",
3177 .minval = -19,
3178 .maxval = 20,
3179 .def = "0",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003180 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003181 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01003182 .group = FIO_OPT_G_CRED,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003183 },
3184#ifdef FIO_HAVE_IOPRIO
3185 {
3186 .name = "prio",
Jens Axboee8b0e952012-03-19 14:37:08 +01003187 .lname = "I/O nice priority",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003188 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003189 .off1 = offsetof(struct thread_options, ioprio),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003190 .help = "Set job IO priority value",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003191 .minval = IOPRIO_MIN_PRIO,
3192 .maxval = IOPRIO_MAX_PRIO,
Jens Axboe20eb06b2012-03-16 19:57:23 +01003193 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003194 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01003195 .group = FIO_OPT_G_CRED,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003196 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003197#else
3198 {
3199 .name = "prio",
3200 .lname = "I/O nice priority",
3201 .type = FIO_OPT_UNSUPPORTED,
3202 .help = "Your platform does not support IO priorities",
3203 },
3204#endif
3205#ifdef FIO_HAVE_IOPRIO_CLASS
3206#ifndef FIO_HAVE_IOPRIO
3207#error "FIO_HAVE_IOPRIO_CLASS requires FIO_HAVE_IOPRIO"
3208#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01003209 {
3210 .name = "prioclass",
Jens Axboee8b0e952012-03-19 14:37:08 +01003211 .lname = "I/O nice priority class",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003212 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003213 .off1 = offsetof(struct thread_options, ioprio_class),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003214 .help = "Set job IO priority class",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003215 .minval = IOPRIO_MIN_PRIO_CLASS,
3216 .maxval = IOPRIO_MAX_PRIO_CLASS,
Jens Axboe20eb06b2012-03-16 19:57:23 +01003217 .interval = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003218 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01003219 .group = FIO_OPT_G_CRED,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003220 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003221#else
3222 {
3223 .name = "prioclass",
3224 .lname = "I/O nice priority class",
3225 .type = FIO_OPT_UNSUPPORTED,
3226 .help = "Your platform does not support IO priority classes",
3227 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01003228#endif
3229 {
3230 .name = "thinktime",
Jens Axboee8b0e952012-03-19 14:37:08 +01003231 .lname = "Thinktime",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003232 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003233 .off1 = offsetof(struct thread_options, thinktime),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003234 .help = "Idle time between IO buffers (usec)",
3235 .def = "0",
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07003236 .is_time = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003237 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003238 .group = FIO_OPT_G_THINKTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003239 },
3240 {
3241 .name = "thinktime_spin",
Jens Axboee8b0e952012-03-19 14:37:08 +01003242 .lname = "Thinktime spin",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003243 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003244 .off1 = offsetof(struct thread_options, thinktime_spin),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003245 .help = "Start think time by spinning this amount (usec)",
3246 .def = "0",
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07003247 .is_time = 1,
Jens Axboeafdf9352007-07-31 16:14:34 +02003248 .parent = "thinktime",
Jens Axboed71c1542012-03-16 20:16:59 +01003249 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003250 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003251 .group = FIO_OPT_G_THINKTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003252 },
3253 {
3254 .name = "thinktime_blocks",
Jens Axboee8b0e952012-03-19 14:37:08 +01003255 .lname = "Thinktime blocks",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003256 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003257 .off1 = offsetof(struct thread_options, thinktime_blocks),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003258 .help = "IO buffer period between 'thinktime'",
3259 .def = "1",
Jens Axboeafdf9352007-07-31 16:14:34 +02003260 .parent = "thinktime",
Jens Axboed71c1542012-03-16 20:16:59 +01003261 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003262 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003263 .group = FIO_OPT_G_THINKTIME,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003264 },
3265 {
3266 .name = "rate",
Jens Axboee8b0e952012-03-19 14:37:08 +01003267 .lname = "I/O rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02003268 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003269 .off1 = offsetof(struct thread_options, rate[DDIR_READ]),
3270 .off2 = offsetof(struct thread_options, rate[DDIR_WRITE]),
3271 .off3 = offsetof(struct thread_options, rate[DDIR_TRIM]),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003272 .help = "Set bandwidth rate",
Jens Axboee8b0e952012-03-19 14:37:08 +01003273 .category = FIO_OPT_C_IO,
3274 .group = FIO_OPT_G_RATE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003275 },
3276 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003277 .name = "rate_min",
3278 .alias = "ratemin",
Jens Axboee8b0e952012-03-19 14:37:08 +01003279 .lname = "I/O min rate",
Jens Axboee01b22b2009-06-09 15:43:25 +02003280 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003281 .off1 = offsetof(struct thread_options, ratemin[DDIR_READ]),
3282 .off2 = offsetof(struct thread_options, ratemin[DDIR_WRITE]),
3283 .off3 = offsetof(struct thread_options, ratemin[DDIR_TRIM]),
Jens Axboe4e991c22007-03-15 11:41:11 +01003284 .help = "Job must meet this rate or it will be shutdown",
Jens Axboeafdf9352007-07-31 16:14:34 +02003285 .parent = "rate",
Jens Axboed71c1542012-03-16 20:16:59 +01003286 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003287 .category = FIO_OPT_C_IO,
3288 .group = FIO_OPT_G_RATE,
Jens Axboe4e991c22007-03-15 11:41:11 +01003289 },
3290 {
3291 .name = "rate_iops",
Jens Axboee8b0e952012-03-19 14:37:08 +01003292 .lname = "I/O rate IOPS",
Jens Axboee01b22b2009-06-09 15:43:25 +02003293 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003294 .off1 = offsetof(struct thread_options, rate_iops[DDIR_READ]),
3295 .off2 = offsetof(struct thread_options, rate_iops[DDIR_WRITE]),
3296 .off3 = offsetof(struct thread_options, rate_iops[DDIR_TRIM]),
Jens Axboe4e991c22007-03-15 11:41:11 +01003297 .help = "Limit IO used to this number of IO operations/sec",
Jens Axboed71c1542012-03-16 20:16:59 +01003298 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003299 .category = FIO_OPT_C_IO,
3300 .group = FIO_OPT_G_RATE,
Jens Axboe4e991c22007-03-15 11:41:11 +01003301 },
3302 {
3303 .name = "rate_iops_min",
Jens Axboee8b0e952012-03-19 14:37:08 +01003304 .lname = "I/O min rate IOPS",
Jens Axboee01b22b2009-06-09 15:43:25 +02003305 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003306 .off1 = offsetof(struct thread_options, rate_iops_min[DDIR_READ]),
3307 .off2 = offsetof(struct thread_options, rate_iops_min[DDIR_WRITE]),
3308 .off3 = offsetof(struct thread_options, rate_iops_min[DDIR_TRIM]),
Bruce Cran03e20d62011-01-02 20:14:54 +01003309 .help = "Job must meet this rate or it will be shut down",
Jens Axboeafdf9352007-07-31 16:14:34 +02003310 .parent = "rate_iops",
Jens Axboed71c1542012-03-16 20:16:59 +01003311 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003312 .category = FIO_OPT_C_IO,
3313 .group = FIO_OPT_G_RATE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003314 },
3315 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003316 .name = "rate_process",
3317 .lname = "Rate Process",
3318 .type = FIO_OPT_STR,
3319 .off1 = offsetof(struct thread_options, rate_process),
3320 .help = "What process controls how rated IO is managed",
3321 .def = "linear",
3322 .category = FIO_OPT_C_IO,
3323 .group = FIO_OPT_G_RATE,
3324 .posval = {
3325 { .ival = "linear",
3326 .oval = RATE_PROCESS_LINEAR,
3327 .help = "Linear rate of IO",
3328 },
3329 {
3330 .ival = "poisson",
3331 .oval = RATE_PROCESS_POISSON,
3332 .help = "Rate follows Poisson process",
3333 },
3334 },
3335 .parent = "rate",
3336 },
3337 {
3338 .name = "rate_cycle",
3339 .alias = "ratecycle",
Jens Axboee8b0e952012-03-19 14:37:08 +01003340 .lname = "I/O rate cycle",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003341 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003342 .off1 = offsetof(struct thread_options, ratecycle),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003343 .help = "Window average for rate limits (msec)",
3344 .def = "1000",
Jens Axboeafdf9352007-07-31 16:14:34 +02003345 .parent = "rate",
Jens Axboed71c1542012-03-16 20:16:59 +01003346 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003347 .category = FIO_OPT_C_IO,
3348 .group = FIO_OPT_G_RATE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003349 },
3350 {
Jens Axboe15501532012-10-24 16:37:45 +02003351 .name = "max_latency",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003352 .lname = "Max Latency",
Jens Axboe15501532012-10-24 16:37:45 +02003353 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003354 .off1 = offsetof(struct thread_options, max_latency),
Jens Axboe15501532012-10-24 16:37:45 +02003355 .help = "Maximum tolerated IO latency (usec)",
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07003356 .is_time = 1,
Jens Axboe1e5324e2012-11-14 14:25:31 -07003357 .category = FIO_OPT_C_IO,
Jens Axboe3e260a42013-12-09 12:38:53 -07003358 .group = FIO_OPT_G_LATPROF,
3359 },
3360 {
3361 .name = "latency_target",
3362 .lname = "Latency Target (usec)",
3363 .type = FIO_OPT_STR_VAL_TIME,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003364 .off1 = offsetof(struct thread_options, latency_target),
Jens Axboe3e260a42013-12-09 12:38:53 -07003365 .help = "Ramp to max queue depth supporting this latency",
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07003366 .is_time = 1,
Jens Axboe3e260a42013-12-09 12:38:53 -07003367 .category = FIO_OPT_C_IO,
3368 .group = FIO_OPT_G_LATPROF,
3369 },
3370 {
3371 .name = "latency_window",
3372 .lname = "Latency Window (usec)",
3373 .type = FIO_OPT_STR_VAL_TIME,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003374 .off1 = offsetof(struct thread_options, latency_window),
Jens Axboe3e260a42013-12-09 12:38:53 -07003375 .help = "Time to sustain latency_target",
Stephen M. Cameron79dc9142014-11-10 20:31:26 -07003376 .is_time = 1,
Jens Axboe3e260a42013-12-09 12:38:53 -07003377 .category = FIO_OPT_C_IO,
3378 .group = FIO_OPT_G_LATPROF,
3379 },
3380 {
3381 .name = "latency_percentile",
3382 .lname = "Latency Percentile",
3383 .type = FIO_OPT_FLOAT_LIST,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003384 .off1 = offsetof(struct thread_options, latency_percentile),
Jens Axboe3e260a42013-12-09 12:38:53 -07003385 .help = "Percentile of IOs must be below latency_target",
3386 .def = "100",
3387 .maxlen = 1,
3388 .minfp = 0.0,
3389 .maxfp = 100.0,
3390 .category = FIO_OPT_C_IO,
3391 .group = FIO_OPT_G_LATPROF,
Jens Axboe15501532012-10-24 16:37:45 +02003392 },
3393 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003394 .name = "invalidate",
Jens Axboee8b0e952012-03-19 14:37:08 +01003395 .lname = "Cache invalidate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003396 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003397 .off1 = offsetof(struct thread_options, invalidate_cache),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003398 .help = "Invalidate buffer/page cache prior to running job",
3399 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01003400 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003401 .group = FIO_OPT_G_IO_TYPE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003402 },
3403 {
3404 .name = "sync",
Jens Axboee8b0e952012-03-19 14:37:08 +01003405 .lname = "Synchronous I/O",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003406 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003407 .off1 = offsetof(struct thread_options, sync_io),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003408 .help = "Use O_SYNC for buffered writes",
3409 .def = "0",
Jens Axboe67a10002007-07-31 23:12:16 +02003410 .parent = "buffered",
Jens Axboed71c1542012-03-16 20:16:59 +01003411 .hide = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01003412 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003413 .group = FIO_OPT_G_IO_TYPE,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003414 },
3415 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003416 .name = "create_serialize",
Jens Axboee8b0e952012-03-19 14:37:08 +01003417 .lname = "Create serialize",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003418 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003419 .off1 = offsetof(struct thread_options, create_serialize),
3420 .help = "Serialize creation of job files",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003421 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01003422 .category = FIO_OPT_C_FILE,
3423 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003424 },
3425 {
3426 .name = "create_fsync",
Jens Axboee8b0e952012-03-19 14:37:08 +01003427 .lname = "Create fsync",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003428 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003429 .off1 = offsetof(struct thread_options, create_fsync),
Bruce Cran03e20d62011-01-02 20:14:54 +01003430 .help = "fsync file after creation",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003431 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01003432 .category = FIO_OPT_C_FILE,
3433 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003434 },
3435 {
Jens Axboe814452b2009-03-04 12:53:13 +01003436 .name = "create_on_open",
Jens Axboee8b0e952012-03-19 14:37:08 +01003437 .lname = "Create on open",
Jens Axboe814452b2009-03-04 12:53:13 +01003438 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003439 .off1 = offsetof(struct thread_options, create_on_open),
Jens Axboe814452b2009-03-04 12:53:13 +01003440 .help = "Create files when they are opened for IO",
3441 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003442 .category = FIO_OPT_C_FILE,
3443 .group = FIO_OPT_G_INVALID,
Jens Axboe814452b2009-03-04 12:53:13 +01003444 },
Jens Axboe0b9d69e2009-09-11 22:29:54 +02003445 {
Jens Axboe25460cf2012-05-02 13:58:02 +02003446 .name = "create_only",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003447 .lname = "Create Only",
Jens Axboe25460cf2012-05-02 13:58:02 +02003448 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003449 .off1 = offsetof(struct thread_options, create_only),
Jens Axboe25460cf2012-05-02 13:58:02 +02003450 .help = "Only perform file creation phase",
Jens Axboed17fda72012-05-07 09:56:00 +02003451 .category = FIO_OPT_C_FILE,
Jens Axboe25460cf2012-05-02 13:58:02 +02003452 .def = "0",
3453 },
3454 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003455 .name = "allow_file_create",
3456 .lname = "Allow file create",
3457 .type = FIO_OPT_BOOL,
3458 .off1 = offsetof(struct thread_options, allow_create),
3459 .help = "Permit fio to create files, if they don't exist",
3460 .def = "1",
3461 .category = FIO_OPT_C_FILE,
3462 .group = FIO_OPT_G_FILENAME,
3463 },
3464 {
3465 .name = "allow_mounted_write",
3466 .lname = "Allow mounted write",
3467 .type = FIO_OPT_BOOL,
3468 .off1 = offsetof(struct thread_options, allow_mounted_write),
3469 .help = "Allow writes to a mounted partition",
3470 .def = "0",
3471 .category = FIO_OPT_C_FILE,
3472 .group = FIO_OPT_G_FILENAME,
3473 },
3474 {
Zhang, Yanminafad68f2009-05-20 11:30:55 +02003475 .name = "pre_read",
Jens Axboee8b0e952012-03-19 14:37:08 +01003476 .lname = "Pre-read files",
Zhang, Yanminafad68f2009-05-20 11:30:55 +02003477 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003478 .off1 = offsetof(struct thread_options, pre_read),
Bruce Cran03e20d62011-01-02 20:14:54 +01003479 .help = "Pre-read files before starting official testing",
Zhang, Yanminafad68f2009-05-20 11:30:55 +02003480 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003481 .category = FIO_OPT_C_FILE,
3482 .group = FIO_OPT_G_INVALID,
Zhang, Yanminafad68f2009-05-20 11:30:55 +02003483 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01003484#ifdef FIO_HAVE_CPU_AFFINITY
3485 {
3486 .name = "cpumask",
Jens Axboee8b0e952012-03-19 14:37:08 +01003487 .lname = "CPU mask",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003488 .type = FIO_OPT_INT,
3489 .cb = str_cpumask_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003490 .off1 = offsetof(struct thread_options, cpumask),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003491 .help = "CPU affinity mask",
Jens Axboee8b0e952012-03-19 14:37:08 +01003492 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01003493 .group = FIO_OPT_G_CRED,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003494 },
Jens Axboed2e268b2007-06-15 10:33:49 +02003495 {
3496 .name = "cpus_allowed",
Jens Axboee8b0e952012-03-19 14:37:08 +01003497 .lname = "CPUs allowed",
Jens Axboed2e268b2007-06-15 10:33:49 +02003498 .type = FIO_OPT_STR,
3499 .cb = str_cpus_allowed_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003500 .off1 = offsetof(struct thread_options, cpumask),
Jens Axboed2e268b2007-06-15 10:33:49 +02003501 .help = "Set CPUs allowed",
Jens Axboee8b0e952012-03-19 14:37:08 +01003502 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01003503 .group = FIO_OPT_G_CRED,
Jens Axboed2e268b2007-06-15 10:33:49 +02003504 },
Jens Axboec2acfba2014-02-27 15:52:02 -08003505 {
3506 .name = "cpus_allowed_policy",
3507 .lname = "CPUs allowed distribution policy",
3508 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003509 .off1 = offsetof(struct thread_options, cpus_allowed_policy),
Jens Axboec2acfba2014-02-27 15:52:02 -08003510 .help = "Distribution policy for cpus_allowed",
3511 .parent = "cpus_allowed",
3512 .prio = 1,
3513 .posval = {
3514 { .ival = "shared",
3515 .oval = FIO_CPUS_SHARED,
3516 .help = "Mask shared between threads",
3517 },
3518 { .ival = "split",
3519 .oval = FIO_CPUS_SPLIT,
3520 .help = "Mask split between threads",
3521 },
3522 },
3523 .category = FIO_OPT_C_GENERAL,
3524 .group = FIO_OPT_G_CRED,
3525 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003526#else
3527 {
3528 .name = "cpumask",
3529 .lname = "CPU mask",
3530 .type = FIO_OPT_UNSUPPORTED,
3531 .help = "Your platform does not support CPU affinities",
3532 },
3533 {
3534 .name = "cpus_allowed",
3535 .lname = "CPUs allowed",
3536 .type = FIO_OPT_UNSUPPORTED,
3537 .help = "Your platform does not support CPU affinities",
3538 },
3539 {
3540 .name = "cpus_allowed_policy",
3541 .lname = "CPUs allowed distribution policy",
3542 .type = FIO_OPT_UNSUPPORTED,
3543 .help = "Your platform does not support CPU affinities",
3544 },
Jens Axboe214e1ec2007-03-15 10:48:13 +01003545#endif
Jens Axboe67bf9822013-01-10 11:23:19 +01003546#ifdef CONFIG_LIBNUMA
Yufei Rend0b937e2012-10-19 23:11:52 -04003547 {
3548 .name = "numa_cpu_nodes",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003549 .lname = "NUMA CPU Nodes",
Yufei Rend0b937e2012-10-19 23:11:52 -04003550 .type = FIO_OPT_STR,
3551 .cb = str_numa_cpunodes_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003552 .off1 = offsetof(struct thread_options, numa_cpunodes),
Yufei Rend0b937e2012-10-19 23:11:52 -04003553 .help = "NUMA CPU nodes bind",
Jens Axboe6be54b22013-04-10 13:08:02 +02003554 .category = FIO_OPT_C_GENERAL,
3555 .group = FIO_OPT_G_INVALID,
Yufei Rend0b937e2012-10-19 23:11:52 -04003556 },
3557 {
3558 .name = "numa_mem_policy",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003559 .lname = "NUMA Memory Policy",
Yufei Rend0b937e2012-10-19 23:11:52 -04003560 .type = FIO_OPT_STR,
3561 .cb = str_numa_mpol_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003562 .off1 = offsetof(struct thread_options, numa_memnodes),
Yufei Rend0b937e2012-10-19 23:11:52 -04003563 .help = "NUMA memory policy setup",
Jens Axboe6be54b22013-04-10 13:08:02 +02003564 .category = FIO_OPT_C_GENERAL,
3565 .group = FIO_OPT_G_INVALID,
Yufei Rend0b937e2012-10-19 23:11:52 -04003566 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003567#else
3568 {
3569 .name = "numa_cpu_nodes",
3570 .lname = "NUMA CPU Nodes",
3571 .type = FIO_OPT_UNSUPPORTED,
3572 .help = "Build fio with libnuma-dev(el) to enable this option",
3573 },
3574 {
3575 .name = "numa_mem_policy",
3576 .lname = "NUMA Memory Policy",
3577 .type = FIO_OPT_UNSUPPORTED,
3578 .help = "Build fio with libnuma-dev(el) to enable this option",
3579 },
3580#endif
3581#ifdef CONFIG_CUDA
3582 {
3583 .name = "gpu_dev_id",
3584 .lname = "GPU device ID",
3585 .type = FIO_OPT_INT,
3586 .off1 = offsetof(struct thread_options, gpu_dev_id),
3587 .help = "Set GPU device ID for GPUDirect RDMA",
3588 .def = "0",
3589 .category = FIO_OPT_C_GENERAL,
3590 .group = FIO_OPT_G_INVALID,
3591 },
Yufei Rend0b937e2012-10-19 23:11:52 -04003592#endif
Jens Axboe214e1ec2007-03-15 10:48:13 +01003593 {
3594 .name = "end_fsync",
Jens Axboee8b0e952012-03-19 14:37:08 +01003595 .lname = "End fsync",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003596 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003597 .off1 = offsetof(struct thread_options, end_fsync),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003598 .help = "Include fsync at the end of job",
3599 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003600 .category = FIO_OPT_C_FILE,
3601 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003602 },
3603 {
3604 .name = "fsync_on_close",
Jens Axboee8b0e952012-03-19 14:37:08 +01003605 .lname = "Fsync on close",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003606 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003607 .off1 = offsetof(struct thread_options, fsync_on_close),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003608 .help = "fsync files on close",
3609 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003610 .category = FIO_OPT_C_FILE,
3611 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003612 },
3613 {
3614 .name = "unlink",
Jens Axboee8b0e952012-03-19 14:37:08 +01003615 .lname = "Unlink file",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003616 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003617 .off1 = offsetof(struct thread_options, unlink),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003618 .help = "Unlink created files after job has completed",
3619 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003620 .category = FIO_OPT_C_FILE,
3621 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003622 },
3623 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003624 .name = "unlink_each_loop",
3625 .lname = "Unlink file after each loop of a job",
3626 .type = FIO_OPT_BOOL,
3627 .off1 = offsetof(struct thread_options, unlink_each_loop),
3628 .help = "Unlink created files after each loop in a job has completed",
3629 .def = "0",
3630 .category = FIO_OPT_C_FILE,
3631 .group = FIO_OPT_G_INVALID,
3632 },
3633 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003634 .name = "exitall",
Jens Axboee8b0e952012-03-19 14:37:08 +01003635 .lname = "Exit-all on terminate",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003636 .type = FIO_OPT_STR_SET,
3637 .cb = str_exitall_cb,
3638 .help = "Terminate all jobs when one exits",
Jens Axboee8b0e952012-03-19 14:37:08 +01003639 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01003640 .group = FIO_OPT_G_PROCESS,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003641 },
3642 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003643 .name = "exitall_on_error",
3644 .lname = "Exit-all on terminate in error",
3645 .type = FIO_OPT_STR_SET,
3646 .off1 = offsetof(struct thread_options, exitall_error),
3647 .help = "Terminate all jobs when one exits in error",
3648 .category = FIO_OPT_C_GENERAL,
3649 .group = FIO_OPT_G_PROCESS,
3650 },
3651 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003652 .name = "stonewall",
Jens Axboee8b0e952012-03-19 14:37:08 +01003653 .lname = "Wait for previous",
Jens Axboed3923652011-08-03 12:38:39 +02003654 .alias = "wait_for_previous",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003655 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003656 .off1 = offsetof(struct thread_options, stonewall),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003657 .help = "Insert a hard barrier between this job and previous",
Jens Axboee8b0e952012-03-19 14:37:08 +01003658 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01003659 .group = FIO_OPT_G_PROCESS,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003660 },
3661 {
Jens Axboeb3d62a72007-03-20 14:23:26 +01003662 .name = "new_group",
Jens Axboee8b0e952012-03-19 14:37:08 +01003663 .lname = "New group",
Jens Axboeb3d62a72007-03-20 14:23:26 +01003664 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003665 .off1 = offsetof(struct thread_options, new_group),
Jens Axboeb3d62a72007-03-20 14:23:26 +01003666 .help = "Mark the start of a new group (for reporting)",
Jens Axboee8b0e952012-03-19 14:37:08 +01003667 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01003668 .group = FIO_OPT_G_PROCESS,
Jens Axboeb3d62a72007-03-20 14:23:26 +01003669 },
3670 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003671 .name = "thread",
Jens Axboee8b0e952012-03-19 14:37:08 +01003672 .lname = "Thread",
Jens Axboe214e1ec2007-03-15 10:48:13 +01003673 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003674 .off1 = offsetof(struct thread_options, use_thread),
Jens Axboe20eb06b2012-03-16 19:57:23 +01003675 .help = "Use threads instead of processes",
Jens Axboeef7035a2014-06-18 15:30:09 -07003676#ifdef CONFIG_NO_SHM
3677 .def = "1",
3678 .no_warn_def = 1,
3679#endif
Jens Axboee8b0e952012-03-19 14:37:08 +01003680 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01003681 .group = FIO_OPT_G_PROCESS,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003682 },
3683 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003684 .name = "per_job_logs",
3685 .lname = "Per Job Logs",
3686 .type = FIO_OPT_BOOL,
3687 .off1 = offsetof(struct thread_options, per_job_logs),
3688 .help = "Include job number in generated log files or not",
3689 .def = "1",
3690 .category = FIO_OPT_C_LOG,
3691 .group = FIO_OPT_G_INVALID,
3692 },
3693 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003694 .name = "write_bw_log",
Jens Axboee8b0e952012-03-19 14:37:08 +01003695 .lname = "Write bandwidth log",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003696 .type = FIO_OPT_STR,
3697 .off1 = offsetof(struct thread_options, bw_log_file),
3698 .cb = str_write_bw_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003699 .help = "Write log of bandwidth during run",
Jens Axboee8b0e952012-03-19 14:37:08 +01003700 .category = FIO_OPT_C_LOG,
3701 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003702 },
3703 {
3704 .name = "write_lat_log",
Jens Axboee8b0e952012-03-19 14:37:08 +01003705 .lname = "Write latency log",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003706 .type = FIO_OPT_STR,
3707 .off1 = offsetof(struct thread_options, lat_log_file),
3708 .cb = str_write_lat_log_cb,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003709 .help = "Write log of latency during run",
Jens Axboee8b0e952012-03-19 14:37:08 +01003710 .category = FIO_OPT_C_LOG,
3711 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003712 },
3713 {
Jens Axboec8eeb9d2011-10-05 14:02:22 +02003714 .name = "write_iops_log",
Jens Axboee8b0e952012-03-19 14:37:08 +01003715 .lname = "Write IOPS log",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003716 .type = FIO_OPT_STR,
3717 .off1 = offsetof(struct thread_options, iops_log_file),
3718 .cb = str_write_iops_log_cb,
Jens Axboec8eeb9d2011-10-05 14:02:22 +02003719 .help = "Write log of IOPS during run",
Jens Axboee8b0e952012-03-19 14:37:08 +01003720 .category = FIO_OPT_C_LOG,
3721 .group = FIO_OPT_G_INVALID,
Jens Axboec8eeb9d2011-10-05 14:02:22 +02003722 },
3723 {
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01003724 .name = "log_avg_msec",
Jens Axboee8b0e952012-03-19 14:37:08 +01003725 .lname = "Log averaging (msec)",
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01003726 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003727 .off1 = offsetof(struct thread_options, log_avg_msec),
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01003728 .help = "Average bw/iops/lat logs over this period of time",
3729 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01003730 .category = FIO_OPT_C_LOG,
3731 .group = FIO_OPT_G_INVALID,
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01003732 },
3733 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003734 .name = "log_hist_msec",
3735 .lname = "Log histograms (msec)",
3736 .type = FIO_OPT_INT,
3737 .off1 = offsetof(struct thread_options, log_hist_msec),
3738 .help = "Dump completion latency histograms at frequency of this time value",
3739 .def = "0",
3740 .category = FIO_OPT_C_LOG,
3741 .group = FIO_OPT_G_INVALID,
3742 },
3743 {
3744 .name = "log_hist_coarseness",
3745 .lname = "Histogram logs coarseness",
3746 .type = FIO_OPT_INT,
3747 .off1 = offsetof(struct thread_options, log_hist_coarseness),
3748 .help = "Integer in range [0,6]. Higher coarseness outputs"
3749 " fewer histogram bins per sample. The number of bins for"
3750 " these are [1216, 608, 304, 152, 76, 38, 19] respectively.",
3751 .def = "0",
3752 .category = FIO_OPT_C_LOG,
3753 .group = FIO_OPT_G_INVALID,
3754 },
3755 {
3756 .name = "write_hist_log",
3757 .lname = "Write latency histogram logs",
3758 .type = FIO_OPT_STR,
3759 .off1 = offsetof(struct thread_options, hist_log_file),
3760 .cb = str_write_hist_log_cb,
3761 .help = "Write log of latency histograms during run",
3762 .category = FIO_OPT_C_LOG,
3763 .group = FIO_OPT_G_INVALID,
3764 },
3765 {
3766 .name = "log_max_value",
3767 .lname = "Log maximum instead of average",
3768 .type = FIO_OPT_BOOL,
3769 .off1 = offsetof(struct thread_options, log_max),
3770 .help = "Log max sample in a window instead of average",
3771 .def = "0",
3772 .category = FIO_OPT_C_LOG,
3773 .group = FIO_OPT_G_INVALID,
3774 },
3775 {
Jens Axboeccefd5f2014-06-30 20:59:03 -06003776 .name = "log_offset",
3777 .lname = "Log offset of IO",
3778 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003779 .off1 = offsetof(struct thread_options, log_offset),
Jens Axboeccefd5f2014-06-30 20:59:03 -06003780 .help = "Include offset of IO for each log entry",
3781 .def = "0",
3782 .category = FIO_OPT_C_LOG,
3783 .group = FIO_OPT_G_INVALID,
3784 },
Jens Axboe38a812d2014-07-03 09:10:39 -06003785#ifdef CONFIG_ZLIB
3786 {
3787 .name = "log_compression",
3788 .lname = "Log compression",
3789 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003790 .off1 = offsetof(struct thread_options, log_gz),
Jens Axboe38a812d2014-07-03 09:10:39 -06003791 .help = "Log in compressed chunks of this size",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003792 .minval = 1024ULL,
Jens Axboe38a812d2014-07-03 09:10:39 -06003793 .maxval = 512 * 1024 * 1024ULL,
3794 .category = FIO_OPT_C_LOG,
3795 .group = FIO_OPT_G_INVALID,
3796 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003797#ifdef FIO_HAVE_CPU_AFFINITY
3798 {
3799 .name = "log_compression_cpus",
3800 .lname = "Log Compression CPUs",
3801 .type = FIO_OPT_STR,
3802 .cb = str_log_cpus_allowed_cb,
3803 .off1 = offsetof(struct thread_options, log_gz_cpumask),
3804 .parent = "log_compression",
3805 .help = "Limit log compression to these CPUs",
3806 .category = FIO_OPT_C_LOG,
3807 .group = FIO_OPT_G_INVALID,
3808 },
3809#else
3810 {
3811 .name = "log_compression_cpus",
3812 .lname = "Log Compression CPUs",
3813 .type = FIO_OPT_UNSUPPORTED,
3814 .help = "Your platform does not support CPU affinities",
3815 },
3816#endif
Jens Axboebac4af12014-07-03 13:42:28 -06003817 {
3818 .name = "log_store_compressed",
3819 .lname = "Log store compressed",
3820 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003821 .off1 = offsetof(struct thread_options, log_gz_store),
Jens Axboebac4af12014-07-03 13:42:28 -06003822 .help = "Store logs in a compressed format",
3823 .category = FIO_OPT_C_LOG,
3824 .group = FIO_OPT_G_INVALID,
3825 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07003826#else
3827 {
3828 .name = "log_compression",
3829 .lname = "Log compression",
3830 .type = FIO_OPT_UNSUPPORTED,
3831 .help = "Install libz-dev(el) to get compression support",
3832 },
3833 {
3834 .name = "log_store_compressed",
3835 .lname = "Log store compressed",
3836 .type = FIO_OPT_UNSUPPORTED,
3837 .help = "Install libz-dev(el) to get compression support",
3838 },
Jens Axboe38a812d2014-07-03 09:10:39 -06003839#endif
Jens Axboeccefd5f2014-06-30 20:59:03 -06003840 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003841 .name = "log_unix_epoch",
3842 .lname = "Log epoch unix",
3843 .type = FIO_OPT_BOOL,
3844 .off1 = offsetof(struct thread_options, log_unix_epoch),
3845 .help = "Use Unix time in log files",
3846 .category = FIO_OPT_C_LOG,
3847 .group = FIO_OPT_G_INVALID,
3848 },
3849 {
3850 .name = "block_error_percentiles",
3851 .lname = "Block error percentiles",
3852 .type = FIO_OPT_BOOL,
3853 .off1 = offsetof(struct thread_options, block_error_hist),
3854 .help = "Record trim block errors and make a histogram",
3855 .def = "0",
3856 .category = FIO_OPT_C_LOG,
3857 .group = FIO_OPT_G_INVALID,
3858 },
3859 {
Jens Axboec504ee52012-03-20 11:29:09 +01003860 .name = "bwavgtime",
3861 .lname = "Bandwidth average time",
3862 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003863 .off1 = offsetof(struct thread_options, bw_avg_time),
Jens Axboec504ee52012-03-20 11:29:09 +01003864 .help = "Time window over which to calculate bandwidth"
3865 " (msec)",
3866 .def = "500",
3867 .parent = "write_bw_log",
3868 .hide = 1,
3869 .interval = 100,
3870 .category = FIO_OPT_C_LOG,
3871 .group = FIO_OPT_G_INVALID,
3872 },
3873 {
3874 .name = "iopsavgtime",
3875 .lname = "IOPS average time",
3876 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003877 .off1 = offsetof(struct thread_options, iops_avg_time),
Jens Axboec504ee52012-03-20 11:29:09 +01003878 .help = "Time window over which to calculate IOPS (msec)",
3879 .def = "500",
3880 .parent = "write_iops_log",
3881 .hide = 1,
3882 .interval = 100,
3883 .category = FIO_OPT_C_LOG,
3884 .group = FIO_OPT_G_INVALID,
3885 },
3886 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01003887 .name = "group_reporting",
Jens Axboee8b0e952012-03-19 14:37:08 +01003888 .lname = "Group reporting",
Jens Axboed2507042013-05-23 20:24:12 +02003889 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003890 .off1 = offsetof(struct thread_options, group_reporting),
Jens Axboe214e1ec2007-03-15 10:48:13 +01003891 .help = "Do reporting on a per-group basis",
Jens Axboe10860052012-03-19 20:56:53 +01003892 .category = FIO_OPT_C_STAT,
Jens Axboee8b0e952012-03-19 14:37:08 +01003893 .group = FIO_OPT_G_INVALID,
Jens Axboe214e1ec2007-03-15 10:48:13 +01003894 },
3895 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07003896 .name = "stats",
3897 .lname = "Stats",
3898 .type = FIO_OPT_BOOL,
3899 .off1 = offsetof(struct thread_options, stats),
3900 .help = "Enable collection of stats",
3901 .def = "1",
3902 .category = FIO_OPT_C_STAT,
3903 .group = FIO_OPT_G_INVALID,
3904 },
3905 {
Jens Axboee9459e52007-04-17 15:46:32 +02003906 .name = "zero_buffers",
Jens Axboee8b0e952012-03-19 14:37:08 +01003907 .lname = "Zero I/O buffers",
Jens Axboee9459e52007-04-17 15:46:32 +02003908 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003909 .off1 = offsetof(struct thread_options, zero_buffers),
Jens Axboee9459e52007-04-17 15:46:32 +02003910 .help = "Init IO buffers to all zeroes",
Jens Axboee8b0e952012-03-19 14:37:08 +01003911 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003912 .group = FIO_OPT_G_IO_BUF,
Jens Axboee9459e52007-04-17 15:46:32 +02003913 },
Jens Axboe5973caf2008-05-21 19:52:35 +02003914 {
3915 .name = "refill_buffers",
Jens Axboee8b0e952012-03-19 14:37:08 +01003916 .lname = "Refill I/O buffers",
Jens Axboe5973caf2008-05-21 19:52:35 +02003917 .type = FIO_OPT_STR_SET,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003918 .off1 = offsetof(struct thread_options, refill_buffers),
Jens Axboe5973caf2008-05-21 19:52:35 +02003919 .help = "Refill IO buffers on every IO submit",
Jens Axboee8b0e952012-03-19 14:37:08 +01003920 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003921 .group = FIO_OPT_G_IO_BUF,
Jens Axboe5973caf2008-05-21 19:52:35 +02003922 },
Yu-ju Hong83349192011-08-13 00:53:44 +02003923 {
Jens Axboefd684182011-09-19 09:24:44 +02003924 .name = "scramble_buffers",
Jens Axboee8b0e952012-03-19 14:37:08 +01003925 .lname = "Scramble I/O buffers",
Jens Axboefd684182011-09-19 09:24:44 +02003926 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003927 .off1 = offsetof(struct thread_options, scramble_buffers),
Jens Axboefd684182011-09-19 09:24:44 +02003928 .help = "Slightly scramble buffers on every IO submit",
3929 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01003930 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003931 .group = FIO_OPT_G_IO_BUF,
Jens Axboefd684182011-09-19 09:24:44 +02003932 },
3933 {
Jens Axboece35b1e2014-01-14 15:35:58 -07003934 .name = "buffer_pattern",
3935 .lname = "Buffer pattern",
3936 .type = FIO_OPT_STR,
3937 .cb = str_buffer_pattern_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003938 .off1 = offsetof(struct thread_options, buffer_pattern),
Jens Axboece35b1e2014-01-14 15:35:58 -07003939 .help = "Fill pattern for IO buffers",
3940 .category = FIO_OPT_C_IO,
3941 .group = FIO_OPT_G_IO_BUF,
3942 },
3943 {
Jens Axboe9c426842012-03-02 21:02:12 +01003944 .name = "buffer_compress_percentage",
Jens Axboee8b0e952012-03-19 14:37:08 +01003945 .lname = "Buffer compression percentage",
Jens Axboe9c426842012-03-02 21:02:12 +01003946 .type = FIO_OPT_INT,
Jens Axboebedc9dc2014-03-17 12:51:09 -06003947 .cb = str_buffer_compress_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003948 .off1 = offsetof(struct thread_options, compress_percentage),
Jens Axboe9c426842012-03-02 21:02:12 +01003949 .maxval = 100,
Peter Oberparleitere7f5de92014-02-20 14:20:07 +01003950 .minval = 0,
Jens Axboe9c426842012-03-02 21:02:12 +01003951 .help = "How compressible the buffer is (approximately)",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003952 .interval = 5,
Jens Axboee8b0e952012-03-19 14:37:08 +01003953 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003954 .group = FIO_OPT_G_IO_BUF,
Jens Axboe9c426842012-03-02 21:02:12 +01003955 },
3956 {
Jens Axboef97a43a2012-03-09 19:06:24 +01003957 .name = "buffer_compress_chunk",
Jens Axboee8b0e952012-03-19 14:37:08 +01003958 .lname = "Buffer compression chunk size",
Jens Axboef97a43a2012-03-09 19:06:24 +01003959 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003960 .off1 = offsetof(struct thread_options, compress_chunk),
Jens Axboe207b18e2012-03-09 19:11:25 +01003961 .parent = "buffer_compress_percentage",
Jens Axboed71c1542012-03-16 20:16:59 +01003962 .hide = 1,
Jens Axboef97a43a2012-03-09 19:06:24 +01003963 .help = "Size of compressible region in buffer",
Jens Axboe20eb06b2012-03-16 19:57:23 +01003964 .interval = 256,
Jens Axboee8b0e952012-03-19 14:37:08 +01003965 .category = FIO_OPT_C_IO,
Jens Axboe3ceb4582012-03-19 21:27:02 +01003966 .group = FIO_OPT_G_IO_BUF,
Jens Axboef97a43a2012-03-09 19:06:24 +01003967 },
3968 {
Jens Axboee66dac22014-09-22 10:02:07 -06003969 .name = "dedupe_percentage",
3970 .lname = "Dedupe percentage",
3971 .type = FIO_OPT_INT,
3972 .cb = str_dedupe_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003973 .off1 = offsetof(struct thread_options, dedupe_percentage),
Jens Axboee66dac22014-09-22 10:02:07 -06003974 .maxval = 100,
3975 .minval = 0,
3976 .help = "Percentage of buffers that are dedupable",
3977 .interval = 1,
3978 .category = FIO_OPT_C_IO,
3979 .group = FIO_OPT_G_IO_BUF,
3980 },
3981 {
Yu-ju Hong83349192011-08-13 00:53:44 +02003982 .name = "clat_percentiles",
Jens Axboee8b0e952012-03-19 14:37:08 +01003983 .lname = "Completion latency percentiles",
Yu-ju Hong83349192011-08-13 00:53:44 +02003984 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003985 .off1 = offsetof(struct thread_options, clat_percentiles),
Yu-ju Hong83349192011-08-13 00:53:44 +02003986 .help = "Enable the reporting of completion latency percentiles",
Jens Axboe467b35e2011-10-13 08:53:24 +02003987 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01003988 .category = FIO_OPT_C_STAT,
3989 .group = FIO_OPT_G_INVALID,
Yu-ju Hong83349192011-08-13 00:53:44 +02003990 },
3991 {
3992 .name = "percentile_list",
Elliott Hugheseda3a602017-05-19 18:53:02 -07003993 .lname = "Percentile list",
Yu-ju Hong83349192011-08-13 00:53:44 +02003994 .type = FIO_OPT_FLOAT_LIST,
Elliott Hugheseda3a602017-05-19 18:53:02 -07003995 .off1 = offsetof(struct thread_options, percentile_list),
3996 .off2 = offsetof(struct thread_options, percentile_precision),
3997 .help = "Specify a custom list of percentiles to report for "
3998 "completion latency and block errors",
Vincent Kang Fufd112d32013-02-02 09:28:55 +01003999 .def = "1:5:10:20:30:40:50:60:70:80:90:95:99:99.5:99.9:99.95:99.99",
Yu-ju Hong83349192011-08-13 00:53:44 +02004000 .maxlen = FIO_IO_U_LIST_MAX_LEN,
4001 .minfp = 0.0,
4002 .maxfp = 100.0,
Jens Axboee8b0e952012-03-19 14:37:08 +01004003 .category = FIO_OPT_C_STAT,
4004 .group = FIO_OPT_G_INVALID,
Yu-ju Hong83349192011-08-13 00:53:44 +02004005 },
4006
Jens Axboe0a839f32007-04-26 09:02:34 +02004007#ifdef FIO_HAVE_DISK_UTIL
4008 {
4009 .name = "disk_util",
Jens Axboee8b0e952012-03-19 14:37:08 +01004010 .lname = "Disk utilization",
Jens Axboe0a839f32007-04-26 09:02:34 +02004011 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004012 .off1 = offsetof(struct thread_options, do_disk_util),
Jens Axboef66ab3c2008-06-05 11:48:22 +02004013 .help = "Log disk utilization statistics",
Jens Axboe0a839f32007-04-26 09:02:34 +02004014 .def = "1",
Jens Axboee8b0e952012-03-19 14:37:08 +01004015 .category = FIO_OPT_C_STAT,
4016 .group = FIO_OPT_G_INVALID,
Jens Axboe0a839f32007-04-26 09:02:34 +02004017 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07004018#else
4019 {
4020 .name = "disk_util",
4021 .lname = "Disk utilization",
4022 .type = FIO_OPT_UNSUPPORTED,
4023 .help = "Your platform does not support disk utilization",
4024 },
Jens Axboe0a839f32007-04-26 09:02:34 +02004025#endif
Jens Axboee9459e52007-04-17 15:46:32 +02004026 {
Jens Axboe993bf482008-11-14 13:04:53 +01004027 .name = "gtod_reduce",
Jens Axboee8b0e952012-03-19 14:37:08 +01004028 .lname = "Reduce gettimeofday() calls",
Jens Axboe993bf482008-11-14 13:04:53 +01004029 .type = FIO_OPT_BOOL,
4030 .help = "Greatly reduce number of gettimeofday() calls",
4031 .cb = str_gtod_reduce_cb,
4032 .def = "0",
Jens Axboea4ed77f2012-03-20 10:19:44 +01004033 .hide_on_set = 1,
Jens Axboee8b0e952012-03-19 14:37:08 +01004034 .category = FIO_OPT_C_STAT,
4035 .group = FIO_OPT_G_INVALID,
Jens Axboe993bf482008-11-14 13:04:53 +01004036 },
4037 {
Jens Axboe02af0982010-06-24 09:59:34 +02004038 .name = "disable_lat",
Jens Axboee8b0e952012-03-19 14:37:08 +01004039 .lname = "Disable all latency stats",
Jens Axboe02af0982010-06-24 09:59:34 +02004040 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004041 .off1 = offsetof(struct thread_options, disable_lat),
Jens Axboe02af0982010-06-24 09:59:34 +02004042 .help = "Disable latency numbers",
4043 .parent = "gtod_reduce",
Jens Axboed71c1542012-03-16 20:16:59 +01004044 .hide = 1,
Jens Axboe02af0982010-06-24 09:59:34 +02004045 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004046 .category = FIO_OPT_C_STAT,
4047 .group = FIO_OPT_G_INVALID,
Jens Axboe02af0982010-06-24 09:59:34 +02004048 },
4049 {
Jens Axboe9520ebb2008-10-16 21:03:27 +02004050 .name = "disable_clat",
Jens Axboee8b0e952012-03-19 14:37:08 +01004051 .lname = "Disable completion latency stats",
Jens Axboe9520ebb2008-10-16 21:03:27 +02004052 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004053 .off1 = offsetof(struct thread_options, disable_clat),
Jens Axboe9520ebb2008-10-16 21:03:27 +02004054 .help = "Disable completion latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01004055 .parent = "gtod_reduce",
Jens Axboed71c1542012-03-16 20:16:59 +01004056 .hide = 1,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004057 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004058 .category = FIO_OPT_C_STAT,
4059 .group = FIO_OPT_G_INVALID,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004060 },
4061 {
4062 .name = "disable_slat",
Jens Axboee8b0e952012-03-19 14:37:08 +01004063 .lname = "Disable submission latency stats",
Jens Axboe9520ebb2008-10-16 21:03:27 +02004064 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004065 .off1 = offsetof(struct thread_options, disable_slat),
Bruce Cran03e20d62011-01-02 20:14:54 +01004066 .help = "Disable submission latency numbers",
Jens Axboe993bf482008-11-14 13:04:53 +01004067 .parent = "gtod_reduce",
Jens Axboed71c1542012-03-16 20:16:59 +01004068 .hide = 1,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004069 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004070 .category = FIO_OPT_C_STAT,
4071 .group = FIO_OPT_G_INVALID,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004072 },
4073 {
4074 .name = "disable_bw_measurement",
Elliott Hugheseda3a602017-05-19 18:53:02 -07004075 .alias = "disable_bw",
Jens Axboee8b0e952012-03-19 14:37:08 +01004076 .lname = "Disable bandwidth stats",
Jens Axboe9520ebb2008-10-16 21:03:27 +02004077 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004078 .off1 = offsetof(struct thread_options, disable_bw),
Jens Axboe9520ebb2008-10-16 21:03:27 +02004079 .help = "Disable bandwidth logging",
Jens Axboe993bf482008-11-14 13:04:53 +01004080 .parent = "gtod_reduce",
Jens Axboed71c1542012-03-16 20:16:59 +01004081 .hide = 1,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004082 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004083 .category = FIO_OPT_C_STAT,
4084 .group = FIO_OPT_G_INVALID,
Jens Axboe9520ebb2008-10-16 21:03:27 +02004085 },
4086 {
Jens Axboebe4ecfd2008-12-08 14:10:52 +01004087 .name = "gtod_cpu",
Jens Axboee8b0e952012-03-19 14:37:08 +01004088 .lname = "Dedicated gettimeofday() CPU",
Jens Axboebe4ecfd2008-12-08 14:10:52 +01004089 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004090 .off1 = offsetof(struct thread_options, gtod_cpu),
Bruce Cran03e20d62011-01-02 20:14:54 +01004091 .help = "Set up dedicated gettimeofday() thread on this CPU",
Jens Axboe29d43ff2009-07-01 10:42:18 +02004092 .verify = gtod_cpu_verify,
Jens Axboee8b0e952012-03-19 14:37:08 +01004093 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01004094 .group = FIO_OPT_G_CLOCK,
Jens Axboebe4ecfd2008-12-08 14:10:52 +01004095 },
4096 {
Jens Axboe771e58b2013-01-30 12:56:23 +01004097 .name = "unified_rw_reporting",
Elliott Hugheseda3a602017-05-19 18:53:02 -07004098 .lname = "Unified RW Reporting",
Jens Axboe771e58b2013-01-30 12:56:23 +01004099 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004100 .off1 = offsetof(struct thread_options, unified_rw_rep),
Jens Axboe771e58b2013-01-30 12:56:23 +01004101 .help = "Unify reporting across data direction",
4102 .def = "0",
Jens Axboe90b7a962013-02-04 12:51:09 +01004103 .category = FIO_OPT_C_GENERAL,
4104 .group = FIO_OPT_G_INVALID,
Jens Axboe771e58b2013-01-30 12:56:23 +01004105 },
4106 {
Radha Ramachandranf2bba182009-06-15 08:40:16 +02004107 .name = "continue_on_error",
Jens Axboee8b0e952012-03-19 14:37:08 +01004108 .lname = "Continue on error",
Steven Lang06842022011-11-17 09:45:17 +01004109 .type = FIO_OPT_STR,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004110 .off1 = offsetof(struct thread_options, continue_on_error),
Bruce Cran03e20d62011-01-02 20:14:54 +01004111 .help = "Continue on non-fatal errors during IO",
Steven Lang06842022011-11-17 09:45:17 +01004112 .def = "none",
Jens Axboee8b0e952012-03-19 14:37:08 +01004113 .category = FIO_OPT_C_GENERAL,
Jens Axboebc3f5522012-09-27 19:28:11 +02004114 .group = FIO_OPT_G_ERR,
Steven Lang06842022011-11-17 09:45:17 +01004115 .posval = {
4116 { .ival = "none",
4117 .oval = ERROR_TYPE_NONE,
4118 .help = "Exit when an error is encountered",
4119 },
4120 { .ival = "read",
4121 .oval = ERROR_TYPE_READ,
4122 .help = "Continue on read errors only",
4123 },
4124 { .ival = "write",
4125 .oval = ERROR_TYPE_WRITE,
4126 .help = "Continue on write errors only",
4127 },
4128 { .ival = "io",
4129 .oval = ERROR_TYPE_READ | ERROR_TYPE_WRITE,
4130 .help = "Continue on any IO errors",
4131 },
4132 { .ival = "verify",
4133 .oval = ERROR_TYPE_VERIFY,
4134 .help = "Continue on verify errors only",
4135 },
4136 { .ival = "all",
4137 .oval = ERROR_TYPE_ANY,
4138 .help = "Continue on all io and verify errors",
4139 },
4140 { .ival = "0",
4141 .oval = ERROR_TYPE_NONE,
4142 .help = "Alias for 'none'",
4143 },
4144 { .ival = "1",
4145 .oval = ERROR_TYPE_ANY,
4146 .help = "Alias for 'all'",
4147 },
4148 },
Radha Ramachandranf2bba182009-06-15 08:40:16 +02004149 },
4150 {
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004151 .name = "ignore_error",
Elliott Hugheseda3a602017-05-19 18:53:02 -07004152 .lname = "Ignore Error",
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004153 .type = FIO_OPT_STR,
4154 .cb = str_ignore_error_cb,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004155 .off1 = offsetof(struct thread_options, ignore_error_nr),
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004156 .help = "Set a specific list of errors to ignore",
4157 .parent = "rw",
Jens Axboea94eb992012-09-24 18:46:34 +02004158 .category = FIO_OPT_C_GENERAL,
Jens Axboebc3f5522012-09-27 19:28:11 +02004159 .group = FIO_OPT_G_ERR,
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004160 },
4161 {
4162 .name = "error_dump",
Elliott Hugheseda3a602017-05-19 18:53:02 -07004163 .lname = "Error Dump",
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004164 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004165 .off1 = offsetof(struct thread_options, error_dump),
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004166 .def = "0",
4167 .help = "Dump info on each error",
Jens Axboea94eb992012-09-24 18:46:34 +02004168 .category = FIO_OPT_C_GENERAL,
Jens Axboebc3f5522012-09-27 19:28:11 +02004169 .group = FIO_OPT_G_ERR,
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004170 },
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04004171 {
Jens Axboe9ac8a792009-11-13 21:23:07 +01004172 .name = "profile",
Jens Axboee8b0e952012-03-19 14:37:08 +01004173 .lname = "Profile",
Jens Axboe79d16312010-03-04 12:43:20 +01004174 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004175 .off1 = offsetof(struct thread_options, profile),
Jens Axboe9ac8a792009-11-13 21:23:07 +01004176 .help = "Select a specific builtin performance test",
Jens Axboe13fca822012-03-31 13:55:54 +02004177 .category = FIO_OPT_C_PROFILE,
Jens Axboee8b0e952012-03-19 14:37:08 +01004178 .group = FIO_OPT_G_INVALID,
Jens Axboe9ac8a792009-11-13 21:23:07 +01004179 },
4180 {
Jens Axboea696fa22009-12-04 10:05:02 +01004181 .name = "cgroup",
Jens Axboee8b0e952012-03-19 14:37:08 +01004182 .lname = "Cgroup",
Jens Axboea696fa22009-12-04 10:05:02 +01004183 .type = FIO_OPT_STR_STORE,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004184 .off1 = offsetof(struct thread_options, cgroup),
Jens Axboea696fa22009-12-04 10:05:02 +01004185 .help = "Add job to cgroup of this name",
Jens Axboee8b0e952012-03-19 14:37:08 +01004186 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01004187 .group = FIO_OPT_G_CGROUP,
4188 },
4189 {
4190 .name = "cgroup_nodelete",
4191 .lname = "Cgroup no-delete",
4192 .type = FIO_OPT_BOOL,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004193 .off1 = offsetof(struct thread_options, cgroup_nodelete),
Jens Axboea1f6afe2012-03-19 20:44:33 +01004194 .help = "Do not delete cgroups after job completion",
4195 .def = "0",
4196 .parent = "cgroup",
4197 .category = FIO_OPT_C_GENERAL,
4198 .group = FIO_OPT_G_CGROUP,
Jens Axboea696fa22009-12-04 10:05:02 +01004199 },
4200 {
4201 .name = "cgroup_weight",
Jens Axboee8b0e952012-03-19 14:37:08 +01004202 .lname = "Cgroup weight",
Jens Axboea696fa22009-12-04 10:05:02 +01004203 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004204 .off1 = offsetof(struct thread_options, cgroup_weight),
Jens Axboea696fa22009-12-04 10:05:02 +01004205 .help = "Use given weight for cgroup",
4206 .minval = 100,
4207 .maxval = 1000,
Jens Axboea1f6afe2012-03-19 20:44:33 +01004208 .parent = "cgroup",
Jens Axboee8b0e952012-03-19 14:37:08 +01004209 .category = FIO_OPT_C_GENERAL,
Jens Axboea1f6afe2012-03-19 20:44:33 +01004210 .group = FIO_OPT_G_CGROUP,
Vivek Goyal7de87092010-03-31 22:55:15 +02004211 },
4212 {
Jens Axboee0b0d892009-12-08 10:10:14 +01004213 .name = "uid",
Jens Axboee8b0e952012-03-19 14:37:08 +01004214 .lname = "User ID",
Jens Axboee0b0d892009-12-08 10:10:14 +01004215 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004216 .off1 = offsetof(struct thread_options, uid),
Jens Axboee0b0d892009-12-08 10:10:14 +01004217 .help = "Run job with this user ID",
Jens Axboee8b0e952012-03-19 14:37:08 +01004218 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01004219 .group = FIO_OPT_G_CRED,
Jens Axboee0b0d892009-12-08 10:10:14 +01004220 },
4221 {
4222 .name = "gid",
Jens Axboee8b0e952012-03-19 14:37:08 +01004223 .lname = "Group ID",
Jens Axboee0b0d892009-12-08 10:10:14 +01004224 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004225 .off1 = offsetof(struct thread_options, gid),
Jens Axboee0b0d892009-12-08 10:10:14 +01004226 .help = "Run job with this group ID",
Jens Axboee8b0e952012-03-19 14:37:08 +01004227 .category = FIO_OPT_C_GENERAL,
Jens Axboe10860052012-03-19 20:56:53 +01004228 .group = FIO_OPT_G_CRED,
Jens Axboee0b0d892009-12-08 10:10:14 +01004229 },
4230 {
Jens Axboea1f6afe2012-03-19 20:44:33 +01004231 .name = "kb_base",
4232 .lname = "KB Base",
4233 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004234 .off1 = offsetof(struct thread_options, kb_base),
Jens Axboea1f6afe2012-03-19 20:44:33 +01004235 .prio = 1,
4236 .def = "1024",
Jens Axboeba9c7212013-04-10 11:12:21 +02004237 .posval = {
4238 { .ival = "1024",
4239 .oval = 1024,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004240 .help = "Inputs invert IEC and SI prefixes (for compatibility); outputs prefer binary",
Jens Axboeba9c7212013-04-10 11:12:21 +02004241 },
4242 { .ival = "1000",
4243 .oval = 1000,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004244 .help = "Inputs use IEC and SI prefixes; outputs prefer SI",
Jens Axboeba9c7212013-04-10 11:12:21 +02004245 },
4246 },
Elliott Hugheseda3a602017-05-19 18:53:02 -07004247 .help = "Unit prefix interpretation for quantities of data (IEC and SI)",
Jens Axboea1f6afe2012-03-19 20:44:33 +01004248 .category = FIO_OPT_C_GENERAL,
4249 .group = FIO_OPT_G_INVALID,
4250 },
4251 {
Jens Axboecf3a0512013-04-09 20:38:32 +02004252 .name = "unit_base",
Elliott Hugheseda3a602017-05-19 18:53:02 -07004253 .lname = "Unit for quantities of data (Bits or Bytes)",
Jens Axboecf3a0512013-04-09 20:38:32 +02004254 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004255 .off1 = offsetof(struct thread_options, unit_base),
Jens Axboecf3a0512013-04-09 20:38:32 +02004256 .prio = 1,
Jens Axboe71a08252013-04-09 20:49:45 +02004257 .posval = {
4258 { .ival = "0",
4259 .oval = 0,
4260 .help = "Auto-detect",
4261 },
4262 { .ival = "8",
4263 .oval = 8,
4264 .help = "Normal (byte based)",
4265 },
4266 { .ival = "1",
4267 .oval = 1,
4268 .help = "Bit based",
4269 },
4270 },
Jens Axboecf3a0512013-04-09 20:38:32 +02004271 .help = "Bit multiple of result summary data (8 for byte, 1 for bit)",
4272 .category = FIO_OPT_C_GENERAL,
4273 .group = FIO_OPT_G_INVALID,
4274 },
4275 {
Jens Axboe3ceb4582012-03-19 21:27:02 +01004276 .name = "hugepage-size",
4277 .lname = "Hugepage size",
4278 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004279 .off1 = offsetof(struct thread_options, hugepage_size),
Jens Axboe3ceb4582012-03-19 21:27:02 +01004280 .help = "When using hugepages, specify size of each page",
4281 .def = __fio_stringify(FIO_HUGE_PAGE),
4282 .interval = 1024 * 1024,
4283 .category = FIO_OPT_C_GENERAL,
4284 .group = FIO_OPT_G_INVALID,
4285 },
4286 {
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004287 .name = "flow_id",
Jens Axboee8b0e952012-03-19 14:37:08 +01004288 .lname = "I/O flow ID",
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004289 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004290 .off1 = offsetof(struct thread_options, flow_id),
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004291 .help = "The flow index ID to use",
4292 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004293 .category = FIO_OPT_C_IO,
4294 .group = FIO_OPT_G_IO_FLOW,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004295 },
4296 {
4297 .name = "flow",
Jens Axboee8b0e952012-03-19 14:37:08 +01004298 .lname = "I/O flow weight",
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004299 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004300 .off1 = offsetof(struct thread_options, flow),
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004301 .help = "Weight for flow control of this job",
4302 .parent = "flow_id",
Jens Axboed71c1542012-03-16 20:16:59 +01004303 .hide = 1,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004304 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004305 .category = FIO_OPT_C_IO,
4306 .group = FIO_OPT_G_IO_FLOW,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004307 },
4308 {
4309 .name = "flow_watermark",
Jens Axboee8b0e952012-03-19 14:37:08 +01004310 .lname = "I/O flow watermark",
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004311 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004312 .off1 = offsetof(struct thread_options, flow_watermark),
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004313 .help = "High watermark for flow control. This option"
4314 " should be set to the same value for all threads"
4315 " with non-zero flow.",
4316 .parent = "flow_id",
Jens Axboed71c1542012-03-16 20:16:59 +01004317 .hide = 1,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004318 .def = "1024",
Jens Axboee8b0e952012-03-19 14:37:08 +01004319 .category = FIO_OPT_C_IO,
4320 .group = FIO_OPT_G_IO_FLOW,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004321 },
4322 {
4323 .name = "flow_sleep",
Jens Axboee8b0e952012-03-19 14:37:08 +01004324 .lname = "I/O flow sleep",
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004325 .type = FIO_OPT_INT,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004326 .off1 = offsetof(struct thread_options, flow_sleep),
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004327 .help = "How many microseconds to sleep after being held"
4328 " back by the flow control mechanism",
4329 .parent = "flow_id",
Jens Axboed71c1542012-03-16 20:16:59 +01004330 .hide = 1,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004331 .def = "0",
Jens Axboee8b0e952012-03-19 14:37:08 +01004332 .category = FIO_OPT_C_IO,
4333 .group = FIO_OPT_G_IO_FLOW,
Dan Ehrenberg9e684a42012-02-20 11:05:14 +01004334 },
4335 {
Elliott Hugheseda3a602017-05-19 18:53:02 -07004336 .name = "skip_bad",
4337 .lname = "Skip operations against bad blocks",
4338 .type = FIO_OPT_BOOL,
4339 .off1 = offsetof(struct thread_options, skip_bad),
4340 .help = "Skip operations against known bad blocks.",
4341 .hide = 1,
4342 .def = "0",
4343 .category = FIO_OPT_C_IO,
4344 .group = FIO_OPT_G_MTD,
4345 },
4346 {
4347 .name = "steadystate",
4348 .lname = "Steady state threshold",
4349 .alias = "ss",
4350 .type = FIO_OPT_STR,
4351 .off1 = offsetof(struct thread_options, ss_state),
4352 .cb = str_steadystate_cb,
4353 .help = "Define the criterion and limit to judge when a job has reached steady state",
4354 .def = "iops_slope:0.01%",
4355 .posval = {
4356 { .ival = "iops",
4357 .oval = FIO_SS_IOPS,
4358 .help = "maximum mean deviation of IOPS measurements",
4359 },
4360 { .ival = "iops_slope",
4361 .oval = FIO_SS_IOPS_SLOPE,
4362 .help = "slope calculated from IOPS measurements",
4363 },
4364 { .ival = "bw",
4365 .oval = FIO_SS_BW,
4366 .help = "maximum mean deviation of bandwidth measurements",
4367 },
4368 {
4369 .ival = "bw_slope",
4370 .oval = FIO_SS_BW_SLOPE,
4371 .help = "slope calculated from bandwidth measurements",
4372 },
4373 },
4374 .category = FIO_OPT_C_GENERAL,
4375 .group = FIO_OPT_G_RUNTIME,
4376 },
4377 {
4378 .name = "steadystate_duration",
4379 .lname = "Steady state duration",
4380 .alias = "ss_dur",
4381 .parent = "steadystate",
4382 .type = FIO_OPT_STR_VAL_TIME,
4383 .off1 = offsetof(struct thread_options, ss_dur),
4384 .help = "Stop workload upon attaining steady state for specified duration",
4385 .def = "0",
4386 .is_seconds = 1,
4387 .is_time = 1,
4388 .category = FIO_OPT_C_GENERAL,
4389 .group = FIO_OPT_G_RUNTIME,
4390 },
4391 {
4392 .name = "steadystate_ramp_time",
4393 .lname = "Steady state ramp time",
4394 .alias = "ss_ramp",
4395 .parent = "steadystate",
4396 .type = FIO_OPT_STR_VAL_TIME,
4397 .off1 = offsetof(struct thread_options, ss_ramp_time),
4398 .help = "Delay before initiation of data collection for steady state job termination testing",
4399 .def = "0",
4400 .is_seconds = 1,
4401 .is_time = 1,
4402 .category = FIO_OPT_C_GENERAL,
4403 .group = FIO_OPT_G_RUNTIME,
4404 },
4405 {
Jens Axboe214e1ec2007-03-15 10:48:13 +01004406 .name = NULL,
4407 },
4408};
4409
Jens Axboe17af15d2010-04-13 10:38:16 +02004410static void add_to_lopt(struct option *lopt, struct fio_option *o,
Steven Langde890a12011-11-09 14:03:34 +01004411 const char *name, int val)
Jens Axboe9f817362010-03-04 14:38:10 +01004412{
Jens Axboe17af15d2010-04-13 10:38:16 +02004413 lopt->name = (char *) name;
Steven Langde890a12011-11-09 14:03:34 +01004414 lopt->val = val;
Jens Axboe9f817362010-03-04 14:38:10 +01004415 if (o->type == FIO_OPT_STR_SET)
Jens Axboeff52be32013-11-26 20:19:59 -07004416 lopt->has_arg = optional_argument;
Jens Axboe9f817362010-03-04 14:38:10 +01004417 else
4418 lopt->has_arg = required_argument;
4419}
4420
Steven Langde890a12011-11-09 14:03:34 +01004421static void options_to_lopts(struct fio_option *opts,
4422 struct option *long_options,
4423 int i, int option_type)
4424{
4425 struct fio_option *o = &opts[0];
4426 while (o->name) {
4427 add_to_lopt(&long_options[i], o, o->name, option_type);
4428 if (o->alias) {
4429 i++;
4430 add_to_lopt(&long_options[i], o, o->alias, option_type);
4431 }
4432
4433 i++;
4434 o++;
4435 assert(i < FIO_NR_OPTIONS);
4436 }
4437}
4438
4439void fio_options_set_ioengine_opts(struct option *long_options,
4440 struct thread_data *td)
4441{
4442 unsigned int i;
4443
4444 i = 0;
4445 while (long_options[i].name) {
4446 if (long_options[i].val == FIO_GETOPT_IOENGINE) {
4447 memset(&long_options[i], 0, sizeof(*long_options));
4448 break;
4449 }
4450 i++;
4451 }
4452
4453 /*
4454 * Just clear out the prior ioengine options.
4455 */
4456 if (!td || !td->eo)
4457 return;
4458
4459 options_to_lopts(td->io_ops->options, long_options, i,
4460 FIO_GETOPT_IOENGINE);
4461}
4462
Jens Axboe214e1ec2007-03-15 10:48:13 +01004463void fio_options_dup_and_init(struct option *long_options)
4464{
Jens Axboe214e1ec2007-03-15 10:48:13 +01004465 unsigned int i;
4466
Jens Axboe9af4a242012-03-16 10:13:49 +01004467 options_init(fio_options);
Jens Axboe214e1ec2007-03-15 10:48:13 +01004468
4469 i = 0;
4470 while (long_options[i].name)
4471 i++;
4472
Jens Axboe9af4a242012-03-16 10:13:49 +01004473 options_to_lopts(fio_options, long_options, i, FIO_GETOPT_JOB);
Jens Axboe214e1ec2007-03-15 10:48:13 +01004474}
4475
Jens Axboe74929ac2009-08-05 11:42:37 +02004476struct fio_keyword {
4477 const char *word;
4478 const char *desc;
4479 char *replace;
4480};
4481
4482static struct fio_keyword fio_keywords[] = {
4483 {
4484 .word = "$pagesize",
4485 .desc = "Page size in the system",
4486 },
4487 {
4488 .word = "$mb_memory",
4489 .desc = "Megabytes of memory online",
4490 },
4491 {
4492 .word = "$ncpus",
4493 .desc = "Number of CPUs online in the system",
4494 },
4495 {
4496 .word = NULL,
4497 },
4498};
4499
Elliott Hugheseda3a602017-05-19 18:53:02 -07004500void fio_keywords_exit(void)
4501{
4502 struct fio_keyword *kw;
4503
4504 kw = &fio_keywords[0];
4505 while (kw->word) {
4506 free(kw->replace);
4507 kw->replace = NULL;
4508 kw++;
4509 }
4510}
4511
Jens Axboe74929ac2009-08-05 11:42:37 +02004512void fio_keywords_init(void)
4513{
Jens Axboe3b2e1462009-12-15 08:58:10 +01004514 unsigned long long mb_memory;
Jens Axboe74929ac2009-08-05 11:42:37 +02004515 char buf[128];
4516 long l;
4517
Jens Axboea4cfc472012-10-09 10:30:48 -06004518 sprintf(buf, "%lu", (unsigned long) page_size);
Jens Axboe74929ac2009-08-05 11:42:37 +02004519 fio_keywords[0].replace = strdup(buf);
4520
Jens Axboe8eb016d2011-07-11 10:24:20 +02004521 mb_memory = os_phys_mem() / (1024 * 1024);
Jens Axboe3b2e1462009-12-15 08:58:10 +01004522 sprintf(buf, "%llu", mb_memory);
Jens Axboe74929ac2009-08-05 11:42:37 +02004523 fio_keywords[1].replace = strdup(buf);
4524
Jens Axboec00a2282011-07-08 20:56:06 +02004525 l = cpus_online();
Jens Axboe74929ac2009-08-05 11:42:37 +02004526 sprintf(buf, "%lu", l);
4527 fio_keywords[2].replace = strdup(buf);
4528}
4529
Jens Axboe892a6ff2009-11-13 12:19:49 +01004530#define BC_APP "bc"
4531
4532static char *bc_calc(char *str)
4533{
Steven Langd0c814e2011-10-28 08:37:13 +02004534 char buf[128], *tmp;
Jens Axboe892a6ff2009-11-13 12:19:49 +01004535 FILE *f;
4536 int ret;
4537
4538 /*
4539 * No math, just return string
4540 */
Steven Langd0c814e2011-10-28 08:37:13 +02004541 if ((!strchr(str, '+') && !strchr(str, '-') && !strchr(str, '*') &&
4542 !strchr(str, '/')) || strchr(str, '\''))
Jens Axboe892a6ff2009-11-13 12:19:49 +01004543 return str;
4544
4545 /*
4546 * Split option from value, we only need to calculate the value
4547 */
4548 tmp = strchr(str, '=');
4549 if (!tmp)
4550 return str;
4551
4552 tmp++;
Jens Axboe892a6ff2009-11-13 12:19:49 +01004553
Steven Langd0c814e2011-10-28 08:37:13 +02004554 /*
4555 * Prevent buffer overflows; such a case isn't reasonable anyway
4556 */
4557 if (strlen(str) >= 128 || strlen(tmp) > 100)
4558 return str;
Jens Axboe892a6ff2009-11-13 12:19:49 +01004559
4560 sprintf(buf, "which %s > /dev/null", BC_APP);
4561 if (system(buf)) {
4562 log_err("fio: bc is needed for performing math\n");
Jens Axboe892a6ff2009-11-13 12:19:49 +01004563 return NULL;
4564 }
4565
Steven Langd0c814e2011-10-28 08:37:13 +02004566 sprintf(buf, "echo '%s' | %s", tmp, BC_APP);
Jens Axboe892a6ff2009-11-13 12:19:49 +01004567 f = popen(buf, "r");
Jens Axboe3c3ed072012-03-27 09:12:39 +02004568 if (!f)
Jens Axboe892a6ff2009-11-13 12:19:49 +01004569 return NULL;
Jens Axboe892a6ff2009-11-13 12:19:49 +01004570
Steven Langd0c814e2011-10-28 08:37:13 +02004571 ret = fread(&buf[tmp - str], 1, 128 - (tmp - str), f);
Jens Axboe1d824f32014-04-11 11:27:34 -06004572 if (ret <= 0) {
4573 pclose(f);
Jens Axboe892a6ff2009-11-13 12:19:49 +01004574 return NULL;
Jens Axboe1d824f32014-04-11 11:27:34 -06004575 }
Jens Axboe892a6ff2009-11-13 12:19:49 +01004576
Jens Axboe892a6ff2009-11-13 12:19:49 +01004577 pclose(f);
Steven Langd0c814e2011-10-28 08:37:13 +02004578 buf[(tmp - str) + ret - 1] = '\0';
4579 memcpy(buf, str, tmp - str);
Jens Axboe892a6ff2009-11-13 12:19:49 +01004580 free(str);
Steven Langd0c814e2011-10-28 08:37:13 +02004581 return strdup(buf);
4582}
4583
4584/*
4585 * Return a copy of the input string with substrings of the form ${VARNAME}
4586 * substituted with the value of the environment variable VARNAME. The
4587 * substitution always occurs, even if VARNAME is empty or the corresponding
4588 * environment variable undefined.
4589 */
4590static char *option_dup_subs(const char *opt)
4591{
4592 char out[OPT_LEN_MAX+1];
4593 char in[OPT_LEN_MAX+1];
4594 char *outptr = out;
4595 char *inptr = in;
4596 char *ch1, *ch2, *env;
4597 ssize_t nchr = OPT_LEN_MAX;
4598 size_t envlen;
4599
4600 if (strlen(opt) + 1 > OPT_LEN_MAX) {
4601 log_err("OPT_LEN_MAX (%d) is too small\n", OPT_LEN_MAX);
4602 return NULL;
4603 }
4604
4605 in[OPT_LEN_MAX] = '\0';
4606 strncpy(in, opt, OPT_LEN_MAX);
4607
4608 while (*inptr && nchr > 0) {
4609 if (inptr[0] == '$' && inptr[1] == '{') {
4610 ch2 = strchr(inptr, '}');
4611 if (ch2 && inptr+1 < ch2) {
4612 ch1 = inptr+2;
4613 inptr = ch2+1;
4614 *ch2 = '\0';
4615
4616 env = getenv(ch1);
4617 if (env) {
4618 envlen = strlen(env);
4619 if (envlen <= nchr) {
4620 memcpy(outptr, env, envlen);
4621 outptr += envlen;
4622 nchr -= envlen;
4623 }
4624 }
4625
4626 continue;
4627 }
4628 }
4629
4630 *outptr++ = *inptr++;
4631 --nchr;
4632 }
4633
4634 *outptr = '\0';
4635 return strdup(out);
Jens Axboe892a6ff2009-11-13 12:19:49 +01004636}
4637
Jens Axboe74929ac2009-08-05 11:42:37 +02004638/*
4639 * Look for reserved variable names and replace them with real values
4640 */
4641static char *fio_keyword_replace(char *opt)
4642{
4643 char *s;
4644 int i;
Steven Langd0c814e2011-10-28 08:37:13 +02004645 int docalc = 0;
Jens Axboe74929ac2009-08-05 11:42:37 +02004646
4647 for (i = 0; fio_keywords[i].word != NULL; i++) {
4648 struct fio_keyword *kw = &fio_keywords[i];
4649
4650 while ((s = strstr(opt, kw->word)) != NULL) {
4651 char *new = malloc(strlen(opt) + 1);
4652 char *o_org = opt;
4653 int olen = s - opt;
4654 int len;
4655
4656 /*
4657 * Copy part of the string before the keyword and
4658 * sprintf() the replacement after it.
4659 */
4660 memcpy(new, opt, olen);
4661 len = sprintf(new + olen, "%s", kw->replace);
4662
4663 /*
4664 * If there's more in the original string, copy that
4665 * in too
4666 */
4667 opt += strlen(kw->word) + olen;
4668 if (strlen(opt))
4669 memcpy(new + olen + len, opt, opt - o_org - 1);
4670
4671 /*
4672 * replace opt and free the old opt
4673 */
4674 opt = new;
Steven Langd0c814e2011-10-28 08:37:13 +02004675 free(o_org);
Jens Axboe7a958bd2009-11-13 12:33:54 +01004676
Steven Langd0c814e2011-10-28 08:37:13 +02004677 docalc = 1;
Jens Axboe74929ac2009-08-05 11:42:37 +02004678 }
4679 }
4680
Steven Langd0c814e2011-10-28 08:37:13 +02004681 /*
4682 * Check for potential math and invoke bc, if possible
4683 */
4684 if (docalc)
4685 opt = bc_calc(opt);
4686
Jens Axboe7a958bd2009-11-13 12:33:54 +01004687 return opt;
Jens Axboe74929ac2009-08-05 11:42:37 +02004688}
4689
Steven Langd0c814e2011-10-28 08:37:13 +02004690static char **dup_and_sub_options(char **opts, int num_opts)
4691{
4692 int i;
4693 char **opts_copy = malloc(num_opts * sizeof(*opts));
4694 for (i = 0; i < num_opts; i++) {
4695 opts_copy[i] = option_dup_subs(opts[i]);
4696 if (!opts_copy[i])
4697 continue;
4698 opts_copy[i] = fio_keyword_replace(opts_copy[i]);
4699 }
4700 return opts_copy;
4701}
4702
Jens Axboe5b284222014-12-06 09:53:46 -07004703static void show_closest_option(const char *opt)
Jens Axboecf88f2a2014-12-06 09:17:52 -07004704{
4705 int best_option, best_distance;
4706 int i, distance;
Jens Axboe5b284222014-12-06 09:53:46 -07004707 char *name;
4708
4709 if (!strlen(opt))
4710 return;
4711
4712 name = strdup(opt);
4713 i = 0;
4714 while (name[i] != '\0' && name[i] != '=')
4715 i++;
4716 name[i] = '\0';
Jens Axboecf88f2a2014-12-06 09:17:52 -07004717
4718 best_option = -1;
4719 best_distance = INT_MAX;
4720 i = 0;
4721 while (fio_options[i].name) {
4722 distance = string_distance(name, fio_options[i].name);
4723 if (distance < best_distance) {
4724 best_distance = distance;
4725 best_option = i;
4726 }
4727 i++;
4728 }
4729
Elliott Hugheseda3a602017-05-19 18:53:02 -07004730 if (best_option != -1 && string_distance_ok(name, best_distance) &&
4731 fio_options[best_option].type != FIO_OPT_UNSUPPORTED)
Jens Axboecf88f2a2014-12-06 09:17:52 -07004732 log_err("Did you mean %s?\n", fio_options[best_option].name);
Jens Axboe5b284222014-12-06 09:53:46 -07004733
4734 free(name);
Jens Axboecf88f2a2014-12-06 09:17:52 -07004735}
4736
Elliott Hugheseda3a602017-05-19 18:53:02 -07004737int fio_options_parse(struct thread_data *td, char **opts, int num_opts)
Jens Axboe214e1ec2007-03-15 10:48:13 +01004738{
Steven Langde890a12011-11-09 14:03:34 +01004739 int i, ret, unknown;
Steven Langd0c814e2011-10-28 08:37:13 +02004740 char **opts_copy;
Jens Axboe3b8b7132008-06-10 19:46:23 +02004741
Jens Axboe9af4a242012-03-16 10:13:49 +01004742 sort_options(opts, fio_options, num_opts);
Steven Langd0c814e2011-10-28 08:37:13 +02004743 opts_copy = dup_and_sub_options(opts, num_opts);
Jens Axboe3b8b7132008-06-10 19:46:23 +02004744
Steven Langde890a12011-11-09 14:03:34 +01004745 for (ret = 0, i = 0, unknown = 0; i < num_opts; i++) {
4746 struct fio_option *o;
Jens Axboe9af4a242012-03-16 10:13:49 +01004747 int newret = parse_option(opts_copy[i], opts[i], fio_options,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004748 &o, &td->o, &td->opt_list);
Steven Langd0c814e2011-10-28 08:37:13 +02004749
Jens Axboe9c62acd2014-12-09 12:58:15 -07004750 if (!newret && o)
4751 fio_option_mark_set(&td->o, o);
4752
Steven Langde890a12011-11-09 14:03:34 +01004753 if (opts_copy[i]) {
4754 if (newret && !o) {
4755 unknown++;
4756 continue;
4757 }
Steven Langd0c814e2011-10-28 08:37:13 +02004758 free(opts_copy[i]);
Steven Langde890a12011-11-09 14:03:34 +01004759 opts_copy[i] = NULL;
4760 }
4761
4762 ret |= newret;
4763 }
4764
4765 if (unknown) {
4766 ret |= ioengine_load(td);
4767 if (td->eo) {
4768 sort_options(opts_copy, td->io_ops->options, num_opts);
4769 opts = opts_copy;
4770 }
4771 for (i = 0; i < num_opts; i++) {
4772 struct fio_option *o = NULL;
4773 int newret = 1;
Jens Axboecf88f2a2014-12-06 09:17:52 -07004774
Steven Langde890a12011-11-09 14:03:34 +01004775 if (!opts_copy[i])
4776 continue;
4777
4778 if (td->eo)
4779 newret = parse_option(opts_copy[i], opts[i],
4780 td->io_ops->options, &o,
Elliott Hugheseda3a602017-05-19 18:53:02 -07004781 td->eo, &td->opt_list);
Steven Langde890a12011-11-09 14:03:34 +01004782
4783 ret |= newret;
Jens Axboecf88f2a2014-12-06 09:17:52 -07004784 if (!o) {
Steven Langde890a12011-11-09 14:03:34 +01004785 log_err("Bad option <%s>\n", opts[i]);
Jens Axboecf88f2a2014-12-06 09:17:52 -07004786 show_closest_option(opts[i]);
4787 }
Steven Langde890a12011-11-09 14:03:34 +01004788 free(opts_copy[i]);
4789 opts_copy[i] = NULL;
4790 }
Jens Axboe74929ac2009-08-05 11:42:37 +02004791 }
Jens Axboe3b8b7132008-06-10 19:46:23 +02004792
Steven Langd0c814e2011-10-28 08:37:13 +02004793 free(opts_copy);
Jens Axboe3b8b7132008-06-10 19:46:23 +02004794 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01004795}
4796
4797int fio_cmd_option_parse(struct thread_data *td, const char *opt, char *val)
4798{
Jens Axboe9c62acd2014-12-09 12:58:15 -07004799 int ret;
4800
Elliott Hugheseda3a602017-05-19 18:53:02 -07004801 ret = parse_cmd_option(opt, val, fio_options, &td->o, &td->opt_list);
Jens Axboe9c62acd2014-12-09 12:58:15 -07004802 if (!ret) {
4803 struct fio_option *o;
4804
4805 o = find_option(fio_options, opt);
4806 if (o)
4807 fio_option_mark_set(&td->o, o);
4808 }
4809
4810 return ret;
Jens Axboe214e1ec2007-03-15 10:48:13 +01004811}
4812
Steven Langde890a12011-11-09 14:03:34 +01004813int fio_cmd_ioengine_option_parse(struct thread_data *td, const char *opt,
4814 char *val)
4815{
Elliott Hugheseda3a602017-05-19 18:53:02 -07004816 return parse_cmd_option(opt, val, td->io_ops->options, td->eo,
4817 &td->opt_list);
Steven Langde890a12011-11-09 14:03:34 +01004818}
4819
Jens Axboe214e1ec2007-03-15 10:48:13 +01004820void fio_fill_default_options(struct thread_data *td)
4821{
Jens Axboecb1402d2014-02-25 11:35:27 -08004822 td->o.magic = OPT_MAGIC;
Elliott Hugheseda3a602017-05-19 18:53:02 -07004823 fill_default_options(&td->o, fio_options);
Jens Axboe214e1ec2007-03-15 10:48:13 +01004824}
4825
4826int fio_show_option_help(const char *opt)
4827{
Jens Axboe9af4a242012-03-16 10:13:49 +01004828 return show_cmd_help(fio_options, opt);
Jens Axboe214e1ec2007-03-15 10:48:13 +01004829}
Jens Axboed23bb322007-03-23 15:57:56 +01004830
Jens Axboe7e356b22011-10-14 10:55:16 +02004831/*
4832 * dupe FIO_OPT_STR_STORE options
4833 */
Steven Langde890a12011-11-09 14:03:34 +01004834void fio_options_mem_dupe(struct thread_data *td)
Jens Axboed23bb322007-03-23 15:57:56 +01004835{
Elliott Hugheseda3a602017-05-19 18:53:02 -07004836 options_mem_dupe(fio_options, &td->o);
Jens Axboe1647f592011-11-09 20:25:21 +01004837
4838 if (td->eo && td->io_ops) {
Steven Langde890a12011-11-09 14:03:34 +01004839 void *oldeo = td->eo;
Jens Axboe1647f592011-11-09 20:25:21 +01004840
Steven Langde890a12011-11-09 14:03:34 +01004841 td->eo = malloc(td->io_ops->option_struct_size);
4842 memcpy(td->eo, oldeo, td->io_ops->option_struct_size);
Elliott Hugheseda3a602017-05-19 18:53:02 -07004843 options_mem_dupe(td->io_ops->options, td->eo);
Jens Axboed23bb322007-03-23 15:57:56 +01004844 }
4845}
4846
Jens Axboed6978a32009-07-18 21:04:09 +02004847unsigned int fio_get_kb_base(void *data)
4848{
Elliott Hugheseda3a602017-05-19 18:53:02 -07004849 struct thread_data *td = cb_data_to_td(data);
4850 struct thread_options *o = &td->o;
Jens Axboed6978a32009-07-18 21:04:09 +02004851 unsigned int kb_base = 0;
4852
Jens Axboecb1402d2014-02-25 11:35:27 -08004853 /*
4854 * This is a hack... For private options, *data is not holding
4855 * a pointer to the thread_options, but to private data. This means
4856 * we can't safely dereference it, but magic is first so mem wise
4857 * it is valid. But this also means that if the job first sets
4858 * kb_base and expects that to be honored by private options,
4859 * it will be disappointed. We will return the global default
4860 * for this.
4861 */
4862 if (o && o->magic == OPT_MAGIC)
Jens Axboe83ea4222012-03-28 14:01:46 +02004863 kb_base = o->kb_base;
Jens Axboed6978a32009-07-18 21:04:09 +02004864 if (!kb_base)
4865 kb_base = 1024;
4866
4867 return kb_base;
4868}
Jens Axboe9f988e22010-03-04 10:42:38 +01004869
Jens Axboe07b32322010-03-05 09:48:44 +01004870int add_option(struct fio_option *o)
Jens Axboe9f988e22010-03-04 10:42:38 +01004871{
Jens Axboe07b32322010-03-05 09:48:44 +01004872 struct fio_option *__o;
4873 int opt_index = 0;
4874
Jens Axboe9af4a242012-03-16 10:13:49 +01004875 __o = fio_options;
Jens Axboe07b32322010-03-05 09:48:44 +01004876 while (__o->name) {
4877 opt_index++;
4878 __o++;
4879 }
4880
Jens Axboe7b504ed2014-02-11 14:19:38 -07004881 if (opt_index + 1 == FIO_MAX_OPTS) {
4882 log_err("fio: FIO_MAX_OPTS is too small\n");
4883 return 1;
4884 }
4885
Jens Axboe9af4a242012-03-16 10:13:49 +01004886 memcpy(&fio_options[opt_index], o, sizeof(*o));
Jens Axboe7b504ed2014-02-11 14:19:38 -07004887 fio_options[opt_index + 1].name = NULL;
Jens Axboe07b32322010-03-05 09:48:44 +01004888 return 0;
Jens Axboe9f988e22010-03-04 10:42:38 +01004889}
Jens Axboee2de69d2010-03-04 14:05:48 +01004890
Jens Axboe07b32322010-03-05 09:48:44 +01004891void invalidate_profile_options(const char *prof_name)
Jens Axboee2de69d2010-03-04 14:05:48 +01004892{
Jens Axboe07b32322010-03-05 09:48:44 +01004893 struct fio_option *o;
Jens Axboee2de69d2010-03-04 14:05:48 +01004894
Jens Axboe9af4a242012-03-16 10:13:49 +01004895 o = fio_options;
Jens Axboe07b32322010-03-05 09:48:44 +01004896 while (o->name) {
4897 if (o->prof_name && !strcmp(o->prof_name, prof_name)) {
4898 o->type = FIO_OPT_INVALID;
4899 o->prof_name = NULL;
4900 }
4901 o++;
Jens Axboee2de69d2010-03-04 14:05:48 +01004902 }
4903}
Jens Axboef5b6bb82010-03-05 10:09:59 +01004904
4905void add_opt_posval(const char *optname, const char *ival, const char *help)
4906{
4907 struct fio_option *o;
4908 unsigned int i;
4909
Jens Axboe9af4a242012-03-16 10:13:49 +01004910 o = find_option(fio_options, optname);
Jens Axboef5b6bb82010-03-05 10:09:59 +01004911 if (!o)
4912 return;
4913
4914 for (i = 0; i < PARSE_MAX_VP; i++) {
4915 if (o->posval[i].ival)
4916 continue;
4917
4918 o->posval[i].ival = ival;
4919 o->posval[i].help = help;
4920 break;
4921 }
4922}
4923
4924void del_opt_posval(const char *optname, const char *ival)
4925{
4926 struct fio_option *o;
4927 unsigned int i;
4928
Jens Axboe9af4a242012-03-16 10:13:49 +01004929 o = find_option(fio_options, optname);
Jens Axboef5b6bb82010-03-05 10:09:59 +01004930 if (!o)
4931 return;
4932
4933 for (i = 0; i < PARSE_MAX_VP; i++) {
4934 if (!o->posval[i].ival)
4935 continue;
4936 if (strcmp(o->posval[i].ival, ival))
4937 continue;
4938
4939 o->posval[i].ival = NULL;
4940 o->posval[i].help = NULL;
4941 }
4942}
Jens Axboe7e356b22011-10-14 10:55:16 +02004943
4944void fio_options_free(struct thread_data *td)
4945{
Elliott Hugheseda3a602017-05-19 18:53:02 -07004946 options_free(fio_options, &td->o);
Steven Langde890a12011-11-09 14:03:34 +01004947 if (td->eo && td->io_ops && td->io_ops->options) {
4948 options_free(td->io_ops->options, td->eo);
4949 free(td->eo);
4950 td->eo = NULL;
4951 }
Jens Axboe7e356b22011-10-14 10:55:16 +02004952}
Jens Axboec504ee52012-03-20 11:29:09 +01004953
4954struct fio_option *fio_option_find(const char *name)
4955{
4956 return find_option(fio_options, name);
4957}
4958
Jens Axboef6b79252014-12-22 20:03:50 -07004959static struct fio_option *find_next_opt(struct thread_options *o,
4960 struct fio_option *from,
4961 unsigned int off1)
Jens Axboe9c62acd2014-12-09 12:58:15 -07004962{
Jens Axboef6b79252014-12-22 20:03:50 -07004963 struct fio_option *opt;
Jens Axboe9c62acd2014-12-09 12:58:15 -07004964
Jens Axboef6b79252014-12-22 20:03:50 -07004965 if (!from)
4966 from = &fio_options[0];
4967 else
4968 from++;
4969
4970 opt = NULL;
4971 do {
4972 if (off1 == from->off1) {
4973 opt = from;
Jens Axboe9c62acd2014-12-09 12:58:15 -07004974 break;
4975 }
Jens Axboef6b79252014-12-22 20:03:50 -07004976 from++;
4977 } while (from->name);
Jens Axboe9c62acd2014-12-09 12:58:15 -07004978
Jens Axboef6b79252014-12-22 20:03:50 -07004979 return opt;
4980}
4981
4982static int opt_is_set(struct thread_options *o, struct fio_option *opt)
4983{
4984 unsigned int opt_off, index, offset;
Jens Axboe9c62acd2014-12-09 12:58:15 -07004985
4986 opt_off = opt - &fio_options[0];
4987 index = opt_off / (8 * sizeof(uint64_t));
4988 offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
Elliott Hugheseda3a602017-05-19 18:53:02 -07004989 return (o->set_options[index] & ((uint64_t)1 << offset)) != 0;
Jens Axboe9c62acd2014-12-09 12:58:15 -07004990}
4991
Elliott Hugheseda3a602017-05-19 18:53:02 -07004992bool __fio_option_is_set(struct thread_options *o, unsigned int off1)
Jens Axboef6b79252014-12-22 20:03:50 -07004993{
4994 struct fio_option *opt, *next;
4995
4996 next = NULL;
4997 while ((opt = find_next_opt(o, next, off1)) != NULL) {
4998 if (opt_is_set(o, opt))
Elliott Hugheseda3a602017-05-19 18:53:02 -07004999 return true;
Jens Axboef6b79252014-12-22 20:03:50 -07005000
5001 next = opt;
5002 }
5003
Elliott Hugheseda3a602017-05-19 18:53:02 -07005004 return false;
Jens Axboef6b79252014-12-22 20:03:50 -07005005}
5006
Jens Axboe9c62acd2014-12-09 12:58:15 -07005007void fio_option_mark_set(struct thread_options *o, struct fio_option *opt)
5008{
5009 unsigned int opt_off, index, offset;
5010
5011 opt_off = opt - &fio_options[0];
5012 index = opt_off / (8 * sizeof(uint64_t));
5013 offset = opt_off & ((8 * sizeof(uint64_t)) - 1);
Elliott Hugheseda3a602017-05-19 18:53:02 -07005014 o->set_options[index] |= (uint64_t)1 << offset;
Jens Axboe9c62acd2014-12-09 12:58:15 -07005015}