Move stat_io_bytes/time to thread_data
[fio.git] / fio.h
CommitLineData
ebac4655
JA
1#ifndef FIO_H
2#define FIO_H
3
4#include <sched.h>
5#include <limits.h>
6#include <pthread.h>
7#include <sys/time.h>
8#include <sys/resource.h>
3c39a379
JA
9#include <errno.h>
10#include <stdlib.h>
11#include <stdio.h>
6d6f031f 12#include <unistd.h>
34cfcdaf 13#include <string.h>
cd14cc10 14#include <inttypes.h>
7101d9c2 15#include <assert.h>
ebac4655 16
ecc314ba
BC
17struct thread_data;
18
317b95d0 19#include "compiler/compiler.h"
01743ee1 20#include "flist.h"
e2887563 21#include "fifo.h"
4b87898e 22#include "rbtree.h"
317b95d0
JA
23#include "arch/arch.h"
24#include "os/os.h"
07739b57 25#include "mutex.h"
a3d741fa
JA
26#include "log.h"
27#include "debug.h"
d6aed795
JA
28#include "file.h"
29#include "io_ddir.h"
dcefb588 30#include "ioengine.h"
5995a6a4 31#include "iolog.h"
c5c8bd5c 32#include "helpers.h"
07b3232d 33#include "options.h"
7eb36574 34#include "profile.h"
c223da83 35#include "time.h"
bf2e821a 36#include "lib/getopt.h"
2615cc4b 37#include "lib/rand.h"
37db14fe 38#include "server.h"
ebac4655 39
609342ff
DL
40#ifdef FIO_HAVE_GUASI
41#include <guasi.h>
42#endif
43
417f0068
JA
44#ifdef FIO_HAVE_SOLARISAIO
45#include <sys/asynch.h>
46#endif
47
ebac4655 48struct group_run_stats {
ea3c936e
JA
49 uint64_t max_run[2], min_run[2];
50 uint64_t max_bw[2], min_bw[2];
51 uint64_t io_kb[2];
52 uint64_t agg[2];
53 uint32_t kb_base;
ebac4655
JA
54};
55
e9c047a0
JA
56/*
57 * What type of allocation to use for io buffers
58 */
59enum fio_memtype {
60 MEM_MALLOC = 0, /* ordinary malloc */
61 MEM_SHM, /* use shared memory segments */
74b025b0 62 MEM_SHMHUGE, /* use shared memory segments with huge pages */
e9c047a0 63 MEM_MMAP, /* use anonynomous mmap */
d0bdaf49 64 MEM_MMAPHUGE, /* memory mapped huge file */
e9c047a0
JA
65};
66
38dad62d
JA
67/*
68 * offset generator types
69 */
70enum {
71 RW_SEQ_SEQ = 0,
72 RW_SEQ_IDENT,
73};
74
b2560f3c
JA
75/*
76 * How many depth levels to log
77 */
bb067558 78#define FIO_IO_U_MAP_NR 7
a9a18a3f
JA
79#define FIO_IO_U_LAT_U_NR 10
80#define FIO_IO_U_LAT_M_NR 12
b2560f3c 81
83349190
YH
82/*
83 * Aggregate clat samples to report percentile(s) of them.
84 *
85 * EXECUTIVE SUMMARY
86 *
87 * FIO_IO_U_PLAT_BITS determines the maximum statistical error on the
88 * value of resulting percentiles. The error will be approximately
89 * 1/2^(FIO_IO_U_PLAT_BITS+1) of the value.
90 *
91 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the maximum
92 * range being tracked for latency samples. The maximum value tracked
93 * accurately will be 2^(GROUP_NR + PLAT_BITS -1) microseconds.
94 *
95 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the memory
96 * requirement of storing those aggregate counts. The memory used will
97 * be (FIO_IO_U_PLAT_GROUP_NR * 2^FIO_IO_U_PLAT_BITS) * sizeof(int)
98 * bytes.
99 *
100 * FIO_IO_U_PLAT_NR is the total number of buckets.
101 *
102 * DETAILS
103 *
104 * Suppose the clat varies from 0 to 999 (usec), the straightforward
105 * method is to keep an array of (999 + 1) buckets, in which a counter
106 * keeps the count of samples which fall in the bucket, e.g.,
107 * {[0],[1],...,[999]}. However this consumes a huge amount of space,
108 * and can be avoided if an approximation is acceptable.
109 *
110 * One such method is to let the range of the bucket to be greater
111 * than one. This method has low accuracy when the value is small. For
112 * example, let the buckets be {[0,99],[100,199],...,[900,999]}, and
113 * the represented value of each bucket be the mean of the range. Then
114 * a value 0 has an round-off error of 49.5. To improve on this, we
115 * use buckets with non-uniform ranges, while bounding the error of
116 * each bucket within a ratio of the sample value. A simple example
117 * would be when error_bound = 0.005, buckets are {
118 * {[0],[1],...,[99]}, {[100,101],[102,103],...,[198,199]},..,
119 * {[900,909],[910,919]...} }. The total range is partitioned into
120 * groups with different ranges, then buckets with uniform ranges. An
121 * upper bound of the error is (range_of_bucket/2)/value_of_bucket
122 *
123 * For better efficiency, we implement this using base two. We group
124 * samples by their Most Significant Bit (MSB), extract the next M bit
125 * of them as an index within the group, and discard the rest of the
126 * bits.
127 *
128 * E.g., assume a sample 'x' whose MSB is bit n (starting from bit 0),
129 * and use M bit for indexing
130 *
131 * | n | M bits | bit (n-M-1) ... bit 0 |
132 *
133 * Because x is at least 2^n, and bit 0 to bit (n-M-1) is at most
134 * (2^(n-M) - 1), discarding bit 0 to (n-M-1) makes the round-off
135 * error
136 *
137 * 2^(n-M)-1 2^(n-M) 1
138 * e <= --------- <= ------- = ---
139 * 2^n 2^n 2^M
140 *
141 * Furthermore, we use "mean" of the range to represent the bucket,
142 * the error e can be lowered by half to 1 / 2^(M+1). By using M bits
143 * as the index, each group must contains 2^M buckets.
144 *
145 * E.g. Let M (FIO_IO_U_PLAT_BITS) be 6
146 * Error bound is 1/2^(6+1) = 0.0078125 (< 1%)
147 *
148 * Group MSB #discarded range of #buckets
149 * error_bits value
150 * ----------------------------------------------------------------
151 * 0* 0~5 0 [0,63] 64
152 * 1* 6 0 [64,127] 64
153 * 2 7 1 [128,255] 64
154 * 3 8 2 [256,511] 64
155 * 4 9 3 [512,1023] 64
156 * ... ... ... [...,...] ...
157 * 18 23 17 [8838608,+inf]** 64
158 *
159 * * Special cases: when n < (M-1) or when n == (M-1), in both cases,
160 * the value cannot be rounded off. Use all bits of the sample as
161 * index.
162 *
163 * ** If a sample's MSB is greater than 23, it will be counted as 23.
164 */
165
166#define FIO_IO_U_PLAT_BITS 6
167#define FIO_IO_U_PLAT_VAL (1 << FIO_IO_U_PLAT_BITS)
168#define FIO_IO_U_PLAT_GROUP_NR 19
169#define FIO_IO_U_PLAT_NR (FIO_IO_U_PLAT_GROUP_NR * FIO_IO_U_PLAT_VAL)
170#define FIO_IO_U_LIST_MAX_LEN 20 /* The size of the default and user-specified
171 list of percentiles */
172
0e92f873
RR
173#define MAX_PATTERN_SIZE 512
174
079ad09b 175struct thread_stat {
756867bd
JA
176 char *name;
177 char *verror;
7b9f733a
JA
178 int32_t error;
179 int32_t groupid;
180 uint32_t pid;
756867bd 181 char *description;
7b9f733a 182 uint32_t members;
079ad09b
JA
183
184 /*
185 * bandwidth and latency stats
186 */
187 struct io_stat clat_stat[2]; /* completion latency */
188 struct io_stat slat_stat[2]; /* submission latency */
02af0988 189 struct io_stat lat_stat[2]; /* total latency */
079ad09b
JA
190 struct io_stat bw_stat[2]; /* bandwidth stats */
191
079ad09b
JA
192 /*
193 * fio system usage accounting
194 */
195 struct rusage ru_start;
196 struct rusage ru_end;
7b9f733a
JA
197 uint64_t usr_time;
198 uint64_t sys_time;
199 uint64_t ctx;
200 uint64_t minf, majf;
079ad09b 201
b2560f3c
JA
202 /*
203 * IO depth and latency stats
204 */
7b9f733a 205 uint64_t clat_percentiles;
05895c12 206 double *percentile_list;
83349190 207
7b9f733a
JA
208 uint32_t io_u_map[FIO_IO_U_MAP_NR];
209 uint32_t io_u_submit[FIO_IO_U_MAP_NR];
210 uint32_t io_u_complete[FIO_IO_U_MAP_NR];
211 uint32_t io_u_lat_u[FIO_IO_U_LAT_U_NR];
212 uint32_t io_u_lat_m[FIO_IO_U_LAT_M_NR];
213 uint32_t io_u_plat[2][FIO_IO_U_PLAT_NR];
214 uint64_t total_io_u[3];
215 uint64_t short_io_u[3];
216 uint64_t total_submit;
217 uint64_t total_complete;
218
219 uint64_t io_bytes[2];
220 uint64_t runtime[2];
221 uint64_t total_run_time;
f2bba182
RR
222
223 /*
224 * IO Error related stats
225 */
7b9f733a
JA
226 uint16_t continue_on_error;
227 uint64_t total_err_count;
228 int32_t first_error;
90fef2d1 229
7b9f733a 230 uint32_t kb_base;
b2560f3c 231};
71619dc2 232
564ca972
JA
233struct bssplit {
234 unsigned int bs;
235 unsigned char perc;
236};
237
2dc1bbeb 238struct thread_options {
b1ec1da6 239 int pad;
61697c37 240 char *description;
b4692828 241 char *name;
ef899b63 242 char *directory;
13f8e2d2 243 char *filename;
2dc1bbeb 244 char *opendir;
09629a90 245 char *ioengine;
413dd459 246 enum td_ddir td_ddir;
38dad62d 247 unsigned int rw_seq;
90fef2d1 248 unsigned int kb_base;
5736c10d 249 unsigned int ddir_seq_nr;
a66da7a2 250 long ddir_seq_add;
2dc1bbeb
JA
251 unsigned int iodepth;
252 unsigned int iodepth_low;
253 unsigned int iodepth_batch;
4950421a 254 unsigned int iodepth_batch_complete;
2dc1bbeb
JA
255
256 unsigned long long size;
7bb59102 257 unsigned int size_percent;
aa31f1f1 258 unsigned int fill_device;
2dc1bbeb
JA
259 unsigned long long file_size_low;
260 unsigned long long file_size_high;
261 unsigned long long start_offset;
262
263 unsigned int bs[2];
2b7a01d0 264 unsigned int ba[2];
2dc1bbeb
JA
265 unsigned int min_bs[2];
266 unsigned int max_bs[2];
720e84ad
JA
267 struct bssplit *bssplit[2];
268 unsigned int bssplit_nr[2];
2dc1bbeb
JA
269
270 unsigned int nr_files;
271 unsigned int open_files;
4d4e80f2 272 enum file_lock_mode file_lock_mode;
29c1349f 273 unsigned int lockfile_batch;
e9c047a0 274
9158d2f7
JA
275 unsigned int odirect;
276 unsigned int invalidate_cache;
277 unsigned int create_serialize;
278 unsigned int create_fsync;
814452bd 279 unsigned int create_on_open;
9158d2f7 280 unsigned int end_fsync;
afad68f7 281 unsigned int pre_read;
9158d2f7
JA
282 unsigned int sync_io;
283 unsigned int verify;
e84c73a8 284 unsigned int do_verify;
160b966d 285 unsigned int verifysort;
a59e170d
JA
286 unsigned int verify_interval;
287 unsigned int verify_offset;
0e92f873 288 char verify_pattern[MAX_PATTERN_SIZE];
90059d65 289 unsigned int verify_pattern_bytes;
a12a3b4d 290 unsigned int verify_fatal;
b463e936 291 unsigned int verify_dump;
e8462bd8 292 unsigned int verify_async;
9e144189
JA
293 unsigned long long verify_backlog;
294 unsigned int verify_batch;
9158d2f7
JA
295 unsigned int use_thread;
296 unsigned int unlink;
297 unsigned int do_disk_util;
298 unsigned int override_sync;
299 unsigned int rand_repeatable;
2615cc4b 300 unsigned int use_os_rand;
9158d2f7
JA
301 unsigned int write_lat_log;
302 unsigned int write_bw_log;
bb8895e0 303 unsigned int norandommap;
2b386d25 304 unsigned int softrandommap;
690adba3 305 unsigned int bs_unaligned;
ebb1415f 306 unsigned int fsync_on_close;
e9c047a0 307
56bb17f2 308 unsigned int hugepage_size;
a00735e6 309 unsigned int rw_min_bs;
ebac4655 310 unsigned int thinktime;
48097d5c 311 unsigned int thinktime_spin;
9c1f7434 312 unsigned int thinktime_blocks;
ebac4655 313 unsigned int fsync_blocks;
5f9099ea 314 unsigned int fdatasync_blocks;
1ef2b6be 315 unsigned int barrier_blocks;
dce8b847 316 unsigned long long start_delay;
0db26797 317 unsigned long long timeout;
721938ae 318 unsigned long long ramp_time;
ebac4655 319 unsigned int overwrite;
ebac4655 320 unsigned int bw_avg_time;
ebac4655 321 unsigned int loops;
20dc95c4
JA
322 unsigned long long zone_size;
323 unsigned long long zone_skip;
e9c047a0 324 enum fio_memtype mem_type;
d529ee19 325 unsigned int mem_align;
2dc1bbeb 326
ebac4655 327 unsigned int stonewall;
b3d62a75 328 unsigned int new_group;
ebac4655 329 unsigned int numjobs;
ebac4655 330 os_cpu_mask_t cpumask;
375b2695 331 unsigned int cpumask_set;
e8462bd8
JA
332 os_cpu_mask_t verify_cpumask;
333 unsigned int verify_cpumask_set;
aea47d44 334 unsigned int iolog;
a6ccc7be 335 unsigned int rwmixcycle;
e47f799f 336 unsigned int rwmix[2];
b6f4d880 337 unsigned int nice;
0aabe160 338 unsigned int file_service_type;
b2560f3c 339 unsigned int group_reporting;
d2f3ac35 340 unsigned int fadvise_hint;
a596f047 341 enum fio_fallocate_mode fallocate_mode;
e9459e5a 342 unsigned int zero_buffers;
5973cafb 343 unsigned int refill_buffers;
fd68418e 344 unsigned int scramble_buffers;
cf4464ca 345 unsigned int time_based;
02af0988 346 unsigned int disable_lat;
9520ebb9
JA
347 unsigned int disable_clat;
348 unsigned int disable_slat;
349 unsigned int disable_bw;
993bf48b 350 unsigned int gtod_reduce;
be4ecfdf
JA
351 unsigned int gtod_cpu;
352 unsigned int gtod_offload;
c223da83 353 enum fio_cs clocksource;
64bbb865 354 unsigned int no_stall;
0d29de83
JA
355 unsigned int trim_percentage;
356 unsigned int trim_batch;
357 unsigned int trim_zero;
358 unsigned long long trim_backlog;
83349190
YH
359 unsigned int clat_percentiles;
360 unsigned int overwrite_plist;
361 double percentile_list[FIO_IO_U_LIST_MAX_LEN];
aea47d44 362
076efc7c
JA
363 char *read_iolog_file;
364 char *write_iolog_file;
e3cedca7
JA
365 char *bw_log_file;
366 char *lat_log_file;
d1c46c04 367 char *replay_redirect;
2dc1bbeb
JA
368
369 /*
370 * Pre-run and post-run shell
371 */
372 char *exec_prerun;
373 char *exec_postrun;
374
581e7141
JA
375 unsigned int rate[2];
376 unsigned int ratemin[2];
2dc1bbeb 377 unsigned int ratecycle;
581e7141
JA
378 unsigned int rate_iops[2];
379 unsigned int rate_iops_min[2];
2dc1bbeb
JA
380
381 char *ioscheduler;
382
383 /*
384 * CPU "io" cycle burner
385 */
386 unsigned int cpuload;
387 unsigned int cpucycle;
f2bba182
RR
388
389 /*
390 * I/O Error handling
391 */
392 unsigned int continue_on_error;
9ac8a797
JA
393
394 /*
395 * Benchmark profile type
396 */
79d16311 397 char *profile;
a696fa2a
JA
398
399 /*
400 * blkio cgroup support
401 */
a696fa2a
JA
402 char *cgroup;
403 unsigned int cgroup_weight;
7de87099 404 unsigned int cgroup_nodelete;
e0b0d892
JA
405
406 unsigned int uid;
407 unsigned int gid;
44f29692
JA
408
409 unsigned int sync_file_range;
675012f0
DE
410
411 unsigned int userspace_libaio_reap;
2dc1bbeb
JA
412};
413
e4e33258
JA
414#define FIO_VERROR_SIZE 128
415
2dc1bbeb
JA
416/*
417 * This describes a single thread/process executing a fio job.
418 */
419struct thread_data {
420 struct thread_options o;
e4e33258 421 char verror[FIO_VERROR_SIZE];
2dc1bbeb
JA
422 pthread_t thread;
423 int thread_number;
424 int groupid;
425 struct thread_stat ts;
7b9f733a
JA
426
427 struct io_log *slat_log;
428 struct io_log *clat_log;
429 struct io_log *lat_log;
430 struct io_log *bw_log;
431
f0505a14
JA
432 uint64_t stat_io_bytes[2];
433 struct timeval stat_sample_time[2];
434
126d65c6 435 struct fio_file **files;
dd87b2c9 436 unsigned int files_size;
2dc1bbeb
JA
437 unsigned int files_index;
438 unsigned int nr_open_files;
1020a139 439 unsigned int nr_done_files;
2dc1bbeb
JA
440 unsigned int nr_normal_files;
441 union {
442 unsigned int next_file;
443 os_random_state_t next_file_state;
4c07ad86 444 struct frand_state __next_file_state;
2dc1bbeb
JA
445 };
446 int error;
20e354ef 447 int done;
2dc1bbeb
JA
448 pid_t pid;
449 char *orig_buffer;
450 size_t orig_buffer_size;
451 volatile int terminate;
452 volatile int runstate;
453 unsigned int ioprio;
ac684785 454 unsigned int ioprio_set;
2dc1bbeb 455 unsigned int last_was_sync;
9e144189 456 enum fio_ddir last_ddir;
2dc1bbeb
JA
457
458 char *mmapfile;
459 int mmapfd;
460
843a7413
JA
461 void *iolog_buf;
462 FILE *iolog_f;
ebac4655 463
da86774e 464 char *sysfs_root;
da86774e 465
3545a109 466 unsigned long rand_seeds[8];
5bfc35d7 467
4c07ad86
JA
468 union {
469 os_random_state_t bsrange_state;
470 struct frand_state __bsrange_state;
471 };
472 union {
473 os_random_state_t verify_state;
474 struct frand_state __verify_state;
475 };
476 union {
477 os_random_state_t trim_state;
478 struct frand_state __trim_state;
479 };
ebac4655 480
3545a109
JA
481 struct frand_state buf_state;
482
9e144189 483 unsigned int verify_batch;
0d29de83 484 unsigned int trim_batch;
9e144189 485
ebac4655
JA
486 int shm_id;
487
e9c047a0
JA
488 /*
489 * IO engine hooks, contains everything needed to submit an io_u
490 * to any of the available IO engines.
491 */
2866c82d 492 struct ioengine_ops *io_ops;
ebac4655 493
e9c047a0
JA
494 /*
495 * Current IO depth and list of free and busy io_u's.
496 */
ebac4655 497 unsigned int cur_depth;
d8005759 498 unsigned int io_u_queued;
01743ee1
JA
499 struct flist_head io_u_freelist;
500 struct flist_head io_u_busylist;
501 struct flist_head io_u_requeues;
e8462bd8
JA
502 pthread_mutex_t io_u_lock;
503 pthread_cond_t free_cond;
504
505 /*
506 * async verify offload
507 */
508 struct flist_head verify_list;
509 pthread_t *verify_threads;
510 unsigned int nr_verify_threads;
511 pthread_cond_t verify_cond;
512 int verify_thread_exit;
ebac4655 513
e9c047a0
JA
514 /*
515 * Rate state
516 */
ba3e4e0c 517 unsigned long rate_nsec_cycle[2];
581e7141
JA
518 long rate_pending_usleep[2];
519 unsigned long rate_bytes[2];
520 unsigned long rate_blocks[2];
521 struct timeval lastrate[2];
ebac4655 522
ebac4655 523 unsigned long long total_io_size;
2e3bd4c2 524 unsigned long long fill_device_size;
ebac4655 525
755200a3 526 unsigned long io_issues[2];
9104f874
JA
527 unsigned long long io_blocks[2];
528 unsigned long long io_bytes[2];
48f5abd3 529 unsigned long long io_skip_bytes;
9104f874 530 unsigned long long this_io_bytes[2];
079ad09b 531 unsigned long long zone_bytes;
cdd18ad8 532 struct fio_mutex *mutex;
ebac4655 533
e9c047a0
JA
534 /*
535 * State for random io, a bitmap of blocks done vs not done
536 */
4c07ad86
JA
537 union {
538 os_random_state_t random_state;
539 struct frand_state __random_state;
540 };
ebac4655 541
ebac4655
JA
542 struct timeval start; /* start of this loop */
543 struct timeval epoch; /* time job was started */
a61eddec 544 struct timeval last_issue;
993bf48b
JA
545 struct timeval tv_cache;
546 unsigned int tv_cache_nr;
547 unsigned int tv_cache_mask;
721938ae 548 unsigned int ramp_time_over;
ebac4655 549
e9c047a0
JA
550 /*
551 * read/write mixed workload state
552 */
4c07ad86
JA
553 union {
554 os_random_state_t rwmix_state;
555 struct frand_state __rwmix_state;
556 };
e4928662 557 unsigned long rwmix_issues;
e9c047a0 558 enum fio_ddir rwmix_ddir;
5736c10d 559 unsigned int ddir_seq_nr;
a6ccc7be 560
e9c047a0 561 /*
8de8f047
JA
562 * IO history logs for verification. We use a tree for sorting,
563 * if we are overwriting. Otherwise just use a fifo.
e9c047a0 564 */
4b87898e 565 struct rb_root io_hist_tree;
01743ee1 566 struct flist_head io_hist_list;
9e144189 567 unsigned long io_hist_len;
8de8f047
JA
568
569 /*
570 * For IO replaying
571 */
01743ee1 572 struct flist_head io_log_list;
433afcb4 573
0d29de83
JA
574 /*
575 * For tracking/handling discards
576 */
577 struct flist_head trim_list;
578 unsigned long trim_entries;
579
1907dbc6
JA
580 /*
581 * for fileservice, how often to switch to a new file
582 */
583 unsigned int file_service_nr;
584 unsigned int file_service_left;
585 struct fio_file *file_service_file;
9c60ce64 586
44f29692
JA
587 unsigned int sync_file_range_nr;
588
9c60ce64
JA
589 /*
590 * For generating file sizes
591 */
4c07ad86
JA
592 union {
593 os_random_state_t file_size_state;
594 struct frand_state __file_size_state;
595 };
f2bba182
RR
596
597 /*
598 * Error counts
599 */
600 unsigned int total_err_count;
601 int first_error;
15dc1934
JA
602
603 /*
604 * Can be overloaded by profiles
605 */
7eb36574 606 struct prof_io_ops prof_io_ops;
58c55ba0 607 void *prof_data;
ebac4655
JA
608};
609
e592a06b
AC
610/*
611 * when should interactive ETA output be generated
612 */
613enum {
614 FIO_ETA_AUTO,
615 FIO_ETA_ALWAYS,
616 FIO_ETA_NEVER,
617};
618
e1161c32 619#define __td_verror(td, err, msg, func) \
ebac4655 620 do { \
19abcd3d
JA
621 if ((td)->error) \
622 break; \
ebac4655
JA
623 int e = (err); \
624 (td)->error = e; \
f2bba182
RR
625 if (!(td)->first_error) \
626 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
ebac4655
JA
627 } while (0)
628
b990b5c0 629
f2bba182
RR
630#define td_clear_error(td) \
631 (td)->error = 0;
e1161c32
JA
632#define td_verror(td, err, func) \
633 __td_verror((td), (err), strerror((err)), (func))
634#define td_vmsg(td, err, msg, func) \
635 __td_verror((td), (err), (msg), (func))
b990b5c0 636
ebac4655
JA
637extern int exitall_on_terminate;
638extern int thread_number;
9cedf167 639extern int nr_process, nr_thread;
ebac4655
JA
640extern int shm_id;
641extern int groupid;
c6ae0a5b 642extern int terse_output;
53cdc686 643extern int temp_stall_ts;
1e97cce9 644extern unsigned long long mlock_size;
cfc99db7 645extern unsigned long page_mask, page_size;
4241ea8f 646extern int read_only;
e592a06b 647extern int eta_print;
d3eeeabc 648extern unsigned long done_secs;
01f06b63 649extern char *job_section;
be4ecfdf
JA
650extern int fio_gtod_offload;
651extern int fio_gtod_cpu;
c223da83 652extern enum fio_cs fio_clock_source;
a9523c6f 653extern int warnings_fatal;
f57a9c59 654extern int terse_version;
5c341e9a 655extern int is_backend;
a37f69b7 656extern int nr_clients;
e46d8091 657extern int log_syslog;
ebac4655
JA
658
659extern struct thread_data *threads;
660
7101d9c2
JA
661static inline void fio_ro_check(struct thread_data *td, struct io_u *io_u)
662{
663 assert(!(io_u->ddir == DDIR_WRITE && !td_write(td)));
664}
665
0ce8b119 666#define BLOCKS_PER_MAP (8 * sizeof(unsigned long))
aec2de20
JA
667#define TO_MAP_BLOCK(f, b) (b)
668#define RAND_MAP_IDX(f, b) (TO_MAP_BLOCK(f, b) / BLOCKS_PER_MAP)
669#define RAND_MAP_BIT(f, b) (TO_MAP_BLOCK(f, b) & (BLOCKS_PER_MAP - 1))
ebac4655 670
fca70358 671#define REAL_MAX_JOBS 2048
ebac4655 672
1ec99eea 673#define td_non_fatal_error(e) ((e) == EIO || (e) == EILSEQ)
f2bba182
RR
674
675static inline void update_error_count(struct thread_data *td, int err)
676{
677 td->total_err_count++;
678 if (td->total_err_count == 1)
679 td->first_error = err;
680}
681
87dc1ab1
JA
682static inline int should_fsync(struct thread_data *td)
683{
684 if (td->last_was_sync)
685 return 0;
2dc1bbeb 686 if (td->o.odirect)
87dc1ab1 687 return 0;
2dc1bbeb 688 if (td_write(td) || td_rw(td) || td->o.override_sync)
87dc1ab1
JA
689 return 1;
690
691 return 0;
692}
693
8914a9d8 694/*
214e1eca 695 * Init/option functions
8914a9d8 696 */
72cb971b 697extern int __must_check parse_options(int, char **);
50d16976
JA
698extern int parse_jobs_ini(char *, int, int);
699extern int exec_run(void);
700extern void reset_fio_state(void);
3b8b7135 701extern int fio_options_parse(struct thread_data *, char **, int);
74929ac2 702extern void fio_keywords_init(void);
214e1eca
JA
703extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
704extern void fio_fill_default_options(struct thread_data *);
705extern int fio_show_option_help(const char *);
706extern void fio_options_dup_and_init(struct option *);
d23bb327
JA
707extern void options_mem_dupe(struct thread_data *);
708extern void options_mem_free(struct thread_data *);
5bfc35d7 709extern void td_fill_rand_seeds(struct thread_data *);
79d16311 710extern void add_job_opts(const char **);
1ec3d69b
JA
711extern char *num2str(unsigned long, int, int, int);
712
214e1eca 713#define FIO_GETOPT_JOB 0x89988998
07b3232d 714#define FIO_NR_OPTIONS (FIO_MAX_OPTS + 128)
8914a9d8 715
263e529f
JA
716/*
717 * ETA/status stuff
718 */
719extern void print_thread_status(void);
720extern void print_status_init(int);
721
722/*
723 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
724 * will never back again. It may cycle between running/verififying/fsyncing.
725 * Once the thread reaches TD_EXITED, it is just waiting for the core to
726 * reap it.
727 */
728enum {
729 TD_NOT_CREATED = 0,
730 TD_CREATED,
731 TD_INITIALIZED,
b29ee5b3 732 TD_RAMP,
263e529f 733 TD_RUNNING,
b0f65863 734 TD_PRE_READING,
263e529f
JA
735 TD_VERIFYING,
736 TD_FSYNCING,
737 TD_EXITED,
738 TD_REAPED,
739};
740
b29ee5b3
JA
741extern void td_set_runstate(struct thread_data *, int);
742
2f9ade3c
JA
743/*
744 * Memory helpers
745 */
b2fdda43 746extern int __must_check fio_pin_memory(void);
2f9ade3c 747extern void fio_unpin_memory(void);
b2fdda43 748extern int __must_check allocate_io_mem(struct thread_data *);
2f9ade3c
JA
749extern void free_io_mem(struct thread_data *);
750
b29ee5b3
JA
751/*
752 * Reset stats after ramp time completes
753 */
754extern void reset_all_stats(struct thread_data *);
755
fb7b71a3
JA
756/*
757 * blktrace support
758 */
5e62c22a 759#ifdef FIO_HAVE_BLKTRACE
fb7b71a3
JA
760extern int is_blktrace(const char *);
761extern int load_blktrace(struct thread_data *, const char *);
5e62c22a 762#endif
fb7b71a3 763
2866c82d
JA
764/*
765 * Mark unused variables passed to ops functions as unused, to silence gcc
766 */
767#define fio_unused __attribute((__unused__))
5f350952
JA
768#define fio_init __attribute__((constructor))
769#define fio_exit __attribute__((destructor))
2866c82d 770
34572e28
JA
771#define for_each_td(td, i) \
772 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
53cdc686 773#define for_each_file(td, f, i) \
691c8fb0
JA
774 if ((td)->files_index) \
775 for ((i) = 0, (f) = (td)->files[0]; \
776 (i) < (td)->o.nr_files && ((f) = (td)->files[i]) != NULL; \
777 (i)++)
53cdc686 778
0032bf9f
JA
779#define fio_assert(td, cond) do { \
780 if (!(cond)) { \
340fd243 781 int *__foo = NULL; \
0032bf9f 782 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
ac18ea38 783 td_set_runstate((td), TD_EXITED); \
437c9b71 784 (td)->error = EFAULT; \
340fd243 785 *__foo = 0; \
0032bf9f
JA
786 } \
787} while (0)
788
12d9d841
JA
789static inline int fio_fill_issue_time(struct thread_data *td)
790{
791 if (td->o.read_iolog_file ||
792 !td->o.disable_clat || !td->o.disable_slat || !td->o.disable_bw)
793 return 1;
794
795 return 0;
796}
797
581e7141
JA
798static inline int __should_check_rate(struct thread_data *td,
799 enum fio_ddir ddir)
800{
801 struct thread_options *o = &td->o;
802
803 /*
804 * If some rate setting was given, we need to check it
805 */
806 if (o->rate[ddir] || o->ratemin[ddir] || o->rate_iops[ddir] ||
807 o->rate_iops_min[ddir])
808 return 1;
809
810 return 0;
811}
812
813static inline int should_check_rate(struct thread_data *td,
814 unsigned long *bytes_done)
815{
816 int ret = 0;
817
818 if (bytes_done[0])
819 ret |= __should_check_rate(td, 0);
820 if (bytes_done[1])
821 ret |= __should_check_rate(td, 1);
822
823 return ret;
824}
825
d529ee19
JA
826static inline int is_power_of_2(unsigned int val)
827{
828 return (val != 0 && ((val & (val - 1)) == 0));
829}
830
e8462bd8
JA
831/*
832 * We currently only need to do locking if we have verifier threads
833 * accessing our internal structures too
834 */
835static inline void td_io_u_lock(struct thread_data *td)
836{
837 if (td->o.verify_async)
838 pthread_mutex_lock(&td->io_u_lock);
839}
840
841static inline void td_io_u_unlock(struct thread_data *td)
842{
843 if (td->o.verify_async)
844 pthread_mutex_unlock(&td->io_u_lock);
845}
846
847static inline void td_io_u_free_notify(struct thread_data *td)
848{
849 if (td->o.verify_async)
850 pthread_cond_signal(&td->free_cond);
851}
852
ebac4655 853#endif