blktrace: correct setting of iodepth
[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
ca09be4b 238 uint64_t io_issues[DDIR_RWDIR_CNT];
bdb6d20a
JA
239 uint64_t io_blocks[DDIR_RWDIR_CNT];
240 uint64_t this_io_blocks[DDIR_RWDIR_CNT];
241 uint64_t io_bytes[DDIR_RWDIR_CNT];
242 uint64_t io_skip_bytes;
243 uint64_t this_io_bytes[DDIR_RWDIR_CNT];
244 uint64_t zone_bytes;
cdd18ad8 245 struct fio_mutex *mutex;
ebac4655 246
e9c047a0
JA
247 /*
248 * State for random io, a bitmap of blocks done vs not done
249 */
d6b72507 250 struct frand_state random_state;
ebac4655 251
ebac4655
JA
252 struct timeval start; /* start of this loop */
253 struct timeval epoch; /* time job was started */
a61eddec 254 struct timeval last_issue;
993bf48b 255 struct timeval tv_cache;
cba5460c 256 struct timeval terminate_time;
993bf48b
JA
257 unsigned int tv_cache_nr;
258 unsigned int tv_cache_mask;
721938ae 259 unsigned int ramp_time_over;
ebac4655 260
3e260a46
JA
261 /*
262 * Time since last latency_window was started
263 */
264 struct timeval latency_ts;
265 unsigned int latency_qd;
266 unsigned int latency_qd_high;
267 unsigned int latency_qd_low;
268 unsigned int latency_failed;
269 uint64_t latency_ios;
6bb58215 270 int latency_end_run;
3e260a46 271
e9c047a0
JA
272 /*
273 * read/write mixed workload state
274 */
d6b72507 275 struct frand_state rwmix_state;
e4928662 276 unsigned long rwmix_issues;
e9c047a0 277 enum fio_ddir rwmix_ddir;
5736c10d 278 unsigned int ddir_seq_nr;
a6ccc7be 279
211c9b89
JA
280 /*
281 * rand/seq mixed workload state
282 */
d6b72507 283 struct frand_state seq_rand_state[DDIR_RWDIR_CNT];
211c9b89 284
e9c047a0 285 /*
8de8f047
JA
286 * IO history logs for verification. We use a tree for sorting,
287 * if we are overwriting. Otherwise just use a fifo.
e9c047a0 288 */
4b87898e 289 struct rb_root io_hist_tree;
01743ee1 290 struct flist_head io_hist_list;
9e144189 291 unsigned long io_hist_len;
8de8f047
JA
292
293 /*
294 * For IO replaying
295 */
01743ee1 296 struct flist_head io_log_list;
433afcb4 297
0d29de83
JA
298 /*
299 * For tracking/handling discards
300 */
301 struct flist_head trim_list;
302 unsigned long trim_entries;
303
1ae83d45
JA
304 struct flist_head next_rand_list;
305
1907dbc6
JA
306 /*
307 * for fileservice, how often to switch to a new file
308 */
309 unsigned int file_service_nr;
310 unsigned int file_service_left;
311 struct fio_file *file_service_file;
9c60ce64 312
44f29692
JA
313 unsigned int sync_file_range_nr;
314
9c60ce64
JA
315 /*
316 * For generating file sizes
317 */
d6b72507 318 struct frand_state file_size_state;
f2bba182
RR
319
320 /*
321 * Error counts
322 */
323 unsigned int total_err_count;
324 int first_error;
15dc1934 325
9e684a49
DE
326 struct fio_flow *flow;
327
15dc1934
JA
328 /*
329 * Can be overloaded by profiles
330 */
7eb36574 331 struct prof_io_ops prof_io_ops;
58c55ba0 332 void *prof_data;
9a3f1100
JA
333
334 void *pinned_mem;
ebac4655
JA
335};
336
e592a06b
AC
337/*
338 * when should interactive ETA output be generated
339 */
340enum {
341 FIO_ETA_AUTO,
342 FIO_ETA_ALWAYS,
343 FIO_ETA_NEVER,
344};
345
e1161c32 346#define __td_verror(td, err, msg, func) \
ebac4655 347 do { \
21beb609 348 unsigned int ____e = (err); \
19abcd3d
JA
349 if ((td)->error) \
350 break; \
8271963e 351 (td)->error = ____e; \
f2bba182 352 if (!(td)->first_error) \
98ffb8f3 353 snprintf(td->verror, sizeof(td->verror), "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
ebac4655
JA
354 } while (0)
355
b990b5c0 356
f2bba182
RR
357#define td_clear_error(td) \
358 (td)->error = 0;
e1161c32
JA
359#define td_verror(td, err, func) \
360 __td_verror((td), (err), strerror((err)), (func))
361#define td_vmsg(td, err, msg, func) \
362 __td_verror((td), (err), (msg), (func))
b990b5c0 363
81179eec
JA
364#define __fio_stringify_1(x) #x
365#define __fio_stringify(x) __fio_stringify_1(x)
366
ebac4655 367extern int exitall_on_terminate;
11e950bd 368extern unsigned int thread_number;
108fea77 369extern unsigned int stat_number;
ebac4655
JA
370extern int shm_id;
371extern int groupid;
f3afa57e 372extern int output_format;
2b8c71b0 373extern int append_terse_output;
53cdc686 374extern int temp_stall_ts;
7078106d 375extern uintptr_t page_mask, page_size;
4241ea8f 376extern int read_only;
e592a06b 377extern int eta_print;
e382e661 378extern int eta_new_line;
d3eeeabc 379extern unsigned long done_secs;
01f06b63 380extern char *job_section;
be4ecfdf
JA
381extern int fio_gtod_offload;
382extern int fio_gtod_cpu;
c223da83 383extern enum fio_cs fio_clock_source;
fa80feae 384extern int fio_clock_source_set;
a9523c6f 385extern int warnings_fatal;
f57a9c59 386extern int terse_version;
5c341e9a 387extern int is_backend;
a37f69b7 388extern int nr_clients;
e46d8091 389extern int log_syslog;
06464907 390extern int status_interval;
5e726d0a 391extern const char fio_version_string[];
5ddc6707
JA
392extern int helper_do_stat;
393extern pthread_cond_t helper_cond;
ca09be4b
JA
394extern char *trigger_file;
395extern char *trigger_cmd;
b63efd30 396extern char *trigger_remote_cmd;
ca09be4b 397extern long long trigger_timeout;
ebac4655
JA
398
399extern struct thread_data *threads;
400
effd6ff0 401static inline void fio_ro_check(const struct thread_data *td, struct io_u *io_u)
7101d9c2
JA
402{
403 assert(!(io_u->ddir == DDIR_WRITE && !td_write(td)));
404}
405
fca70358 406#define REAL_MAX_JOBS 2048
ebac4655 407
87dc1ab1
JA
408static inline int should_fsync(struct thread_data *td)
409{
410 if (td->last_was_sync)
411 return 0;
2dc1bbeb 412 if (td_write(td) || td_rw(td) || td->o.override_sync)
87dc1ab1
JA
413 return 1;
414
415 return 0;
416}
417
8914a9d8 418/*
214e1eca 419 * Init/option functions
8914a9d8 420 */
0420ba6a 421extern int __must_check fio_init_options(void);
72cb971b 422extern int __must_check parse_options(int, char **);
46bcd498
JA
423extern int parse_jobs_ini(char *, int, int, int);
424extern int parse_cmd_line(int, char **, int);
2e1df07d 425extern int fio_backend(void);
50d16976 426extern void reset_fio_state(void);
2e1df07d 427extern void clear_io_state(struct thread_data *);
292cc475 428extern int fio_options_parse(struct thread_data *, char **, int, int);
74929ac2 429extern void fio_keywords_init(void);
214e1eca 430extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
de890a1e 431extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
214e1eca
JA
432extern void fio_fill_default_options(struct thread_data *);
433extern int fio_show_option_help(const char *);
de890a1e 434extern void fio_options_set_ioengine_opts(struct option *long_options, struct thread_data *td);
214e1eca 435extern void fio_options_dup_and_init(struct option *);
de890a1e
SL
436extern void fio_options_mem_dupe(struct thread_data *);
437extern void options_mem_dupe(void *data, struct fio_option *options);
5bfc35d7 438extern void td_fill_rand_seeds(struct thread_data *);
46bcd498 439extern void add_job_opts(const char **, int);
ca09be4b 440extern char *num2str(uint64_t, int, int, int, int);
de890a1e 441extern int ioengine_load(struct thread_data *);
f9633d72 442extern int parse_dryrun(void);
046395d7 443extern int fio_running_or_pending_io_threads(void);
3a35845f 444extern int fio_set_fd_nonblocking(int, const char *);
1ec3d69b 445
a569b45f
JA
446extern uintptr_t page_mask;
447extern uintptr_t page_size;
448extern int initialize_fio(char *envp[]);
449
de890a1e
SL
450#define FIO_GETOPT_JOB 0x89000000
451#define FIO_GETOPT_IOENGINE 0x98000000
07b3232d 452#define FIO_NR_OPTIONS (FIO_MAX_OPTS + 128)
8914a9d8 453
263e529f
JA
454/*
455 * ETA/status stuff
456 */
457extern void print_thread_status(void);
458extern void print_status_init(int);
0a428b23 459extern char *fio_uint_to_kmg(unsigned int val);
263e529f
JA
460
461/*
462 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
463 * will never back again. It may cycle between running/verififying/fsyncing.
464 * Once the thread reaches TD_EXITED, it is just waiting for the core to
465 * reap it.
466 */
467enum {
468 TD_NOT_CREATED = 0,
469 TD_CREATED,
470 TD_INITIALIZED,
b29ee5b3 471 TD_RAMP,
36d80bc7 472 TD_SETTING_UP,
263e529f 473 TD_RUNNING,
b0f65863 474 TD_PRE_READING,
263e529f
JA
475 TD_VERIFYING,
476 TD_FSYNCING,
3d434057 477 TD_FINISHING,
263e529f
JA
478 TD_EXITED,
479 TD_REAPED,
480};
481
b29ee5b3 482extern void td_set_runstate(struct thread_data *, int);
8edd973d
JA
483extern int td_bump_runstate(struct thread_data *, int);
484extern void td_restore_runstate(struct thread_data *, int);
485
cba5460c
JA
486/*
487 * Allow 60 seconds for a job to quit on its own, otherwise reap with
488 * a vengeance.
489 */
490#define FIO_REAP_TIMEOUT 60
491
cc0df00a
JA
492#define TERMINATE_ALL (-1)
493extern void fio_terminate_threads(int);
ebea2133 494extern void fio_mark_td_terminate(struct thread_data *);
b29ee5b3 495
2f9ade3c
JA
496/*
497 * Memory helpers
498 */
9a3f1100
JA
499extern int __must_check fio_pin_memory(struct thread_data *);
500extern void fio_unpin_memory(struct thread_data *);
b2fdda43 501extern int __must_check allocate_io_mem(struct thread_data *);
2f9ade3c 502extern void free_io_mem(struct thread_data *);
2bb3f0a7 503extern void free_threads_shm(void);
2f9ade3c 504
b29ee5b3
JA
505/*
506 * Reset stats after ramp time completes
507 */
508extern void reset_all_stats(struct thread_data *);
509
fb7b71a3
JA
510/*
511 * blktrace support
512 */
5e62c22a 513#ifdef FIO_HAVE_BLKTRACE
d95b34a6
JA
514extern int is_blktrace(const char *, int *);
515extern int load_blktrace(struct thread_data *, const char *, int);
5e62c22a 516#endif
fb7b71a3 517
3e260a46
JA
518/*
519 * Latency target helpers
520 */
521extern void lat_target_check(struct thread_data *);
522extern void lat_target_init(struct thread_data *);
6bb58215 523extern void lat_target_reset(struct thread_data *);
3e260a46 524
34572e28
JA
525#define for_each_td(td, i) \
526 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
53cdc686 527#define for_each_file(td, f, i) \
691c8fb0
JA
528 if ((td)->files_index) \
529 for ((i) = 0, (f) = (td)->files[0]; \
530 (i) < (td)->o.nr_files && ((f) = (td)->files[i]) != NULL; \
531 (i)++)
53cdc686 532
0032bf9f
JA
533#define fio_assert(td, cond) do { \
534 if (!(cond)) { \
340fd243 535 int *__foo = NULL; \
0032bf9f 536 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
ac18ea38 537 td_set_runstate((td), TD_EXITED); \
437c9b71 538 (td)->error = EFAULT; \
340fd243 539 *__foo = 0; \
0032bf9f
JA
540 } \
541} while (0)
542
12d9d841
JA
543static inline int fio_fill_issue_time(struct thread_data *td)
544{
545 if (td->o.read_iolog_file ||
546 !td->o.disable_clat || !td->o.disable_slat || !td->o.disable_bw)
547 return 1;
548
549 return 0;
550}
551
581e7141
JA
552static inline int __should_check_rate(struct thread_data *td,
553 enum fio_ddir ddir)
554{
555 struct thread_options *o = &td->o;
556
557 /*
558 * If some rate setting was given, we need to check it
559 */
560 if (o->rate[ddir] || o->ratemin[ddir] || o->rate_iops[ddir] ||
561 o->rate_iops_min[ddir])
562 return 1;
563
564 return 0;
565}
566
567static inline int should_check_rate(struct thread_data *td,
aa83321f 568 uint64_t *bytes_done)
581e7141
JA
569{
570 int ret = 0;
571
6eaf09d6
SL
572 if (bytes_done[DDIR_READ])
573 ret |= __should_check_rate(td, DDIR_READ);
574 if (bytes_done[DDIR_WRITE])
575 ret |= __should_check_rate(td, DDIR_WRITE);
576 if (bytes_done[DDIR_TRIM])
577 ret |= __should_check_rate(td, DDIR_TRIM);
581e7141
JA
578
579 return ret;
580}
581
74f4b020
JA
582static inline unsigned int td_max_bs(struct thread_data *td)
583{
584 unsigned int max_bs;
585
586 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
587 return max(td->o.max_bs[DDIR_TRIM], max_bs);
588}
589
8d916c94
JA
590static inline unsigned int td_min_bs(struct thread_data *td)
591{
592 unsigned int min_bs;
593
594 min_bs = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
595 return min(td->o.min_bs[DDIR_TRIM], min_bs);
596}
597
ca09be4b 598static inline int is_power_of_2(uint64_t val)
d529ee19
JA
599{
600 return (val != 0 && ((val & (val - 1)) == 0));
601}
602
e8462bd8
JA
603/*
604 * We currently only need to do locking if we have verifier threads
605 * accessing our internal structures too
606 */
607static inline void td_io_u_lock(struct thread_data *td)
608{
609 if (td->o.verify_async)
610 pthread_mutex_lock(&td->io_u_lock);
611}
612
613static inline void td_io_u_unlock(struct thread_data *td)
614{
615 if (td->o.verify_async)
616 pthread_mutex_unlock(&td->io_u_lock);
617}
618
619static inline void td_io_u_free_notify(struct thread_data *td)
620{
621 if (td->o.verify_async)
622 pthread_cond_signal(&td->free_cond);
623}
624
cca84643
JA
625extern const char *fio_get_arch_string(int);
626extern const char *fio_get_os_string(int);
627
e2c81040 628#ifdef FIO_INTERNAL
05775438 629#define ARRAY_SIZE(x) (sizeof((x)) / (sizeof((x)[0])))
e2c81040 630#endif
05775438 631
f3afa57e
JA
632enum {
633 FIO_OUTPUT_TERSE = 0,
634 FIO_OUTPUT_JSON,
635 FIO_OUTPUT_NORMAL,
636};
637
e25839d4
JA
638enum {
639 FIO_RAND_DIST_RANDOM = 0,
640 FIO_RAND_DIST_ZIPF,
925fee33 641 FIO_RAND_DIST_PARETO,
e25839d4
JA
642};
643
8055e41d
JA
644enum {
645 FIO_RAND_GEN_TAUSWORTHE = 0,
646 FIO_RAND_GEN_LFSR,
647};
648
c2acfbac
JA
649enum {
650 FIO_CPUS_SHARED = 0,
651 FIO_CPUS_SPLIT,
652};
653
ca09be4b
JA
654extern void exec_trigger(const char *);
655extern void check_trigger_file(void);
656
ebac4655 657#endif