Fix wrong index bug
[fio.git] / thread_options.h
CommitLineData
8062f527
JA
1#ifndef FIO_THREAD_OPTIONS_H
2#define FIO_THREAD_OPTIONS_H
3
4#include "arch/arch.h"
5#include "os/os.h"
a8523a6a 6#include "options.h"
8062f527
JA
7#include "stat.h"
8#include "gettime.h"
888677a4 9#include "lib/ieee754.h"
3c978125 10#include "td_error.h"
8062f527
JA
11
12/*
13 * What type of allocation to use for io buffers
14 */
15enum fio_memtype {
16 MEM_MALLOC = 0, /* ordinary malloc */
17 MEM_SHM, /* use shared memory segments */
18 MEM_SHMHUGE, /* use shared memory segments with huge pages */
19 MEM_MMAP, /* use anonynomous mmap */
20 MEM_MMAPHUGE, /* memory mapped huge file */
21};
22
8062f527
JA
23#define ERROR_STR_MAX 128
24
8062f527
JA
25#define BSSPLIT_MAX 64
26
27struct bssplit {
28 uint32_t bs;
29 uint32_t perc;
30};
31
a8523a6a
JA
32#define NR_OPTS_SZ (FIO_MAX_OPTS / (8 * sizeof(uint64_t)))
33
cb1402d6
JA
34#define OPT_MAGIC 0x4f50544e
35
8062f527 36struct thread_options {
cb1402d6 37 int magic;
a8523a6a 38 uint64_t set_options[NR_OPTS_SZ];
8062f527
JA
39 char *description;
40 char *name;
41 char *directory;
42 char *filename;
43 char *filename_format;
44 char *opendir;
45 char *ioengine;
83ea422a 46 char *mmapfile;
8062f527
JA
47 enum td_ddir td_ddir;
48 unsigned int rw_seq;
49 unsigned int kb_base;
50 unsigned int unit_base;
51 unsigned int ddir_seq_nr;
c46fda90 52 long long ddir_seq_add;
8062f527
JA
53 unsigned int iodepth;
54 unsigned int iodepth_low;
55 unsigned int iodepth_batch;
56 unsigned int iodepth_batch_complete;
57
58 unsigned long long size;
77731b29 59 unsigned long long io_limit;
8062f527
JA
60 unsigned int size_percent;
61 unsigned int fill_device;
bedc9dc2 62 unsigned int file_append;
8062f527
JA
63 unsigned long long file_size_low;
64 unsigned long long file_size_high;
65 unsigned long long start_offset;
66
67 unsigned int bs[DDIR_RWDIR_CNT];
68 unsigned int ba[DDIR_RWDIR_CNT];
69 unsigned int min_bs[DDIR_RWDIR_CNT];
70 unsigned int max_bs[DDIR_RWDIR_CNT];
71 struct bssplit *bssplit[DDIR_RWDIR_CNT];
72 unsigned int bssplit_nr[DDIR_RWDIR_CNT];
73
74 int *ignore_error[ERROR_TYPE_CNT];
75 unsigned int ignore_error_nr[ERROR_TYPE_CNT];
76 unsigned int error_dump;
77
78 unsigned int nr_files;
79 unsigned int open_files;
80 enum file_lock_mode file_lock_mode;
81
82 unsigned int odirect;
d01612f3 83 unsigned int oatomic;
8062f527
JA
84 unsigned int invalidate_cache;
85 unsigned int create_serialize;
86 unsigned int create_fsync;
87 unsigned int create_on_open;
88 unsigned int create_only;
89 unsigned int end_fsync;
90 unsigned int pre_read;
91 unsigned int sync_io;
92 unsigned int verify;
93 unsigned int do_verify;
94 unsigned int verifysort;
95 unsigned int verifysort_nr;
96 unsigned int verify_interval;
97 unsigned int verify_offset;
98 char verify_pattern[MAX_PATTERN_SIZE];
99 unsigned int verify_pattern_bytes;
100 unsigned int verify_fatal;
101 unsigned int verify_dump;
102 unsigned int verify_async;
103 unsigned long long verify_backlog;
104 unsigned int verify_batch;
105 unsigned int experimental_verify;
ca09be4b
JA
106 unsigned int verify_state;
107 unsigned int verify_state_save;
8062f527
JA
108 unsigned int use_thread;
109 unsigned int unlink;
110 unsigned int do_disk_util;
111 unsigned int override_sync;
112 unsigned int rand_repeatable;
56e2a5fc 113 unsigned int allrand_repeatable;
363cffa7 114 unsigned long long rand_seed;
54a21917 115 unsigned int dep_use_os_rand;
8062f527 116 unsigned int log_avg_msec;
ae588852 117 unsigned int log_offset;
aee2ab67 118 unsigned int log_gz;
b26317c9 119 unsigned int log_gz_store;
8062f527
JA
120 unsigned int norandommap;
121 unsigned int softrandommap;
122 unsigned int bs_unaligned;
123 unsigned int fsync_on_close;
6aca9b3d 124 unsigned int bs_is_seq_rand;
8062f527 125
62167762
JC
126 unsigned int verify_only;
127
8062f527 128 unsigned int random_distribution;
b7f487cf 129
888677a4
JA
130 fio_fp64_t zipf_theta;
131 fio_fp64_t pareto_h;
f88cd222 132 fio_fp64_t gauss_dev;
8062f527
JA
133
134 unsigned int random_generator;
135
d9472271 136 unsigned int perc_rand[DDIR_RWDIR_CNT];
211c9b89 137
8062f527
JA
138 unsigned int hugepage_size;
139 unsigned int rw_min_bs;
140 unsigned int thinktime;
141 unsigned int thinktime_spin;
142 unsigned int thinktime_blocks;
143 unsigned int fsync_blocks;
144 unsigned int fdatasync_blocks;
145 unsigned int barrier_blocks;
146 unsigned long long start_delay;
23ed19b0 147 unsigned long long start_delay_high;
8062f527
JA
148 unsigned long long timeout;
149 unsigned long long ramp_time;
150 unsigned int overwrite;
151 unsigned int bw_avg_time;
152 unsigned int iops_avg_time;
153 unsigned int loops;
154 unsigned long long zone_range;
155 unsigned long long zone_size;
156 unsigned long long zone_skip;
81c6b6cd 157 unsigned long long lockmem;
8062f527
JA
158 enum fio_memtype mem_type;
159 unsigned int mem_align;
160
161 unsigned int max_latency;
162
163 unsigned int stonewall;
164 unsigned int new_group;
165 unsigned int numjobs;
166 os_cpu_mask_t cpumask;
8062f527 167 os_cpu_mask_t verify_cpumask;
c2acfbac 168 unsigned int cpus_allowed_policy;
43522848 169 char *numa_cpunodes;
8062f527
JA
170 unsigned short numa_mem_mode;
171 unsigned int numa_mem_prefer_node;
43522848 172 char *numa_memnodes;
8062f527
JA
173 unsigned int iolog;
174 unsigned int rwmixcycle;
5054e67c 175 unsigned int rwmix[DDIR_RWDIR_CNT];
8062f527 176 unsigned int nice;
81c6b6cd
JA
177 unsigned int ioprio;
178 unsigned int ioprio_class;
8062f527
JA
179 unsigned int file_service_type;
180 unsigned int group_reporting;
181 unsigned int fadvise_hint;
37659335 182 unsigned int fadvise_stream;
8062f527
JA
183 enum fio_fallocate_mode fallocate_mode;
184 unsigned int zero_buffers;
185 unsigned int refill_buffers;
186 unsigned int scramble_buffers;
ce35b1ec
JA
187 char buffer_pattern[MAX_PATTERN_SIZE];
188 unsigned int buffer_pattern_bytes;
8062f527
JA
189 unsigned int compress_percentage;
190 unsigned int compress_chunk;
5c94b008 191 unsigned int dedupe_percentage;
8062f527
JA
192 unsigned int time_based;
193 unsigned int disable_lat;
194 unsigned int disable_clat;
195 unsigned int disable_slat;
196 unsigned int disable_bw;
197 unsigned int unified_rw_rep;
198 unsigned int gtod_reduce;
199 unsigned int gtod_cpu;
8062f527
JA
200 enum fio_cs clocksource;
201 unsigned int no_stall;
202 unsigned int trim_percentage;
203 unsigned int trim_batch;
204 unsigned int trim_zero;
205 unsigned long long trim_backlog;
206 unsigned int clat_percentiles;
207 unsigned int percentile_precision; /* digits after decimal for percentiles */
208 fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
209
210 char *read_iolog_file;
211 char *write_iolog_file;
212 char *bw_log_file;
213 char *lat_log_file;
214 char *iops_log_file;
215 char *replay_redirect;
216
217 /*
218 * Pre-run and post-run shell
219 */
220 char *exec_prerun;
221 char *exec_postrun;
222
223 unsigned int rate[DDIR_RWDIR_CNT];
224 unsigned int ratemin[DDIR_RWDIR_CNT];
225 unsigned int ratecycle;
226 unsigned int rate_iops[DDIR_RWDIR_CNT];
227 unsigned int rate_iops_min[DDIR_RWDIR_CNT];
228
229 char *ioscheduler;
230
8062f527
JA
231 /*
232 * I/O Error handling
233 */
234 enum error_type continue_on_error;
235
236 /*
237 * Benchmark profile type
238 */
239 char *profile;
240
241 /*
242 * blkio cgroup support
243 */
244 char *cgroup;
245 unsigned int cgroup_weight;
246 unsigned int cgroup_nodelete;
247
248 unsigned int uid;
249 unsigned int gid;
250
251 int flow_id;
252 int flow;
253 int flow_watermark;
254 unsigned int flow_sleep;
255
256 unsigned long long offset_increment;
ddf24e42 257 unsigned long long number_ios;
8062f527
JA
258
259 unsigned int sync_file_range;
3e260a46
JA
260
261 unsigned long long latency_target;
262 unsigned long long latency_window;
263 fio_fp64_t latency_percentile;
66347cfa
DE
264
265 unsigned block_error_hist;
65fa28ca 266 unsigned int skip_bad;
8062f527
JA
267};
268
2dc1cbb5
JA
269#define FIO_TOP_STR_MAX 256
270
271struct thread_options_pack {
a8523a6a 272 uint64_t set_options[NR_OPTS_SZ];
2dc1cbb5
JA
273 uint8_t description[FIO_TOP_STR_MAX];
274 uint8_t name[FIO_TOP_STR_MAX];
275 uint8_t directory[FIO_TOP_STR_MAX];
276 uint8_t filename[FIO_TOP_STR_MAX];
22f80458 277 uint8_t filename_format[FIO_TOP_STR_MAX];
2dc1cbb5
JA
278 uint8_t opendir[FIO_TOP_STR_MAX];
279 uint8_t ioengine[FIO_TOP_STR_MAX];
83ea422a 280 uint8_t mmapfile[FIO_TOP_STR_MAX];
2dc1cbb5
JA
281 uint32_t td_ddir;
282 uint32_t rw_seq;
283 uint32_t kb_base;
22f80458 284 uint32_t unit_base;
2dc1cbb5
JA
285 uint32_t ddir_seq_nr;
286 uint64_t ddir_seq_add;
287 uint32_t iodepth;
288 uint32_t iodepth_low;
289 uint32_t iodepth_batch;
290 uint32_t iodepth_batch_complete;
291
292 uint64_t size;
77731b29 293 uint64_t io_limit;
2dc1cbb5
JA
294 uint32_t size_percent;
295 uint32_t fill_device;
bedc9dc2 296 uint32_t file_append;
2dc1cbb5
JA
297 uint64_t file_size_low;
298 uint64_t file_size_high;
299 uint64_t start_offset;
300
b999b3c7
JA
301 uint32_t bs[DDIR_RWDIR_CNT];
302 uint32_t ba[DDIR_RWDIR_CNT];
303 uint32_t min_bs[DDIR_RWDIR_CNT];
304 uint32_t max_bs[DDIR_RWDIR_CNT];
305 struct bssplit bssplit[DDIR_RWDIR_CNT][BSSPLIT_MAX];
306 uint32_t bssplit_nr[DDIR_RWDIR_CNT];
2dc1cbb5 307
e65a950a
JA
308 uint32_t ignore_error[ERROR_TYPE_CNT][ERROR_STR_MAX];
309 uint32_t ignore_error_nr[ERROR_TYPE_CNT];
310 uint32_t error_dump;
311
2dc1cbb5
JA
312 uint32_t nr_files;
313 uint32_t open_files;
314 uint32_t file_lock_mode;
2dc1cbb5
JA
315
316 uint32_t odirect;
d01612f3 317 uint32_t oatomic;
2dc1cbb5
JA
318 uint32_t invalidate_cache;
319 uint32_t create_serialize;
320 uint32_t create_fsync;
321 uint32_t create_on_open;
fb390e24 322 uint32_t create_only;
2dc1cbb5
JA
323 uint32_t end_fsync;
324 uint32_t pre_read;
325 uint32_t sync_io;
326 uint32_t verify;
327 uint32_t do_verify;
328 uint32_t verifysort;
836fcc0f 329 uint32_t verifysort_nr;
2dc1cbb5
JA
330 uint32_t verify_interval;
331 uint32_t verify_offset;
332 uint8_t verify_pattern[MAX_PATTERN_SIZE];
333 uint32_t verify_pattern_bytes;
334 uint32_t verify_fatal;
335 uint32_t verify_dump;
336 uint32_t verify_async;
337 uint64_t verify_backlog;
338 uint32_t verify_batch;
836fcc0f 339 uint32_t experimental_verify;
ca09be4b
JA
340 uint32_t verify_state;
341 uint32_t verify_state_save;
2dc1cbb5
JA
342 uint32_t use_thread;
343 uint32_t unlink;
344 uint32_t do_disk_util;
345 uint32_t override_sync;
346 uint32_t rand_repeatable;
56e2a5fc 347 uint32_t allrand_repeatable;
363cffa7 348 uint64_t rand_seed;
54a21917 349 uint32_t dep_use_os_rand;
2dc1cbb5 350 uint32_t log_avg_msec;
ae588852 351 uint32_t log_offset;
aee2ab67 352 uint32_t log_gz;
b26317c9 353 uint32_t log_gz_store;
2dc1cbb5
JA
354 uint32_t norandommap;
355 uint32_t softrandommap;
356 uint32_t bs_unaligned;
357 uint32_t fsync_on_close;
6aca9b3d 358 uint32_t bs_is_seq_rand;
2dc1cbb5 359
1e5324e7 360 uint32_t random_distribution;
f88cd222
JA
361 uint32_t pad;
362
1e5324e7
JA
363 fio_fp64_t zipf_theta;
364 fio_fp64_t pareto_h;
f88cd222 365 fio_fp64_t gauss_dev;
1e5324e7 366
49758e11
JA
367 uint32_t random_generator;
368
d9472271 369 uint32_t perc_rand[DDIR_RWDIR_CNT];
211c9b89 370
2dc1cbb5
JA
371 uint32_t hugepage_size;
372 uint32_t rw_min_bs;
373 uint32_t thinktime;
374 uint32_t thinktime_spin;
375 uint32_t thinktime_blocks;
376 uint32_t fsync_blocks;
377 uint32_t fdatasync_blocks;
378 uint32_t barrier_blocks;
379 uint64_t start_delay;
23ed19b0 380 uint64_t start_delay_high;
2dc1cbb5
JA
381 uint64_t timeout;
382 uint64_t ramp_time;
383 uint32_t overwrite;
384 uint32_t bw_avg_time;
385 uint32_t iops_avg_time;
386 uint32_t loops;
387 uint64_t zone_range;
388 uint64_t zone_size;
389 uint64_t zone_skip;
ae278f9a 390 uint64_t lockmem;
2dc1cbb5
JA
391 uint32_t mem_type;
392 uint32_t mem_align;
393
1e5324e7
JA
394 uint32_t max_latency;
395
2dc1cbb5
JA
396 uint32_t stonewall;
397 uint32_t new_group;
398 uint32_t numjobs;
399 uint8_t cpumask[FIO_TOP_STR_MAX];
2dc1cbb5 400 uint8_t verify_cpumask[FIO_TOP_STR_MAX];
c2acfbac 401 uint32_t cpus_allowed_policy;
2dc1cbb5
JA
402 uint32_t iolog;
403 uint32_t rwmixcycle;
5054e67c 404 uint32_t rwmix[DDIR_RWDIR_CNT];
2dc1cbb5 405 uint32_t nice;
28727df7
JA
406 uint32_t ioprio;
407 uint32_t ioprio_class;
2dc1cbb5
JA
408 uint32_t file_service_type;
409 uint32_t group_reporting;
410 uint32_t fadvise_hint;
37659335 411 uint32_t fadvise_stream;
2dc1cbb5
JA
412 uint32_t fallocate_mode;
413 uint32_t zero_buffers;
414 uint32_t refill_buffers;
415 uint32_t scramble_buffers;
ce35b1ec
JA
416 uint8_t buffer_pattern[MAX_PATTERN_SIZE];
417 uint32_t buffer_pattern_bytes;
5c94b008
JA
418 uint32_t compress_percentage;
419 uint32_t compress_chunk;
420 uint32_t dedupe_percentage;
2dc1cbb5
JA
421 uint32_t time_based;
422 uint32_t disable_lat;
423 uint32_t disable_clat;
424 uint32_t disable_slat;
425 uint32_t disable_bw;
95820b6e 426 uint32_t unified_rw_rep;
2dc1cbb5
JA
427 uint32_t gtod_reduce;
428 uint32_t gtod_cpu;
2dc1cbb5
JA
429 uint32_t clocksource;
430 uint32_t no_stall;
431 uint32_t trim_percentage;
432 uint32_t trim_batch;
433 uint32_t trim_zero;
434 uint64_t trim_backlog;
435 uint32_t clat_percentiles;
9db01ef9 436 uint32_t percentile_precision;
2dc1cbb5
JA
437 fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
438
439 uint8_t read_iolog_file[FIO_TOP_STR_MAX];
440 uint8_t write_iolog_file[FIO_TOP_STR_MAX];
441 uint8_t bw_log_file[FIO_TOP_STR_MAX];
442 uint8_t lat_log_file[FIO_TOP_STR_MAX];
443 uint8_t iops_log_file[FIO_TOP_STR_MAX];
444 uint8_t replay_redirect[FIO_TOP_STR_MAX];
445
446 /*
447 * Pre-run and post-run shell
448 */
449 uint8_t exec_prerun[FIO_TOP_STR_MAX];
450 uint8_t exec_postrun[FIO_TOP_STR_MAX];
451
b999b3c7
JA
452 uint32_t rate[DDIR_RWDIR_CNT];
453 uint32_t ratemin[DDIR_RWDIR_CNT];
2dc1cbb5 454 uint32_t ratecycle;
b999b3c7
JA
455 uint32_t rate_iops[DDIR_RWDIR_CNT];
456 uint32_t rate_iops_min[DDIR_RWDIR_CNT];
2dc1cbb5
JA
457
458 uint8_t ioscheduler[FIO_TOP_STR_MAX];
459
2dc1cbb5
JA
460 /*
461 * I/O Error handling
462 */
463 uint32_t continue_on_error;
464
465 /*
466 * Benchmark profile type
467 */
468 uint8_t profile[FIO_TOP_STR_MAX];
469
470 /*
471 * blkio cgroup support
472 */
473 uint8_t cgroup[FIO_TOP_STR_MAX];
474 uint32_t cgroup_weight;
475 uint32_t cgroup_nodelete;
476
477 uint32_t uid;
478 uint32_t gid;
479
480 int32_t flow_id;
481 int32_t flow;
482 int32_t flow_watermark;
483 uint32_t flow_sleep;
484
6a4cf74f 485 uint64_t offset_increment;
ddf24e42 486 uint64_t number_ios;
6a4cf74f 487
2dc1cbb5 488 uint32_t sync_file_range;
3e260a46
JA
489
490 uint64_t latency_target;
491 uint64_t latency_window;
79c896a1 492 uint32_t pad3;
3e260a46 493 fio_fp64_t latency_percentile;
66347cfa
DE
494
495 uint32_t block_error_hist;
65fa28ca 496 uint32_t skip_bad;
2dc1cbb5
JA
497} __attribute__((packed));
498
499extern void convert_thread_options_to_cpu(struct thread_options *o, struct thread_options_pack *top);
500extern void convert_thread_options_to_net(struct thread_options_pack *top, struct thread_options *);
51167799 501extern int fio_test_cconv(struct thread_options *);
588b7f09 502extern void options_default_fill(struct thread_options *o);
2dc1cbb5 503
8062f527 504#endif