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