Streamline thread_data data direction setting and checking
[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>
ebac4655
JA
14
15#include "list.h"
16#include "md5.h"
17#include "crc32.h"
18#include "arch.h"
19#include "os.h"
20
b6959b55 21#ifdef FIO_HAVE_SYSLET
a4f4fdd7 22#include "syslet.h"
b6959b55 23#endif
a4f4fdd7 24
1e97cce9
JA
25enum fio_ddir {
26 DDIR_READ = 0,
27 DDIR_WRITE,
28 DDIR_SYNC,
29};
30
413dd459
JA
31enum td_ddir {
32 TD_DDIR_READ = 1 << 0,
33 TD_DDIR_WRITE = 1 << 1,
34 TD_DDIR_RAND = 1 << 2,
35 TD_DDIR_RW = TD_DDIR_READ | TD_DDIR_WRITE,
36};
37
1c9e06ee
JA
38/*
39 * Use for maintaining statistics
40 */
ebac4655 41struct io_stat {
ebac4655
JA
42 unsigned long max_val;
43 unsigned long min_val;
44 unsigned long samples;
68704084
JA
45
46 double mean;
47 double S;
ebac4655
JA
48};
49
1c9e06ee
JA
50/*
51 * A single data sample
52 */
ebac4655
JA
53struct io_sample {
54 unsigned long time;
55 unsigned long val;
1e97cce9 56 enum fio_ddir ddir;
ebac4655
JA
57};
58
1c9e06ee
JA
59/*
60 * Dynamically growing data sample log
61 */
ebac4655
JA
62struct io_log {
63 unsigned long nr_samples;
64 unsigned long max_samples;
65 struct io_sample *log;
66};
67
1c9e06ee
JA
68/*
69 * When logging io actions, this matches a single sent io_u
70 */
ebac4655
JA
71struct io_piece {
72 struct list_head list;
53cdc686 73 struct fio_file *file;
ebac4655 74 unsigned long long offset;
a4f4fdd7 75 unsigned long len;
1e97cce9 76 enum fio_ddir ddir;
ebac4655
JA
77};
78
a4f4fdd7
JA
79#ifdef FIO_HAVE_SYSLET
80struct syslet_req {
81 struct syslet_uatom atom;
a4f4fdd7
JA
82 long ret;
83};
84#endif
85
0c6e7517
JA
86enum {
87 IO_U_F_FREE = 1 << 0,
88 IO_U_F_FLIGHT = 1 << 1,
89};
90
ebac4655
JA
91/*
92 * The io unit
93 */
94struct io_u {
95 union {
96#ifdef FIO_HAVE_LIBAIO
97 struct iocb iocb;
98#endif
99#ifdef FIO_HAVE_POSIXAIO
100 struct aiocb aiocb;
101#endif
102#ifdef FIO_HAVE_SGIO
103 struct sg_io_hdr hdr;
a4f4fdd7
JA
104#endif
105#ifdef FIO_HAVE_SYSLET
a2e1b08a 106 struct syslet_req req;
ebac4655
JA
107#endif
108 };
109 struct timeval start_time;
110 struct timeval issue_time;
111
1c9e06ee
JA
112 /*
113 * Allocated/set buffer and length
114 */
6b9cea23 115 void *buf;
a4f4fdd7 116 unsigned long buflen;
ebac4655
JA
117 unsigned long long offset;
118
1c9e06ee
JA
119 /*
120 * IO engine state, may be different from above when we get
121 * partial transfers / residual data counts
122 */
cec6b55d 123 void *xfer_buf;
a4f4fdd7 124 unsigned long xfer_buflen;
cec6b55d 125
ebac4655
JA
126 unsigned int resid;
127 unsigned int error;
128
1e97cce9 129 enum fio_ddir ddir;
ebac4655 130
dfd7bc2c
JA
131 /*
132 * io engine private data
133 */
134 union {
135 unsigned int index;
136 unsigned int seen;
137 };
138
0c6e7517
JA
139 unsigned int flags;
140
53cdc686
JA
141 struct fio_file *file;
142
ebac4655
JA
143 struct list_head list;
144};
145
36167d82
JA
146/*
147 * io_ops->queue() return values
148 */
149enum {
150 FIO_Q_COMPLETED = 0, /* completed sync */
151 FIO_Q_QUEUED = 1, /* queued, will complete async */
755200a3 152 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
36167d82
JA
153};
154
ebac4655
JA
155#define FIO_HDR_MAGIC 0xf00baaef
156
157enum {
1c9e06ee
JA
158 VERIFY_NONE = 0, /* no verification */
159 VERIFY_MD5, /* md5 sum data blocks */
160 VERIFY_CRC32, /* crc32 sum data blocks */
ebac4655
JA
161};
162
1c9e06ee
JA
163/*
164 * A header structure associated with each checksummed data block
165 */
ebac4655
JA
166struct verify_header {
167 unsigned int fio_magic;
168 unsigned int len;
169 unsigned int verify_type;
170 union {
171 char md5_digest[MD5_HASH_WORDS * 4];
172 unsigned long crc32;
173 };
174};
175
176struct group_run_stats {
9104f874
JA
177 unsigned long long max_run[2], min_run[2];
178 unsigned long long max_bw[2], min_bw[2];
e9b2a3fa 179 unsigned long long io_kb[2];
9104f874 180 unsigned long long agg[2];
ebac4655
JA
181};
182
e9c047a0
JA
183/*
184 * What type of allocation to use for io buffers
185 */
186enum fio_memtype {
187 MEM_MALLOC = 0, /* ordinary malloc */
188 MEM_SHM, /* use shared memory segments */
74b025b0 189 MEM_SHMHUGE, /* use shared memory segments with huge pages */
e9c047a0 190 MEM_MMAP, /* use anonynomous mmap */
d0bdaf49 191 MEM_MMAPHUGE, /* memory mapped huge file */
e9c047a0
JA
192};
193
194/*
195 * The type of object we are working on
196 */
197enum fio_filetype {
1c9e06ee
JA
198 FIO_TYPE_FILE = 1, /* plain file */
199 FIO_TYPE_BD, /* block device */
200 FIO_TYPE_CHAR, /* character device */
e9c047a0
JA
201};
202
2866c82d 203enum fio_ioengine_flags {
1c9e06ee
JA
204 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
205 FIO_CPUIO = 1 << 1, /* cpu burner, doesn't do real io */
206 FIO_MMAPIO = 1 << 2, /* uses memory mapped io */
207 FIO_RAWIO = 1 << 3, /* some sort of direct/raw io */
208 FIO_NETIO = 1 << 4, /* networked io */
209 FIO_NULLIO = 1 << 5, /* no real data transfer (cpu/null) */
e9c047a0
JA
210};
211
1c9e06ee
JA
212/*
213 * Each thread_data structure has a number of files associated with it,
214 * this structure holds state information for a single file.
215 */
53cdc686
JA
216struct fio_file {
217 /*
218 * A file may not be a file descriptor, let the io engine decide
219 */
220 union {
221 unsigned long file_data;
e26f8f7a 222 int fd;
53cdc686
JA
223 };
224 char *file_name;
225 void *mmap;
226 unsigned long long file_size;
227 unsigned long long real_file_size;
228 unsigned long long file_offset;
229 unsigned long long last_pos;
02bcaa8c 230 unsigned long long last_completed_pos;
53cdc686 231
1c9e06ee
JA
232 /*
233 * block map for random io
234 */
53cdc686
JA
235 unsigned long *file_map;
236 unsigned int num_maps;
1c9e06ee 237 unsigned int last_free_lookup;
9b031dc8
JA
238
239 unsigned int unlink;
53cdc686
JA
240};
241
079ad09b
JA
242struct thread_stat {
243 struct io_log *slat_log;
244 struct io_log *clat_log;
245 struct io_log *bw_log;
246
247 /*
248 * bandwidth and latency stats
249 */
250 struct io_stat clat_stat[2]; /* completion latency */
251 struct io_stat slat_stat[2]; /* submission latency */
252 struct io_stat bw_stat[2]; /* bandwidth stats */
253
254 unsigned long long stat_io_bytes[2];
255 struct timeval stat_sample_time[2];
256
257 /*
258 * fio system usage accounting
259 */
260 struct rusage ru_start;
261 struct rusage ru_end;
262 unsigned long usr_time;
263 unsigned long sys_time;
264 unsigned long ctx;
265};
266
71619dc2
JA
267/*
268 * How many depth levels to log
269 */
270#define FIO_IO_U_MAP_NR 8
ec118304 271#define FIO_IO_U_LAT_NR 12
71619dc2 272
e9c047a0
JA
273/*
274 * This describes a single thread/process executing a fio job.
275 */
ebac4655 276struct thread_data {
61697c37 277 char *description;
b4692828 278 char *name;
ef899b63 279 char *directory;
13f8e2d2 280 char *filename;
ebac4655
JA
281 char verror[80];
282 pthread_t thread;
283 int thread_number;
284 int groupid;
079ad09b 285 struct thread_stat ts;
e9c047a0 286 enum fio_filetype filetype;
53cdc686
JA
287 struct fio_file *files;
288 unsigned int nr_files;
13f8e2d2 289 unsigned int nr_uniq_files;
0aabe160
JA
290 union {
291 unsigned int next_file;
292 os_random_state_t next_file_state;
293 };
ebac4655 294 int error;
ebac4655
JA
295 pid_t pid;
296 char *orig_buffer;
297 size_t orig_buffer_size;
298 volatile int terminate;
299 volatile int runstate;
413dd459 300 enum td_ddir td_ddir;
ebac4655 301 unsigned int ioprio;
87dc1ab1 302 unsigned int last_was_sync;
e9c047a0 303
9158d2f7
JA
304 unsigned int odirect;
305 unsigned int invalidate_cache;
306 unsigned int create_serialize;
307 unsigned int create_fsync;
308 unsigned int end_fsync;
309 unsigned int sync_io;
310 unsigned int verify;
311 unsigned int use_thread;
312 unsigned int unlink;
313 unsigned int do_disk_util;
314 unsigned int override_sync;
315 unsigned int rand_repeatable;
316 unsigned int write_lat_log;
317 unsigned int write_bw_log;
bb8895e0 318 unsigned int norandommap;
690adba3 319 unsigned int bs_unaligned;
e9c047a0 320
a00735e6
JA
321 unsigned int bs[2];
322 unsigned int min_bs[2];
323 unsigned int max_bs[2];
56bb17f2 324 unsigned int hugepage_size;
a00735e6 325 unsigned int rw_min_bs;
ebac4655 326 unsigned int thinktime;
48097d5c 327 unsigned int thinktime_spin;
9c1f7434 328 unsigned int thinktime_blocks;
ebac4655
JA
329 unsigned int fsync_blocks;
330 unsigned int start_delay;
906c8d75 331 unsigned long timeout;
ebac4655 332 unsigned int overwrite;
ebac4655 333 unsigned int bw_avg_time;
ebac4655 334 unsigned int loops;
20dc95c4
JA
335 unsigned long long zone_size;
336 unsigned long long zone_skip;
e9c047a0 337 enum fio_memtype mem_type;
313cb206
JA
338 char *mmapfile;
339 int mmapfd;
ebac4655
JA
340 unsigned int stonewall;
341 unsigned int numjobs;
ebac4655 342 unsigned int iodepth;
e916b390 343 unsigned int iodepth_low;
ebac4655 344 os_cpu_mask_t cpumask;
aea47d44 345 unsigned int iolog;
843a7413 346 unsigned int read_iolog;
a6ccc7be
JA
347 unsigned int rwmixcycle;
348 unsigned int rwmixread;
e1f36503 349 unsigned int rwmixwrite;
b6f4d880 350 unsigned int nice;
0aabe160 351 unsigned int file_service_type;
aea47d44 352
076efc7c
JA
353 char *read_iolog_file;
354 char *write_iolog_file;
843a7413
JA
355 void *iolog_buf;
356 FILE *iolog_f;
ebac4655 357
da86774e 358 char *sysfs_root;
da86774e
JA
359 char *ioscheduler;
360
6dfd46b9
JA
361 os_random_state_t bsrange_state;
362 os_random_state_t verify_state;
ebac4655
JA
363
364 int shm_id;
365
e9c047a0
JA
366 /*
367 * IO engine hooks, contains everything needed to submit an io_u
368 * to any of the available IO engines.
369 */
2866c82d 370 struct ioengine_ops *io_ops;
ebac4655 371
e9c047a0
JA
372 /*
373 * Current IO depth and list of free and busy io_u's.
374 */
ebac4655 375 unsigned int cur_depth;
71619dc2 376 unsigned int io_u_map[FIO_IO_U_MAP_NR];
ec118304 377 unsigned int io_u_lat[FIO_IO_U_LAT_NR];
71619dc2 378 unsigned long total_io_u;
ebac4655
JA
379 struct list_head io_u_freelist;
380 struct list_head io_u_busylist;
755200a3 381 struct list_head io_u_requeues;
ebac4655 382
e9c047a0
JA
383 /*
384 * Rate state
385 */
ebac4655
JA
386 unsigned int rate;
387 unsigned int ratemin;
388 unsigned int ratecycle;
389 unsigned long rate_usec_cycle;
390 long rate_pending_usleep;
391 unsigned long rate_bytes;
392 struct timeval lastrate;
393
394 unsigned long runtime[2]; /* msec */
395 unsigned long long io_size;
53cdc686
JA
396 unsigned long long total_file_size;
397 unsigned long long start_offset;
ebac4655
JA
398 unsigned long long total_io_size;
399
755200a3 400 unsigned long io_issues[2];
9104f874
JA
401 unsigned long long io_blocks[2];
402 unsigned long long io_bytes[2];
9104f874 403 unsigned long long this_io_bytes[2];
079ad09b 404 unsigned long long zone_bytes;
bbfd6b00 405 volatile int mutex;
ebac4655 406
e9c047a0
JA
407 /*
408 * State for random io, a bitmap of blocks done vs not done
409 */
6dfd46b9 410 os_random_state_t random_state;
ebac4655 411
b990b5c0
JA
412 /*
413 * CPU "io" cycle burner
414 */
415 unsigned int cpuload;
416 unsigned int cpucycle;
417
ebac4655
JA
418 struct timeval start; /* start of this loop */
419 struct timeval epoch; /* time job was started */
69008999 420 struct timeval end_time;/* time job ended */
ebac4655 421
e9c047a0
JA
422 /*
423 * read/write mixed workload state
424 */
6dfd46b9 425 os_random_state_t rwmix_state;
a6ccc7be 426 struct timeval rwmix_switch;
e9c047a0 427 enum fio_ddir rwmix_ddir;
a6ccc7be 428
4e0ba8af
JA
429 /*
430 * Pre-run and post-run shell
431 */
432 char *exec_prerun;
433 char *exec_postrun;
434
e9c047a0
JA
435 /*
436 * IO historic logs
437 */
ebac4655 438 struct list_head io_hist_list;
aea47d44 439 struct list_head io_log_list;
433afcb4
JA
440
441 /*
442 * timeout handling
443 */
444 struct timeval timeout_end;
445 struct itimerval timer;
ebac4655
JA
446};
447
0aabe160
JA
448/*
449 * roundrobin available files, or choose one at random.
450 */
451enum {
452 FIO_FSERVICE_RANDOM = 1,
453 FIO_FSERVICE_RR = 2,
454};
455
433afcb4
JA
456/*
457 * 30 second per-io_u timeout, with 5 second intervals to avoid resetting
458 * the timer on each queue operation.
459 */
460#define IO_U_TIMEOUT_INC 5
461#define IO_U_TIMEOUT 30
462
e1161c32 463#define __td_verror(td, err, msg, func) \
ebac4655 464 do { \
19abcd3d
JA
465 if ((td)->error) \
466 break; \
ebac4655
JA
467 int e = (err); \
468 (td)->error = e; \
e1161c32 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
e1161c32
JA
473#define td_verror(td, err, func) \
474 __td_verror((td), (err), strerror((err)), (func))
475#define td_vmsg(td, err, msg, func) \
476 __td_verror((td), (err), (msg), (func))
b990b5c0 477
ebac4655
JA
478extern int exitall_on_terminate;
479extern int thread_number;
480extern int shm_id;
481extern int groupid;
c6ae0a5b 482extern int terse_output;
eb8bbf48
JA
483extern FILE *f_out;
484extern FILE *f_err;
53cdc686 485extern int temp_stall_ts;
1e97cce9 486extern unsigned long long mlock_size;
ebac4655
JA
487
488extern struct thread_data *threads;
489
413dd459
JA
490#define td_read(td) ((td)->td_ddir & TD_DDIR_READ)
491#define td_write(td) ((td)->td_ddir & TD_DDIR_WRITE)
492#define td_rw(td) (((td)->td_ddir & TD_DDIR_RW) == TD_DDIR_RW)
493#define td_random(td) ((td)->td_ddir & TD_DDIR_RAND)
ebac4655
JA
494
495#define BLOCKS_PER_MAP (8 * sizeof(long))
a00735e6 496#define TO_MAP_BLOCK(td, f, b) ((b) - ((f)->file_offset / (td)->rw_min_bs))
53cdc686
JA
497#define RAND_MAP_IDX(td, f, b) (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
498#define RAND_MAP_BIT(td, f, b) (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
ebac4655
JA
499
500#define MAX_JOBS (1024)
501
87dc1ab1
JA
502static inline int should_fsync(struct thread_data *td)
503{
504 if (td->last_was_sync)
505 return 0;
506 if (td->odirect)
507 return 0;
508 if (td_write(td) || td_rw(td) || td->override_sync)
509 return 1;
510
511 return 0;
512}
513
1c9e06ee
JA
514/*
515 * Disk utils as read in /sys/block/<dev>/stat
516 */
ebac4655
JA
517struct disk_util_stat {
518 unsigned ios[2];
519 unsigned merges[2];
520 unsigned long long sectors[2];
521 unsigned ticks[2];
522 unsigned io_ticks;
523 unsigned time_in_queue;
524};
525
1c9e06ee
JA
526/*
527 * Per-device disk util management
528 */
ebac4655
JA
529struct disk_util {
530 struct list_head list;
531
532 char *name;
533 char path[256];
534 dev_t dev;
535
536 struct disk_util_stat dus;
537 struct disk_util_stat last_dus;
538
539 unsigned long msec;
540 struct timeval time;
541};
542
1c9e06ee 543/*
97601024 544 * Callback for io completion
1c9e06ee 545 */
97601024 546typedef int (endio_handler)(struct io_u *);
ebac4655
JA
547
548#define DISK_UTIL_MSEC (250)
549
6a0106a0
JA
550#ifndef min
551#define min(a, b) ((a) < (b) ? (a) : (b))
552#endif
a00735e6
JA
553#ifndef max
554#define max(a, b) ((a) > (b) ? (a) : (b))
555#endif
6a0106a0 556
6796209a
JA
557/*
558 * Log exports
559 */
72cb971b 560extern int __must_check read_iolog_get(struct thread_data *, struct io_u *);
6796209a 561extern void write_iolog_put(struct thread_data *, struct io_u *);
72cb971b 562extern int __must_check init_iolog(struct thread_data *td);
6796209a
JA
563extern void log_io_piece(struct thread_data *, struct io_u *);
564extern void prune_io_piece_log(struct thread_data *);
565extern void write_iolog_close(struct thread_data *);
566
567/*
568 * Logging
569 */
1e97cce9
JA
570extern void add_clat_sample(struct thread_data *, enum fio_ddir, unsigned long);
571extern void add_slat_sample(struct thread_data *, enum fio_ddir, unsigned long);
572extern void add_bw_sample(struct thread_data *, enum fio_ddir, struct timeval *);
6796209a
JA
573extern void show_run_stats(void);
574extern void init_disk_util(struct thread_data *);
575extern void update_rusage_stat(struct thread_data *);
576extern void update_io_ticks(void);
577extern void disk_util_timer_arm(void);
8914a9d8
JA
578extern void setup_log(struct io_log **);
579extern void finish_log(struct thread_data *, struct io_log *, const char *);
bb3884d8 580extern void __finish_log(struct io_log *, const char *);
8914a9d8 581extern int setup_rate(struct thread_data *);
bb3884d8
JA
582extern struct io_log *agg_io_log[2];
583extern int write_bw_log;
584extern void add_agg_sample(unsigned long, enum fio_ddir);
6796209a
JA
585
586/*
587 * Time functions
588 */
589extern unsigned long utime_since(struct timeval *, struct timeval *);
69008999 590extern unsigned long utime_since_now(struct timeval *);
6796209a
JA
591extern unsigned long mtime_since(struct timeval *, struct timeval *);
592extern unsigned long mtime_since_now(struct timeval *);
593extern unsigned long time_since_now(struct timeval *);
263e529f 594extern unsigned long mtime_since_genesis(void);
b990b5c0 595extern void __usec_sleep(unsigned int);
6796209a 596extern void usec_sleep(struct thread_data *, unsigned long);
413dd459 597extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
6043c579 598extern void fill_start_time(struct timeval *);
02bcaa8c 599extern void fio_gettime(struct timeval *, void *);
a2f77c9f 600extern void set_genesis_time(void);
6796209a 601
8914a9d8
JA
602/*
603 * Init functions
604 */
72cb971b
JA
605extern int __must_check parse_options(int, char **);
606extern int __must_check init_random_state(struct thread_data *);
8914a9d8 607
53cdc686
JA
608/*
609 * File setup/shutdown
610 */
611extern void close_files(struct thread_data *);
b2fdda43
JA
612extern int __must_check setup_files(struct thread_data *);
613extern int __must_check open_files(struct thread_data *);
614extern int __must_check file_invalidate_cache(struct thread_data *, struct fio_file *);
53cdc686 615
263e529f
JA
616/*
617 * ETA/status stuff
618 */
619extern void print_thread_status(void);
620extern void print_status_init(int);
621
622/*
623 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
624 * will never back again. It may cycle between running/verififying/fsyncing.
625 * Once the thread reaches TD_EXITED, it is just waiting for the core to
626 * reap it.
627 */
628enum {
629 TD_NOT_CREATED = 0,
630 TD_CREATED,
631 TD_INITIALIZED,
632 TD_RUNNING,
633 TD_VERIFYING,
634 TD_FSYNCING,
635 TD_EXITED,
636 TD_REAPED,
637};
638
e29d1b70
JA
639/*
640 * Verify helpers
641 */
642extern void populate_verify_io_u(struct thread_data *, struct io_u *);
b2fdda43
JA
643extern int __must_check get_next_verify(struct thread_data *td, struct io_u *);
644extern int __must_check verify_io_u(struct io_u *);
e29d1b70 645
2f9ade3c
JA
646/*
647 * Memory helpers
648 */
b2fdda43 649extern int __must_check fio_pin_memory(void);
2f9ade3c 650extern void fio_unpin_memory(void);
b2fdda43 651extern int __must_check allocate_io_mem(struct thread_data *);
2f9ade3c
JA
652extern void free_io_mem(struct thread_data *);
653
10ba535a
JA
654/*
655 * io unit handling
656 */
657#define queue_full(td) list_empty(&(td)->io_u_freelist)
658extern struct io_u *__get_io_u(struct thread_data *);
3d7c391d 659extern struct io_u *get_io_u(struct thread_data *);
10ba535a 660extern void put_io_u(struct thread_data *, struct io_u *);
755200a3 661extern void requeue_io_u(struct thread_data *, struct io_u **);
b2fdda43
JA
662extern long __must_check io_u_sync_complete(struct thread_data *, struct io_u *, endio_handler *);
663extern long __must_check io_u_queued_complete(struct thread_data *, int, endio_handler *);
7e77dd02 664extern void io_u_queued(struct thread_data *, struct io_u *);
433afcb4
JA
665extern void io_u_init_timeout(void);
666extern void io_u_set_timeout(struct thread_data *);
10ba535a
JA
667
668/*
669 * io engine entry points
670 */
b2fdda43
JA
671extern int __must_check td_io_init(struct thread_data *);
672extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
673extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
674extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
675extern int __must_check td_io_getevents(struct thread_data *, int, int, struct timespec *);
676extern int __must_check td_io_commit(struct thread_data *);
10ba535a 677
bbfd6b00
JA
678/*
679 * This is a pretty crappy semaphore implementation, but with the use that fio
680 * has (just signalling start/go conditions), it doesn't have to be better.
681 * Naturally this would not work for any type of contended semaphore or
682 * for real locking.
683 */
1056eaad 684static inline void fio_sem_init(volatile int *sem, int val)
bbfd6b00
JA
685{
686 *sem = val;
687}
688
1056eaad 689static inline void fio_sem_down(volatile int *sem)
bbfd6b00
JA
690{
691 while (*sem == 0)
692 usleep(10000);
693
694 (*sem)--;
695}
696
1056eaad 697static inline void fio_sem_up(volatile int *sem)
bbfd6b00
JA
698{
699 (*sem)++;
700}
701
3b70d7e5
JA
702/*
703 * If logging output to a file, stderr should go to both stderr and f_err
704 */
705#define log_err(args...) do { \
706 fprintf(f_err, ##args); \
707 if (f_err != stderr) \
708 fprintf(stderr, ##args); \
709 } while (0)
710
2866c82d 711struct ioengine_ops {
5f350952 712 struct list_head list;
2866c82d
JA
713 char name[16];
714 int version;
715 int flags;
ea2877a4 716 int (*setup)(struct thread_data *);
2866c82d
JA
717 int (*init)(struct thread_data *);
718 int (*prep)(struct thread_data *, struct io_u *);
719 int (*queue)(struct thread_data *, struct io_u *);
755200a3 720 int (*commit)(struct thread_data *);
2866c82d
JA
721 int (*getevents)(struct thread_data *, int, int, struct timespec *);
722 struct io_u *(*event)(struct thread_data *, int);
723 int (*cancel)(struct thread_data *, struct io_u *);
724 void (*cleanup)(struct thread_data *);
2866c82d
JA
725 void *data;
726 void *dlhandle;
36167d82 727 unsigned long priv;
2866c82d
JA
728};
729
755200a3 730#define FIO_IOOPS_VERSION 5
2866c82d 731
b4692828 732extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
b2fdda43 733extern void register_ioengine(struct ioengine_ops *);
5f350952 734extern void unregister_ioengine(struct ioengine_ops *);
2866c82d
JA
735extern void close_ioengine(struct thread_data *);
736
737/*
738 * Mark unused variables passed to ops functions as unused, to silence gcc
739 */
740#define fio_unused __attribute((__unused__))
5f350952
JA
741#define fio_init __attribute__((constructor))
742#define fio_exit __attribute__((destructor))
2866c82d 743
34572e28
JA
744#define for_each_td(td, i) \
745 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
53cdc686 746#define for_each_file(td, f, i) \
34572e28 747 for ((i) = 0, (f) = &(td)->files[0]; (i) < (int) (td)->nr_files; (i)++, (f)++)
53cdc686 748
0032bf9f
JA
749#define fio_assert(td, cond) do { \
750 if (!(cond)) { \
340fd243 751 int *__foo = NULL; \
0032bf9f
JA
752 fprintf(stderr, "file:%s:%d, assert %s failed\n", __FILE__, __LINE__, #cond); \
753 (td)->runstate = TD_EXITED; \
437c9b71 754 (td)->error = EFAULT; \
340fd243 755 *__foo = 0; \
0032bf9f
JA
756 } \
757} while (0)
758
ebac4655 759#endif