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