Fix parsing of ioengine strings
[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"
a64e88da 39#include "stat.h"
ebac4655 40
609342ff
DL
41#ifdef FIO_HAVE_GUASI
42#include <guasi.h>
43#endif
44
417f0068
JA
45#ifdef FIO_HAVE_SOLARISAIO
46#include <sys/asynch.h>
47#endif
48
e9c047a0
JA
49/*
50 * What type of allocation to use for io buffers
51 */
52enum fio_memtype {
53 MEM_MALLOC = 0, /* ordinary malloc */
54 MEM_SHM, /* use shared memory segments */
74b025b0 55 MEM_SHMHUGE, /* use shared memory segments with huge pages */
e9c047a0 56 MEM_MMAP, /* use anonynomous mmap */
d0bdaf49 57 MEM_MMAPHUGE, /* memory mapped huge file */
e9c047a0
JA
58};
59
38dad62d
JA
60/*
61 * offset generator types
62 */
63enum {
64 RW_SEQ_SEQ = 0,
65 RW_SEQ_IDENT,
66};
67
564ca972
JA
68struct bssplit {
69 unsigned int bs;
70 unsigned char perc;
71};
72
2dc1bbeb 73struct thread_options {
b1ec1da6 74 int pad;
61697c37 75 char *description;
b4692828 76 char *name;
ef899b63 77 char *directory;
13f8e2d2 78 char *filename;
2dc1bbeb 79 char *opendir;
09629a90 80 char *ioengine;
413dd459 81 enum td_ddir td_ddir;
38dad62d 82 unsigned int rw_seq;
90fef2d1 83 unsigned int kb_base;
5736c10d 84 unsigned int ddir_seq_nr;
a66da7a2 85 long ddir_seq_add;
2dc1bbeb
JA
86 unsigned int iodepth;
87 unsigned int iodepth_low;
88 unsigned int iodepth_batch;
4950421a 89 unsigned int iodepth_batch_complete;
2dc1bbeb
JA
90
91 unsigned long long size;
7bb59102 92 unsigned int size_percent;
aa31f1f1 93 unsigned int fill_device;
2dc1bbeb
JA
94 unsigned long long file_size_low;
95 unsigned long long file_size_high;
96 unsigned long long start_offset;
97
98 unsigned int bs[2];
2b7a01d0 99 unsigned int ba[2];
2dc1bbeb
JA
100 unsigned int min_bs[2];
101 unsigned int max_bs[2];
720e84ad
JA
102 struct bssplit *bssplit[2];
103 unsigned int bssplit_nr[2];
2dc1bbeb
JA
104
105 unsigned int nr_files;
106 unsigned int open_files;
4d4e80f2 107 enum file_lock_mode file_lock_mode;
29c1349f 108 unsigned int lockfile_batch;
e9c047a0 109
9158d2f7
JA
110 unsigned int odirect;
111 unsigned int invalidate_cache;
112 unsigned int create_serialize;
113 unsigned int create_fsync;
814452bd 114 unsigned int create_on_open;
9158d2f7 115 unsigned int end_fsync;
afad68f7 116 unsigned int pre_read;
9158d2f7
JA
117 unsigned int sync_io;
118 unsigned int verify;
e84c73a8 119 unsigned int do_verify;
160b966d 120 unsigned int verifysort;
a59e170d
JA
121 unsigned int verify_interval;
122 unsigned int verify_offset;
0e92f873 123 char verify_pattern[MAX_PATTERN_SIZE];
90059d65 124 unsigned int verify_pattern_bytes;
a12a3b4d 125 unsigned int verify_fatal;
b463e936 126 unsigned int verify_dump;
e8462bd8 127 unsigned int verify_async;
9e144189
JA
128 unsigned long long verify_backlog;
129 unsigned int verify_batch;
9158d2f7
JA
130 unsigned int use_thread;
131 unsigned int unlink;
132 unsigned int do_disk_util;
133 unsigned int override_sync;
134 unsigned int rand_repeatable;
2615cc4b 135 unsigned int use_os_rand;
9158d2f7
JA
136 unsigned int write_lat_log;
137 unsigned int write_bw_log;
c8eeb9df 138 unsigned int write_iops_log;
bb8895e0 139 unsigned int norandommap;
2b386d25 140 unsigned int softrandommap;
690adba3 141 unsigned int bs_unaligned;
ebb1415f 142 unsigned int fsync_on_close;
e9c047a0 143
56bb17f2 144 unsigned int hugepage_size;
a00735e6 145 unsigned int rw_min_bs;
ebac4655 146 unsigned int thinktime;
48097d5c 147 unsigned int thinktime_spin;
9c1f7434 148 unsigned int thinktime_blocks;
ebac4655 149 unsigned int fsync_blocks;
5f9099ea 150 unsigned int fdatasync_blocks;
1ef2b6be 151 unsigned int barrier_blocks;
dce8b847 152 unsigned long long start_delay;
0db26797 153 unsigned long long timeout;
721938ae 154 unsigned long long ramp_time;
ebac4655 155 unsigned int overwrite;
ebac4655 156 unsigned int bw_avg_time;
c8eeb9df 157 unsigned int iops_avg_time;
ebac4655 158 unsigned int loops;
20dc95c4
JA
159 unsigned long long zone_size;
160 unsigned long long zone_skip;
e9c047a0 161 enum fio_memtype mem_type;
d529ee19 162 unsigned int mem_align;
2dc1bbeb 163
ebac4655 164 unsigned int stonewall;
b3d62a75 165 unsigned int new_group;
ebac4655 166 unsigned int numjobs;
ebac4655 167 os_cpu_mask_t cpumask;
375b2695 168 unsigned int cpumask_set;
e8462bd8
JA
169 os_cpu_mask_t verify_cpumask;
170 unsigned int verify_cpumask_set;
aea47d44 171 unsigned int iolog;
a6ccc7be 172 unsigned int rwmixcycle;
e47f799f 173 unsigned int rwmix[2];
b6f4d880 174 unsigned int nice;
0aabe160 175 unsigned int file_service_type;
b2560f3c 176 unsigned int group_reporting;
d2f3ac35 177 unsigned int fadvise_hint;
a596f047 178 enum fio_fallocate_mode fallocate_mode;
e9459e5a 179 unsigned int zero_buffers;
5973cafb 180 unsigned int refill_buffers;
fd68418e 181 unsigned int scramble_buffers;
cf4464ca 182 unsigned int time_based;
02af0988 183 unsigned int disable_lat;
9520ebb9
JA
184 unsigned int disable_clat;
185 unsigned int disable_slat;
186 unsigned int disable_bw;
993bf48b 187 unsigned int gtod_reduce;
be4ecfdf
JA
188 unsigned int gtod_cpu;
189 unsigned int gtod_offload;
c223da83 190 enum fio_cs clocksource;
64bbb865 191 unsigned int no_stall;
0d29de83
JA
192 unsigned int trim_percentage;
193 unsigned int trim_batch;
194 unsigned int trim_zero;
195 unsigned long long trim_backlog;
83349190
YH
196 unsigned int clat_percentiles;
197 unsigned int overwrite_plist;
802ad4a8 198 fio_fp64_t percentile_list[FIO_IO_U_LIST_MAX_LEN];
aea47d44 199
076efc7c
JA
200 char *read_iolog_file;
201 char *write_iolog_file;
e3cedca7
JA
202 char *bw_log_file;
203 char *lat_log_file;
c8eeb9df 204 char *iops_log_file;
d1c46c04 205 char *replay_redirect;
2dc1bbeb
JA
206
207 /*
208 * Pre-run and post-run shell
209 */
210 char *exec_prerun;
211 char *exec_postrun;
212
581e7141
JA
213 unsigned int rate[2];
214 unsigned int ratemin[2];
2dc1bbeb 215 unsigned int ratecycle;
581e7141
JA
216 unsigned int rate_iops[2];
217 unsigned int rate_iops_min[2];
2dc1bbeb
JA
218
219 char *ioscheduler;
220
221 /*
222 * CPU "io" cycle burner
223 */
224 unsigned int cpuload;
225 unsigned int cpucycle;
f2bba182
RR
226
227 /*
228 * I/O Error handling
229 */
230 unsigned int continue_on_error;
9ac8a797
JA
231
232 /*
233 * Benchmark profile type
234 */
79d16311 235 char *profile;
a696fa2a
JA
236
237 /*
238 * blkio cgroup support
239 */
a696fa2a
JA
240 char *cgroup;
241 unsigned int cgroup_weight;
7de87099 242 unsigned int cgroup_nodelete;
e0b0d892
JA
243
244 unsigned int uid;
245 unsigned int gid;
44f29692
JA
246
247 unsigned int sync_file_range;
2dc1bbeb
JA
248};
249
250/*
251 * This describes a single thread/process executing a fio job.
252 */
253struct thread_data {
254 struct thread_options o;
de890a1e 255 void *eo;
e4e33258 256 char verror[FIO_VERROR_SIZE];
2dc1bbeb
JA
257 pthread_t thread;
258 int thread_number;
259 int groupid;
260 struct thread_stat ts;
7b9f733a
JA
261
262 struct io_log *slat_log;
263 struct io_log *clat_log;
264 struct io_log *lat_log;
265 struct io_log *bw_log;
c8eeb9df 266 struct io_log *iops_log;
7b9f733a 267
f0505a14 268 uint64_t stat_io_bytes[2];
c8eeb9df
JA
269 struct timeval bw_sample_time;
270
271 uint64_t stat_io_blocks[2];
272 struct timeval iops_sample_time;
f0505a14 273
c8aaba19
JA
274 struct rusage ru_start;
275 struct rusage ru_end;
276
126d65c6 277 struct fio_file **files;
dd87b2c9 278 unsigned int files_size;
2dc1bbeb
JA
279 unsigned int files_index;
280 unsigned int nr_open_files;
1020a139 281 unsigned int nr_done_files;
2dc1bbeb
JA
282 unsigned int nr_normal_files;
283 union {
284 unsigned int next_file;
285 os_random_state_t next_file_state;
4c07ad86 286 struct frand_state __next_file_state;
2dc1bbeb
JA
287 };
288 int error;
20e354ef 289 int done;
2dc1bbeb
JA
290 pid_t pid;
291 char *orig_buffer;
292 size_t orig_buffer_size;
293 volatile int terminate;
294 volatile int runstate;
295 unsigned int ioprio;
ac684785 296 unsigned int ioprio_set;
2dc1bbeb 297 unsigned int last_was_sync;
9e144189 298 enum fio_ddir last_ddir;
2dc1bbeb
JA
299
300 char *mmapfile;
301 int mmapfd;
302
843a7413
JA
303 void *iolog_buf;
304 FILE *iolog_f;
ebac4655 305
da86774e 306 char *sysfs_root;
da86774e 307
3545a109 308 unsigned long rand_seeds[8];
5bfc35d7 309
4c07ad86
JA
310 union {
311 os_random_state_t bsrange_state;
312 struct frand_state __bsrange_state;
313 };
314 union {
315 os_random_state_t verify_state;
316 struct frand_state __verify_state;
317 };
318 union {
319 os_random_state_t trim_state;
320 struct frand_state __trim_state;
321 };
ebac4655 322
3545a109
JA
323 struct frand_state buf_state;
324
9e144189 325 unsigned int verify_batch;
0d29de83 326 unsigned int trim_batch;
9e144189 327
ebac4655
JA
328 int shm_id;
329
e9c047a0
JA
330 /*
331 * IO engine hooks, contains everything needed to submit an io_u
332 * to any of the available IO engines.
333 */
2866c82d 334 struct ioengine_ops *io_ops;
ebac4655 335
e9c047a0
JA
336 /*
337 * Current IO depth and list of free and busy io_u's.
338 */
ebac4655 339 unsigned int cur_depth;
d8005759 340 unsigned int io_u_queued;
01743ee1
JA
341 struct flist_head io_u_freelist;
342 struct flist_head io_u_busylist;
343 struct flist_head io_u_requeues;
e8462bd8
JA
344 pthread_mutex_t io_u_lock;
345 pthread_cond_t free_cond;
346
347 /*
348 * async verify offload
349 */
350 struct flist_head verify_list;
351 pthread_t *verify_threads;
352 unsigned int nr_verify_threads;
353 pthread_cond_t verify_cond;
354 int verify_thread_exit;
ebac4655 355
e9c047a0
JA
356 /*
357 * Rate state
358 */
1b8dbf25 359 unsigned long long rate_bps[2];
581e7141
JA
360 long rate_pending_usleep[2];
361 unsigned long rate_bytes[2];
362 unsigned long rate_blocks[2];
363 struct timeval lastrate[2];
ebac4655 364
ebac4655 365 unsigned long long total_io_size;
2e3bd4c2 366 unsigned long long fill_device_size;
ebac4655 367
755200a3 368 unsigned long io_issues[2];
9104f874 369 unsigned long long io_blocks[2];
c8eeb9df 370 unsigned long long this_io_blocks[2];
9104f874 371 unsigned long long io_bytes[2];
48f5abd3 372 unsigned long long io_skip_bytes;
9104f874 373 unsigned long long this_io_bytes[2];
079ad09b 374 unsigned long long zone_bytes;
cdd18ad8 375 struct fio_mutex *mutex;
ebac4655 376
e9c047a0
JA
377 /*
378 * State for random io, a bitmap of blocks done vs not done
379 */
4c07ad86
JA
380 union {
381 os_random_state_t random_state;
382 struct frand_state __random_state;
383 };
ebac4655 384
ebac4655
JA
385 struct timeval start; /* start of this loop */
386 struct timeval epoch; /* time job was started */
a61eddec 387 struct timeval last_issue;
993bf48b
JA
388 struct timeval tv_cache;
389 unsigned int tv_cache_nr;
390 unsigned int tv_cache_mask;
721938ae 391 unsigned int ramp_time_over;
ebac4655 392
e9c047a0
JA
393 /*
394 * read/write mixed workload state
395 */
4c07ad86
JA
396 union {
397 os_random_state_t rwmix_state;
398 struct frand_state __rwmix_state;
399 };
e4928662 400 unsigned long rwmix_issues;
e9c047a0 401 enum fio_ddir rwmix_ddir;
5736c10d 402 unsigned int ddir_seq_nr;
a6ccc7be 403
e9c047a0 404 /*
8de8f047
JA
405 * IO history logs for verification. We use a tree for sorting,
406 * if we are overwriting. Otherwise just use a fifo.
e9c047a0 407 */
4b87898e 408 struct rb_root io_hist_tree;
01743ee1 409 struct flist_head io_hist_list;
9e144189 410 unsigned long io_hist_len;
8de8f047
JA
411
412 /*
413 * For IO replaying
414 */
01743ee1 415 struct flist_head io_log_list;
433afcb4 416
0d29de83
JA
417 /*
418 * For tracking/handling discards
419 */
420 struct flist_head trim_list;
421 unsigned long trim_entries;
422
1907dbc6
JA
423 /*
424 * for fileservice, how often to switch to a new file
425 */
426 unsigned int file_service_nr;
427 unsigned int file_service_left;
428 struct fio_file *file_service_file;
9c60ce64 429
44f29692
JA
430 unsigned int sync_file_range_nr;
431
9c60ce64
JA
432 /*
433 * For generating file sizes
434 */
4c07ad86
JA
435 union {
436 os_random_state_t file_size_state;
437 struct frand_state __file_size_state;
438 };
f2bba182
RR
439
440 /*
441 * Error counts
442 */
443 unsigned int total_err_count;
444 int first_error;
15dc1934
JA
445
446 /*
447 * Can be overloaded by profiles
448 */
7eb36574 449 struct prof_io_ops prof_io_ops;
58c55ba0 450 void *prof_data;
ebac4655
JA
451};
452
e592a06b
AC
453/*
454 * when should interactive ETA output be generated
455 */
456enum {
457 FIO_ETA_AUTO,
458 FIO_ETA_ALWAYS,
459 FIO_ETA_NEVER,
460};
461
e1161c32 462#define __td_verror(td, err, msg, func) \
ebac4655 463 do { \
19abcd3d
JA
464 if ((td)->error) \
465 break; \
ebac4655
JA
466 int e = (err); \
467 (td)->error = e; \
f2bba182
RR
468 if (!(td)->first_error) \
469 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, func=%s, error=%s", __FILE__, __LINE__, (func), (msg)); \
ebac4655
JA
470 } while (0)
471
b990b5c0 472
f2bba182
RR
473#define td_clear_error(td) \
474 (td)->error = 0;
e1161c32
JA
475#define td_verror(td, err, func) \
476 __td_verror((td), (err), strerror((err)), (func))
477#define td_vmsg(td, err, msg, func) \
478 __td_verror((td), (err), (msg), (func))
b990b5c0 479
81179eec
JA
480#define __fio_stringify_1(x) #x
481#define __fio_stringify(x) __fio_stringify_1(x)
482
ebac4655 483extern int exitall_on_terminate;
11e950bd
JA
484extern unsigned int thread_number;
485extern unsigned int nr_process, nr_thread;
ebac4655
JA
486extern int shm_id;
487extern int groupid;
c6ae0a5b 488extern int terse_output;
53cdc686 489extern int temp_stall_ts;
1e97cce9 490extern unsigned long long mlock_size;
cfc99db7 491extern unsigned long page_mask, page_size;
4241ea8f 492extern int read_only;
e592a06b 493extern int eta_print;
d3eeeabc 494extern unsigned long done_secs;
01f06b63 495extern char *job_section;
be4ecfdf
JA
496extern int fio_gtod_offload;
497extern int fio_gtod_cpu;
c223da83 498extern enum fio_cs fio_clock_source;
a9523c6f 499extern int warnings_fatal;
f57a9c59 500extern int terse_version;
5c341e9a 501extern int is_backend;
a37f69b7 502extern int nr_clients;
e46d8091 503extern int log_syslog;
5e726d0a 504extern const char fio_version_string[];
802ad4a8 505extern const fio_fp64_t def_percentile_list[FIO_IO_U_LIST_MAX_LEN];
ebac4655
JA
506
507extern struct thread_data *threads;
508
7101d9c2
JA
509static inline void fio_ro_check(struct thread_data *td, struct io_u *io_u)
510{
511 assert(!(io_u->ddir == DDIR_WRITE && !td_write(td)));
512}
513
0ce8b119 514#define BLOCKS_PER_MAP (8 * sizeof(unsigned long))
aec2de20
JA
515#define TO_MAP_BLOCK(f, b) (b)
516#define RAND_MAP_IDX(f, b) (TO_MAP_BLOCK(f, b) / BLOCKS_PER_MAP)
517#define RAND_MAP_BIT(f, b) (TO_MAP_BLOCK(f, b) & (BLOCKS_PER_MAP - 1))
ebac4655 518
fca70358 519#define REAL_MAX_JOBS 2048
ebac4655 520
1ec99eea 521#define td_non_fatal_error(e) ((e) == EIO || (e) == EILSEQ)
f2bba182
RR
522
523static inline void update_error_count(struct thread_data *td, int err)
524{
525 td->total_err_count++;
526 if (td->total_err_count == 1)
527 td->first_error = err;
528}
529
87dc1ab1
JA
530static inline int should_fsync(struct thread_data *td)
531{
532 if (td->last_was_sync)
533 return 0;
2dc1bbeb 534 if (td->o.odirect)
87dc1ab1 535 return 0;
2dc1bbeb 536 if (td_write(td) || td_rw(td) || td->o.override_sync)
87dc1ab1
JA
537 return 1;
538
539 return 0;
540}
541
8914a9d8 542/*
214e1eca 543 * Init/option functions
8914a9d8 544 */
72cb971b 545extern int __must_check parse_options(int, char **);
50d16976 546extern int parse_jobs_ini(char *, int, int);
81179eec 547extern int parse_cmd_line(int, char **);
50d16976
JA
548extern int exec_run(void);
549extern void reset_fio_state(void);
3b8b7135 550extern int fio_options_parse(struct thread_data *, char **, int);
74929ac2 551extern void fio_keywords_init(void);
214e1eca 552extern int fio_cmd_option_parse(struct thread_data *, const char *, char *);
de890a1e 553extern int fio_cmd_ioengine_option_parse(struct thread_data *, const char *, char *);
214e1eca
JA
554extern void fio_fill_default_options(struct thread_data *);
555extern int fio_show_option_help(const char *);
de890a1e 556extern void fio_options_set_ioengine_opts(struct option *long_options, struct thread_data *td);
214e1eca 557extern void fio_options_dup_and_init(struct option *);
de890a1e
SL
558extern void fio_options_mem_dupe(struct thread_data *);
559extern void options_mem_dupe(void *data, struct fio_option *options);
5bfc35d7 560extern void td_fill_rand_seeds(struct thread_data *);
79d16311 561extern void add_job_opts(const char **);
1ec3d69b 562extern char *num2str(unsigned long, int, int, int);
de890a1e 563extern int ioengine_load(struct thread_data *);
1ec3d69b 564
de890a1e
SL
565#define FIO_GETOPT_JOB 0x89000000
566#define FIO_GETOPT_IOENGINE 0x98000000
07b3232d 567#define FIO_NR_OPTIONS (FIO_MAX_OPTS + 128)
8914a9d8 568
263e529f
JA
569/*
570 * ETA/status stuff
571 */
572extern void print_thread_status(void);
573extern void print_status_init(int);
574
575/*
576 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
577 * will never back again. It may cycle between running/verififying/fsyncing.
578 * Once the thread reaches TD_EXITED, it is just waiting for the core to
579 * reap it.
580 */
581enum {
582 TD_NOT_CREATED = 0,
583 TD_CREATED,
584 TD_INITIALIZED,
b29ee5b3 585 TD_RAMP,
263e529f 586 TD_RUNNING,
b0f65863 587 TD_PRE_READING,
263e529f
JA
588 TD_VERIFYING,
589 TD_FSYNCING,
590 TD_EXITED,
591 TD_REAPED,
592};
593
b29ee5b3 594extern void td_set_runstate(struct thread_data *, int);
cc0df00a
JA
595#define TERMINATE_ALL (-1)
596extern void fio_terminate_threads(int);
b29ee5b3 597
2f9ade3c
JA
598/*
599 * Memory helpers
600 */
b2fdda43 601extern int __must_check fio_pin_memory(void);
2f9ade3c 602extern void fio_unpin_memory(void);
b2fdda43 603extern int __must_check allocate_io_mem(struct thread_data *);
2f9ade3c
JA
604extern void free_io_mem(struct thread_data *);
605
b29ee5b3
JA
606/*
607 * Reset stats after ramp time completes
608 */
609extern void reset_all_stats(struct thread_data *);
610
fb7b71a3
JA
611/*
612 * blktrace support
613 */
5e62c22a 614#ifdef FIO_HAVE_BLKTRACE
fb7b71a3
JA
615extern int is_blktrace(const char *);
616extern int load_blktrace(struct thread_data *, const char *);
5e62c22a 617#endif
fb7b71a3 618
2866c82d
JA
619/*
620 * Mark unused variables passed to ops functions as unused, to silence gcc
621 */
622#define fio_unused __attribute((__unused__))
5f350952
JA
623#define fio_init __attribute__((constructor))
624#define fio_exit __attribute__((destructor))
2866c82d 625
34572e28
JA
626#define for_each_td(td, i) \
627 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
53cdc686 628#define for_each_file(td, f, i) \
691c8fb0
JA
629 if ((td)->files_index) \
630 for ((i) = 0, (f) = (td)->files[0]; \
631 (i) < (td)->o.nr_files && ((f) = (td)->files[i]) != NULL; \
632 (i)++)
53cdc686 633
0032bf9f
JA
634#define fio_assert(td, cond) do { \
635 if (!(cond)) { \
340fd243 636 int *__foo = NULL; \
0032bf9f 637 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
ac18ea38 638 td_set_runstate((td), TD_EXITED); \
437c9b71 639 (td)->error = EFAULT; \
340fd243 640 *__foo = 0; \
0032bf9f
JA
641 } \
642} while (0)
643
12d9d841
JA
644static inline int fio_fill_issue_time(struct thread_data *td)
645{
646 if (td->o.read_iolog_file ||
647 !td->o.disable_clat || !td->o.disable_slat || !td->o.disable_bw)
648 return 1;
649
650 return 0;
651}
652
581e7141
JA
653static inline int __should_check_rate(struct thread_data *td,
654 enum fio_ddir ddir)
655{
656 struct thread_options *o = &td->o;
657
658 /*
659 * If some rate setting was given, we need to check it
660 */
661 if (o->rate[ddir] || o->ratemin[ddir] || o->rate_iops[ddir] ||
662 o->rate_iops_min[ddir])
663 return 1;
664
665 return 0;
666}
667
668static inline int should_check_rate(struct thread_data *td,
669 unsigned long *bytes_done)
670{
671 int ret = 0;
672
673 if (bytes_done[0])
674 ret |= __should_check_rate(td, 0);
675 if (bytes_done[1])
676 ret |= __should_check_rate(td, 1);
677
678 return ret;
679}
680
d529ee19
JA
681static inline int is_power_of_2(unsigned int val)
682{
683 return (val != 0 && ((val & (val - 1)) == 0));
684}
685
e8462bd8
JA
686/*
687 * We currently only need to do locking if we have verifier threads
688 * accessing our internal structures too
689 */
690static inline void td_io_u_lock(struct thread_data *td)
691{
692 if (td->o.verify_async)
693 pthread_mutex_lock(&td->io_u_lock);
694}
695
696static inline void td_io_u_unlock(struct thread_data *td)
697{
698 if (td->o.verify_async)
699 pthread_mutex_unlock(&td->io_u_lock);
700}
701
702static inline void td_io_u_free_notify(struct thread_data *td)
703{
704 if (td->o.verify_async)
705 pthread_cond_signal(&td->free_cond);
706}
707
cca84643
JA
708extern const char *fio_get_arch_string(int);
709extern const char *fio_get_os_string(int);
710
ebac4655 711#endif