Merge branch 'server'
[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
317b95d0 17#include "compiler/compiler.h"
8062f527 18#include "thread_options.h"
01743ee1 19#include "flist.h"
e2887563 20#include "fifo.h"
317b95d0
JA
21#include "arch/arch.h"
22#include "os/os.h"
07739b57 23#include "mutex.h"
a3d741fa
JA
24#include "log.h"
25#include "debug.h"
d6aed795
JA
26#include "file.h"
27#include "io_ddir.h"
dcefb588 28#include "ioengine.h"
5995a6a4 29#include "iolog.h"
c5c8bd5c 30#include "helpers.h"
07b3232d 31#include "options.h"
7eb36574 32#include "profile.h"
ef3c94b6 33#include "fio_time.h"
a7346816 34#include "gettime.h"
bf2e821a 35#include "lib/getopt.h"
2615cc4b 36#include "lib/rand.h"
7fb6d453 37#include "lib/rbtree.h"
dd366728 38#include "client.h"
37db14fe 39#include "server.h"
a64e88da 40#include "stat.h"
9e684a49 41#include "flow.h"
2ae0b204 42#include "io_u_queue.h"
a9da8ab2 43#include "workqueue.h"
ebac4655 44
4700b234 45#ifdef CONFIG_SOLARISAIO
417f0068
JA
46#include <sys/asynch.h>
47#endif
48
67bf9823 49#ifdef CONFIG_LIBNUMA
d0b937ed
YR
50#include <linux/mempolicy.h>
51#include <numa.h>
52
53/*
54 * "local" is pseudo-policy
55 */
56#define MPOL_LOCAL MPOL_MAX
57#endif
58
38dad62d
JA
59/*
60 * offset generator types
61 */
62enum {
63 RW_SEQ_SEQ = 0,
64 RW_SEQ_IDENT,
65};
66
d72be545 67enum {
10941167
JA
68 TD_F_VER_BACKLOG = 1U << 0,
69 TD_F_TRIM_BACKLOG = 1U << 1,
70 TD_F_READ_IOLOG = 1U << 2,
71 TD_F_REFILL_BUFFERS = 1U << 3,
72 TD_F_SCRAMBLE_BUFFERS = 1U << 4,
73 TD_F_VER_NONE = 1U << 5,
74 TD_F_PROFILE_OPS = 1U << 6,
75 TD_F_COMPRESS = 1U << 7,
76 TD_F_NOIO = 1U << 8,
77 TD_F_COMPRESS_LOG = 1U << 9,
78 TD_F_VSTATE_SAVED = 1U << 10,
79 TD_F_NEED_LOCK = 1U << 11,
80 TD_F_CHILD = 1U << 12,
263775ad 81 TD_F_NO_PROGRESS = 1U << 13,
d72be545
JA
82};
83
d24945f0
JA
84enum {
85 FIO_RAND_BS_OFF = 0,
86 FIO_RAND_VER_OFF,
87 FIO_RAND_MIX_OFF,
88 FIO_RAND_FILE_OFF,
89 FIO_RAND_BLOCK_OFF,
90 FIO_RAND_FILE_SIZE_OFF,
91 FIO_RAND_TRIM_OFF,
92 FIO_RAND_BUF_OFF,
d9472271
JA
93 FIO_RAND_SEQ_RAND_READ_OFF,
94 FIO_RAND_SEQ_RAND_WRITE_OFF,
95 FIO_RAND_SEQ_RAND_TRIM_OFF,
23ed19b0 96 FIO_RAND_START_DELAY,
5c94b008 97 FIO_DEDUPE_OFF,
e7b24047 98 FIO_RAND_POISSON_OFF,
d24945f0
JA
99 FIO_RAND_NR_OFFS,
100};
101
a9da8ab2
JA
102enum {
103 IO_MODE_INLINE = 0,
6de65959
JA
104 IO_MODE_OFFLOAD = 1,
105
106 RATE_PROCESS_LINEAR = 0,
107 RATE_PROCESS_POISSON = 1,
a9da8ab2
JA
108};
109
2a2804c9
JA
110/*
111 * Per-thread/process specific data. Only used for the network client
112 * for now.
113 */
24660963
JA
114struct sk_out;
115void sk_out_assign(struct sk_out *);
116void sk_out_drop(void);
2a2804c9 117
2dc1bbeb
JA
118/*
119 * This describes a single thread/process executing a fio job.
120 */
121struct thread_data {
122 struct thread_options o;
d72be545 123 unsigned long flags;
de890a1e 124 void *eo;
e4e33258 125 char verror[FIO_VERROR_SIZE];
2dc1bbeb 126 pthread_t thread;
2f122b13 127 unsigned int thread_number;
69bdd6ba 128 unsigned int subjob_number;
2f122b13 129 unsigned int groupid;
2dc1bbeb 130 struct thread_stat ts;
7b9f733a 131
46bcd498
JA
132 int client_type;
133
7b9f733a
JA
134 struct io_log *slat_log;
135 struct io_log *clat_log;
136 struct io_log *lat_log;
137 struct io_log *bw_log;
c8eeb9df 138 struct io_log *iops_log;
7b9f733a 139
155f2f02 140 struct workqueue log_compress_wq;
aee2ab67 141
a9da8ab2
JA
142 struct thread_data *parent;
143
6eaf09d6 144 uint64_t stat_io_bytes[DDIR_RWDIR_CNT];
c8eeb9df
JA
145 struct timeval bw_sample_time;
146
6eaf09d6 147 uint64_t stat_io_blocks[DDIR_RWDIR_CNT];
c8eeb9df 148 struct timeval iops_sample_time;
f0505a14 149
ca09be4b
JA
150 /*
151 * Tracks the last iodepth number of completed writes, if data
152 * verification is enabled
153 */
154 uint64_t *last_write_comp;
155 unsigned int last_write_idx;
156
c97f1ad6
JA
157 volatile int update_rusage;
158 struct fio_mutex *rusage_sem;
c8aaba19
JA
159 struct rusage ru_start;
160 struct rusage ru_end;
161
126d65c6 162 struct fio_file **files;
d7df1d13 163 unsigned char *file_locks;
dd87b2c9 164 unsigned int files_size;
2dc1bbeb
JA
165 unsigned int files_index;
166 unsigned int nr_open_files;
1020a139 167 unsigned int nr_done_files;
2dc1bbeb
JA
168 unsigned int nr_normal_files;
169 union {
170 unsigned int next_file;
d6b72507 171 struct frand_state next_file_state;
2dc1bbeb
JA
172 };
173 int error;
a5e371a6 174 int sig;
20e354ef 175 int done;
ca09be4b 176 int stop_io;
2dc1bbeb
JA
177 pid_t pid;
178 char *orig_buffer;
179 size_t orig_buffer_size;
180 volatile int terminate;
181 volatile int runstate;
2dc1bbeb 182 unsigned int last_was_sync;
9e144189 183 enum fio_ddir last_ddir;
2dc1bbeb 184
2dc1bbeb
JA
185 int mmapfd;
186
843a7413
JA
187 void *iolog_buf;
188 FILE *iolog_f;
ebac4655 189
da86774e 190 char *sysfs_root;
da86774e 191
d24945f0 192 unsigned long rand_seeds[FIO_RAND_NR_OFFS];
5bfc35d7 193
d6b72507
JA
194 struct frand_state bsrange_state;
195 struct frand_state verify_state;
196 struct frand_state trim_state;
197 struct frand_state delay_state;
ebac4655 198
3545a109 199 struct frand_state buf_state;
5c94b008
JA
200 struct frand_state buf_state_prev;
201 struct frand_state dedupe_state;
3545a109 202
9e144189 203 unsigned int verify_batch;
0d29de83 204 unsigned int trim_batch;
9e144189 205
ca09be4b
JA
206 struct thread_io_list *vstate;
207
ebac4655
JA
208 int shm_id;
209
e9c047a0
JA
210 /*
211 * IO engine hooks, contains everything needed to submit an io_u
212 * to any of the available IO engines.
213 */
2866c82d 214 struct ioengine_ops *io_ops;
ebac4655 215
e9c047a0 216 /*
422f9e4b 217 * Queue depth of io_u's that fio MIGHT do
e9c047a0 218 */
ebac4655 219 unsigned int cur_depth;
422f9e4b
RM
220
221 /*
222 * io_u's about to be committed
223 */
d8005759 224 unsigned int io_u_queued;
422f9e4b
RM
225
226 /*
227 * io_u's submitted but not completed yet
228 */
229 unsigned int io_u_in_flight;
230
231 /*
232 * List of free and busy io_u's
233 */
2ae0b204
JA
234 struct io_u_ring io_u_requeues;
235 struct io_u_queue io_u_freelist;
236 struct io_u_queue io_u_all;
e8462bd8
JA
237 pthread_mutex_t io_u_lock;
238 pthread_cond_t free_cond;
239
240 /*
241 * async verify offload
242 */
243 struct flist_head verify_list;
244 pthread_t *verify_threads;
245 unsigned int nr_verify_threads;
246 pthread_cond_t verify_cond;
247 int verify_thread_exit;
ebac4655 248
e9c047a0
JA
249 /*
250 * Rate state
251 */
bdb6d20a 252 uint64_t rate_bps[DDIR_RWDIR_CNT];
50a8ce86 253 unsigned long rate_next_io_time[DDIR_RWDIR_CNT];
6eaf09d6
SL
254 unsigned long rate_bytes[DDIR_RWDIR_CNT];
255 unsigned long rate_blocks[DDIR_RWDIR_CNT];
50a8ce86 256 unsigned long rate_io_issue_bytes[DDIR_RWDIR_CNT];
6eaf09d6 257 struct timeval lastrate[DDIR_RWDIR_CNT];
e7b24047
JA
258 int64_t last_usec;
259 struct frand_state poisson_state;
ebac4655 260
a9da8ab2
JA
261 /*
262 * Enforced rate submission/completion workqueue
263 */
264 struct workqueue io_wq;
265
bdb6d20a
JA
266 uint64_t total_io_size;
267 uint64_t fill_device_size;
ebac4655 268
74d6277f
JA
269 /*
270 * Issue side
271 */
ca09be4b 272 uint64_t io_issues[DDIR_RWDIR_CNT];
74d6277f 273 uint64_t io_issue_bytes[DDIR_RWDIR_CNT];
cf8a46a7 274 uint64_t loops;
74d6277f
JA
275
276 /*
277 * Completions
278 */
bdb6d20a
JA
279 uint64_t io_blocks[DDIR_RWDIR_CNT];
280 uint64_t this_io_blocks[DDIR_RWDIR_CNT];
281 uint64_t io_bytes[DDIR_RWDIR_CNT];
bdb6d20a 282 uint64_t this_io_bytes[DDIR_RWDIR_CNT];
55312f9f 283 uint64_t io_skip_bytes;
bdb6d20a 284 uint64_t zone_bytes;
cdd18ad8 285 struct fio_mutex *mutex;
55312f9f 286 uint64_t bytes_done[DDIR_RWDIR_CNT];
ebac4655 287
e9c047a0
JA
288 /*
289 * State for random io, a bitmap of blocks done vs not done
290 */
d6b72507 291 struct frand_state random_state;
ebac4655 292
ebac4655
JA
293 struct timeval start; /* start of this loop */
294 struct timeval epoch; /* time job was started */
a61eddec 295 struct timeval last_issue;
df8fb609 296 long time_offset;
993bf48b 297 struct timeval tv_cache;
cba5460c 298 struct timeval terminate_time;
993bf48b
JA
299 unsigned int tv_cache_nr;
300 unsigned int tv_cache_mask;
721938ae 301 unsigned int ramp_time_over;
ebac4655 302
3e260a46
JA
303 /*
304 * Time since last latency_window was started
305 */
306 struct timeval latency_ts;
307 unsigned int latency_qd;
308 unsigned int latency_qd_high;
309 unsigned int latency_qd_low;
310 unsigned int latency_failed;
311 uint64_t latency_ios;
6bb58215 312 int latency_end_run;
3e260a46 313
e9c047a0
JA
314 /*
315 * read/write mixed workload state
316 */
d6b72507 317 struct frand_state rwmix_state;
e4928662 318 unsigned long rwmix_issues;
e9c047a0 319 enum fio_ddir rwmix_ddir;
5736c10d 320 unsigned int ddir_seq_nr;
a6ccc7be 321
211c9b89
JA
322 /*
323 * rand/seq mixed workload state
324 */
d6b72507 325 struct frand_state seq_rand_state[DDIR_RWDIR_CNT];
211c9b89 326
e9c047a0 327 /*
8de8f047
JA
328 * IO history logs for verification. We use a tree for sorting,
329 * if we are overwriting. Otherwise just use a fifo.
e9c047a0 330 */
4b87898e 331 struct rb_root io_hist_tree;
01743ee1 332 struct flist_head io_hist_list;
9e144189 333 unsigned long io_hist_len;
8de8f047
JA
334
335 /*
336 * For IO replaying
337 */
01743ee1 338 struct flist_head io_log_list;
433afcb4 339
0d29de83
JA
340 /*
341 * For tracking/handling discards
342 */
343 struct flist_head trim_list;
344 unsigned long trim_entries;
345
1ae83d45
JA
346 struct flist_head next_rand_list;
347
1907dbc6
JA
348 /*
349 * for fileservice, how often to switch to a new file
350 */
351 unsigned int file_service_nr;
352 unsigned int file_service_left;
353 struct fio_file *file_service_file;
9c60ce64 354
44f29692
JA
355 unsigned int sync_file_range_nr;
356
9c60ce64
JA
357 /*
358 * For generating file sizes
359 */
d6b72507 360 struct frand_state file_size_state;
f2bba182
RR
361
362 /*
363 * Error counts
364 */
365 unsigned int total_err_count;
366 int first_error;
15dc1934 367
9e684a49
DE
368 struct fio_flow *flow;
369
15dc1934
JA
370 /*
371 * Can be overloaded by profiles
372 */
7eb36574 373 struct prof_io_ops prof_io_ops;
58c55ba0 374 void *prof_data;
9a3f1100
JA
375
376 void *pinned_mem;
ebac4655
JA
377};
378
e592a06b
AC
379/*
380 * when should interactive ETA output be generated
381 */
382enum {
383 FIO_ETA_AUTO,
384 FIO_ETA_ALWAYS,
385 FIO_ETA_NEVER,
386};
387
e1161c32 388#define __td_verror(td, err, msg, func) \
ebac4655 389 do { \
21beb609 390 unsigned int ____e = (err); \
19abcd3d
JA
391 if ((td)->error) \
392 break; \
8271963e 393 (td)->error = ____e; \
f2bba182 394 if (!(td)->first_error) \
98ffb8f3 395 snprintf(td->verror, sizeof(td->verror), "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
ebac4655
JA
396 } while (0)
397
b990b5c0 398
a9da8ab2
JA
399#define td_clear_error(td) do { \
400 (td)->error = 0; \
401 if ((td)->parent) \
402 (td)->parent->error = 0; \
403} while (0)
404
405#define td_verror(td, err, func) do { \
406 __td_verror((td), (err), strerror((err)), (func)); \
407 if ((td)->parent) \
408 __td_verror((td)->parent, (err), strerror((err)), (func)); \
409} while (0)
410
411#define td_vmsg(td, err, msg, func) do { \
412 __td_verror((td), (err), (msg), (func)); \
413 if ((td)->parent) \
414 __td_verror((td)->parent, (err), (msg), (func)); \
415} while (0)
b990b5c0 416
81179eec
JA
417#define __fio_stringify_1(x) #x
418#define __fio_stringify(x) __fio_stringify_1(x)
419
ebac4655 420extern int exitall_on_terminate;
11e950bd 421extern unsigned int thread_number;
108fea77 422extern unsigned int stat_number;
ebac4655
JA
423extern int shm_id;
424extern int groupid;
f3afa57e 425extern int output_format;
2b8c71b0 426extern int append_terse_output;
53cdc686 427extern int temp_stall_ts;
7078106d 428extern uintptr_t page_mask, page_size;
4241ea8f 429extern int read_only;
e592a06b 430extern int eta_print;
e382e661 431extern int eta_new_line;
d3eeeabc 432extern unsigned long done_secs;
01f06b63 433extern char *job_section;
be4ecfdf
JA
434extern int fio_gtod_offload;
435extern int fio_gtod_cpu;
c223da83 436extern enum fio_cs fio_clock_source;
fa80feae 437extern int fio_clock_source_set;
a9523c6f 438extern int warnings_fatal;
f57a9c59 439extern int terse_version;
5c341e9a 440extern int is_backend;
a37f69b7 441extern int nr_clients;
e46d8091 442extern int log_syslog;
06464907 443extern int status_interval;
5e726d0a 444extern const char fio_version_string[];
5ddc6707
JA
445extern int helper_do_stat;
446extern pthread_cond_t helper_cond;
ca09be4b
JA
447extern char *trigger_file;
448extern char *trigger_cmd;
b63efd30 449extern char *trigger_remote_cmd;
ca09be4b 450extern long long trigger_timeout;
d264264a 451extern char *aux_path;
ebac4655
JA
452
453extern struct thread_data *threads;
454
effd6ff0 455static inline void fio_ro_check(const struct thread_data *td, struct io_u *io_u)
7101d9c2
JA
456{
457 assert(!(io_u->ddir == DDIR_WRITE && !td_write(td)));
458}
459
fca70358 460#define REAL_MAX_JOBS 2048
ebac4655 461
87dc1ab1
JA
462static inline int should_fsync(struct thread_data *td)
463{
464 if (td->last_was_sync)
465 return 0;
2dc1bbeb 466 if (td_write(td) || td_rw(td) || td->o.override_sync)
87dc1ab1
JA
467 return 1;
468
469 return 0;
470}
471
8914a9d8 472/*
214e1eca 473 * Init/option functions
8914a9d8 474 */
0420ba6a 475extern int __must_check fio_init_options(void);
72cb971b 476extern int __must_check parse_options(int, char **);
46bcd498
JA
477extern int parse_jobs_ini(char *, int, int, int);
478extern int parse_cmd_line(int, char **, int);
24660963 479extern int fio_backend(struct sk_out *);
50d16976 480extern void reset_fio_state(void);
ac28d905 481extern void clear_io_state(struct thread_data *, int);
292cc475 482extern int fio_options_parse(struct thread_data *, char **, int, int);
74929ac2 483extern void fio_keywords_init(void);
af1dc266 484extern void fio_keywords_exit(void);
214e1eca 485extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
de890a1e 486extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
214e1eca
JA
487extern void fio_fill_default_options(struct thread_data *);
488extern int fio_show_option_help(const char *);
de890a1e 489extern void fio_options_set_ioengine_opts(struct option *long_options, struct thread_data *td);
214e1eca 490extern void fio_options_dup_and_init(struct option *);
de890a1e
SL
491extern void fio_options_mem_dupe(struct thread_data *);
492extern void options_mem_dupe(void *data, struct fio_option *options);
5bfc35d7 493extern void td_fill_rand_seeds(struct thread_data *);
46bcd498 494extern void add_job_opts(const char **, int);
ca09be4b 495extern char *num2str(uint64_t, int, int, int, int);
de890a1e 496extern int ioengine_load(struct thread_data *);
f9633d72 497extern int parse_dryrun(void);
046395d7 498extern int fio_running_or_pending_io_threads(void);
3a35845f 499extern int fio_set_fd_nonblocking(int, const char *);
d2235e56 500extern void sig_show_status(int sig);
1ec3d69b 501
a569b45f
JA
502extern uintptr_t page_mask;
503extern uintptr_t page_size;
504extern int initialize_fio(char *envp[]);
af1dc266 505extern void deinitialize_fio(void);
a569b45f 506
de890a1e
SL
507#define FIO_GETOPT_JOB 0x89000000
508#define FIO_GETOPT_IOENGINE 0x98000000
07b3232d 509#define FIO_NR_OPTIONS (FIO_MAX_OPTS + 128)
8914a9d8 510
263e529f
JA
511/*
512 * ETA/status stuff
513 */
514extern void print_thread_status(void);
515extern void print_status_init(int);
0a428b23 516extern char *fio_uint_to_kmg(unsigned int val);
263e529f
JA
517
518/*
519 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
520 * will never back again. It may cycle between running/verififying/fsyncing.
521 * Once the thread reaches TD_EXITED, it is just waiting for the core to
522 * reap it.
523 */
524enum {
525 TD_NOT_CREATED = 0,
526 TD_CREATED,
527 TD_INITIALIZED,
b29ee5b3 528 TD_RAMP,
36d80bc7 529 TD_SETTING_UP,
263e529f 530 TD_RUNNING,
b0f65863 531 TD_PRE_READING,
263e529f
JA
532 TD_VERIFYING,
533 TD_FSYNCING,
3d434057 534 TD_FINISHING,
263e529f
JA
535 TD_EXITED,
536 TD_REAPED,
6e760cf3 537 TD_LAST,
263e529f
JA
538};
539
b29ee5b3 540extern void td_set_runstate(struct thread_data *, int);
8edd973d
JA
541extern int td_bump_runstate(struct thread_data *, int);
542extern void td_restore_runstate(struct thread_data *, int);
543
cba5460c
JA
544/*
545 * Allow 60 seconds for a job to quit on its own, otherwise reap with
546 * a vengeance.
547 */
548#define FIO_REAP_TIMEOUT 60
549
d883efbd
JA
550#define TERMINATE_ALL (-1U)
551extern void fio_terminate_threads(unsigned int);
ebea2133 552extern void fio_mark_td_terminate(struct thread_data *);
b29ee5b3 553
2f9ade3c
JA
554/*
555 * Memory helpers
556 */
9a3f1100
JA
557extern int __must_check fio_pin_memory(struct thread_data *);
558extern void fio_unpin_memory(struct thread_data *);
b2fdda43 559extern int __must_check allocate_io_mem(struct thread_data *);
2f9ade3c 560extern void free_io_mem(struct thread_data *);
2bb3f0a7 561extern void free_threads_shm(void);
2f9ade3c 562
b29ee5b3
JA
563/*
564 * Reset stats after ramp time completes
565 */
566extern void reset_all_stats(struct thread_data *);
567
fb7b71a3
JA
568/*
569 * blktrace support
570 */
5e62c22a 571#ifdef FIO_HAVE_BLKTRACE
d95b34a6
JA
572extern int is_blktrace(const char *, int *);
573extern int load_blktrace(struct thread_data *, const char *, int);
5e62c22a 574#endif
fb7b71a3 575
40511301
JA
576extern int io_queue_event(struct thread_data *td, struct io_u *io_u, int *ret,
577 enum fio_ddir ddir, uint64_t *bytes_issued, int from_verify,
578 struct timeval *comp_time);
579
3e260a46
JA
580/*
581 * Latency target helpers
582 */
583extern void lat_target_check(struct thread_data *);
584extern void lat_target_init(struct thread_data *);
6bb58215 585extern void lat_target_reset(struct thread_data *);
3e260a46 586
34572e28
JA
587#define for_each_td(td, i) \
588 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
53cdc686 589#define for_each_file(td, f, i) \
691c8fb0
JA
590 if ((td)->files_index) \
591 for ((i) = 0, (f) = (td)->files[0]; \
592 (i) < (td)->o.nr_files && ((f) = (td)->files[i]) != NULL; \
593 (i)++)
53cdc686 594
0032bf9f
JA
595#define fio_assert(td, cond) do { \
596 if (!(cond)) { \
340fd243 597 int *__foo = NULL; \
0032bf9f 598 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
ac18ea38 599 td_set_runstate((td), TD_EXITED); \
437c9b71 600 (td)->error = EFAULT; \
340fd243 601 *__foo = 0; \
0032bf9f
JA
602 } \
603} while (0)
604
12d9d841
JA
605static inline int fio_fill_issue_time(struct thread_data *td)
606{
607 if (td->o.read_iolog_file ||
608 !td->o.disable_clat || !td->o.disable_slat || !td->o.disable_bw)
609 return 1;
610
611 return 0;
612}
613
581e7141
JA
614static inline int __should_check_rate(struct thread_data *td,
615 enum fio_ddir ddir)
616{
617 struct thread_options *o = &td->o;
618
619 /*
620 * If some rate setting was given, we need to check it
621 */
622 if (o->rate[ddir] || o->ratemin[ddir] || o->rate_iops[ddir] ||
623 o->rate_iops_min[ddir])
624 return 1;
625
626 return 0;
627}
628
55312f9f 629static inline int should_check_rate(struct thread_data *td)
581e7141
JA
630{
631 int ret = 0;
632
55312f9f 633 if (td->bytes_done[DDIR_READ])
6eaf09d6 634 ret |= __should_check_rate(td, DDIR_READ);
55312f9f 635 if (td->bytes_done[DDIR_WRITE])
6eaf09d6 636 ret |= __should_check_rate(td, DDIR_WRITE);
55312f9f 637 if (td->bytes_done[DDIR_TRIM])
6eaf09d6 638 ret |= __should_check_rate(td, DDIR_TRIM);
581e7141
JA
639
640 return ret;
641}
642
74f4b020
JA
643static inline unsigned int td_max_bs(struct thread_data *td)
644{
645 unsigned int max_bs;
646
647 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
648 return max(td->o.max_bs[DDIR_TRIM], max_bs);
649}
650
8d916c94
JA
651static inline unsigned int td_min_bs(struct thread_data *td)
652{
653 unsigned int min_bs;
654
655 min_bs = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
656 return min(td->o.min_bs[DDIR_TRIM], min_bs);
657}
658
a9da8ab2
JA
659static inline int td_async_processing(struct thread_data *td)
660{
661 return (td->flags & TD_F_NEED_LOCK) != 0;
662}
663
e8462bd8
JA
664/*
665 * We currently only need to do locking if we have verifier threads
666 * accessing our internal structures too
667 */
668static inline void td_io_u_lock(struct thread_data *td)
669{
a9da8ab2 670 if (td_async_processing(td))
e8462bd8
JA
671 pthread_mutex_lock(&td->io_u_lock);
672}
673
674static inline void td_io_u_unlock(struct thread_data *td)
675{
a9da8ab2 676 if (td_async_processing(td))
e8462bd8
JA
677 pthread_mutex_unlock(&td->io_u_lock);
678}
679
680static inline void td_io_u_free_notify(struct thread_data *td)
681{
a9da8ab2 682 if (td_async_processing(td))
e8462bd8
JA
683 pthread_cond_signal(&td->free_cond);
684}
685
cca84643
JA
686extern const char *fio_get_arch_string(int);
687extern const char *fio_get_os_string(int);
688
e2c81040 689#ifdef FIO_INTERNAL
71deafc6
RP
690#define ARRAY_SIZE(x) (sizeof((x)) / (sizeof((x)[0])))
691#define FIELD_SIZE(s, f) (sizeof(((typeof(s))0)->f))
e2c81040 692#endif
05775438 693
f3afa57e 694enum {
129fb2d4
JA
695 __FIO_OUTPUT_TERSE = 0,
696 __FIO_OUTPUT_JSON = 1,
697 __FIO_OUTPUT_NORMAL = 2,
513e37ee
VF
698 __FIO_OUTPUT_JSON_PLUS = 3,
699 FIO_OUTPUT_NR = 4,
129fb2d4
JA
700
701 FIO_OUTPUT_TERSE = 1U << __FIO_OUTPUT_TERSE,
702 FIO_OUTPUT_JSON = 1U << __FIO_OUTPUT_JSON,
703 FIO_OUTPUT_NORMAL = 1U << __FIO_OUTPUT_NORMAL,
513e37ee 704 FIO_OUTPUT_JSON_PLUS = 1U << __FIO_OUTPUT_JSON_PLUS,
f3afa57e
JA
705};
706
e25839d4
JA
707enum {
708 FIO_RAND_DIST_RANDOM = 0,
709 FIO_RAND_DIST_ZIPF,
925fee33 710 FIO_RAND_DIST_PARETO,
56d9fa4b 711 FIO_RAND_DIST_GAUSS,
e25839d4
JA
712};
713
c95f9404
JA
714#define FIO_DEF_ZIPF 1.1
715#define FIO_DEF_PARETO 0.2
716
8055e41d
JA
717enum {
718 FIO_RAND_GEN_TAUSWORTHE = 0,
719 FIO_RAND_GEN_LFSR,
c3546b53 720 FIO_RAND_GEN_TAUSWORTHE64,
8055e41d
JA
721};
722
c2acfbac
JA
723enum {
724 FIO_CPUS_SHARED = 0,
725 FIO_CPUS_SPLIT,
726};
727
ca09be4b
JA
728extern void exec_trigger(const char *);
729extern void check_trigger_file(void);
730
ebac4655 731#endif