blob: 015af8db476a5121a485bcfd349cb4efee1e1ec6 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001#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>
Jens Axboe3c39a372006-06-06 20:56:12 +02009#include <errno.h>
10#include <stdlib.h>
11#include <stdio.h>
Jens Axboe6d6f0312006-06-07 21:39:13 +020012#include <unistd.h>
Jens Axboeebac4652005-12-08 15:25:21 +010013
14#include "list.h"
15#include "md5.h"
16#include "crc32.h"
17#include "arch.h"
18#include "os.h"
19
20struct io_stat {
21 unsigned long val;
22 unsigned long val_sq;
23 unsigned long max_val;
24 unsigned long min_val;
25 unsigned long samples;
26};
27
28struct io_sample {
29 unsigned long time;
30 unsigned long val;
31 unsigned int ddir;
32};
33
34struct io_log {
35 unsigned long nr_samples;
36 unsigned long max_samples;
37 struct io_sample *log;
38};
39
40struct io_piece {
41 struct list_head list;
Jens Axboe53cdc682006-10-18 11:50:58 +020042 struct fio_file *file;
Jens Axboeebac4652005-12-08 15:25:21 +010043 unsigned long long offset;
44 unsigned int len;
Jens Axboeaea47d42006-05-26 19:27:29 +020045 int ddir;
Jens Axboeebac4652005-12-08 15:25:21 +010046};
47
48/*
49 * The io unit
50 */
51struct io_u {
52 union {
53#ifdef FIO_HAVE_LIBAIO
54 struct iocb iocb;
55#endif
56#ifdef FIO_HAVE_POSIXAIO
57 struct aiocb aiocb;
58#endif
59#ifdef FIO_HAVE_SGIO
60 struct sg_io_hdr hdr;
61#endif
62 };
63 struct timeval start_time;
64 struct timeval issue_time;
65
66 char *buf;
67 unsigned int buflen;
68 unsigned long long offset;
Jens Axboeb1ff3402006-02-17 11:35:58 +010069 unsigned int index;
Jens Axboeebac4652005-12-08 15:25:21 +010070
71 unsigned int resid;
72 unsigned int error;
73
74 unsigned char seen;
75 unsigned char ddir;
76
Jens Axboe53cdc682006-10-18 11:50:58 +020077 struct fio_file *file;
78
Jens Axboeebac4652005-12-08 15:25:21 +010079 struct list_head list;
80};
81
82#define FIO_HDR_MAGIC 0xf00baaef
83
84enum {
85 VERIFY_NONE = 0,
86 VERIFY_MD5,
87 VERIFY_CRC32,
88};
89
90struct verify_header {
91 unsigned int fio_magic;
92 unsigned int len;
93 unsigned int verify_type;
94 union {
95 char md5_digest[MD5_HASH_WORDS * 4];
96 unsigned long crc32;
97 };
98};
99
100struct group_run_stats {
Jens Axboe9104f872005-12-28 23:50:45 +0100101 unsigned long long max_run[2], min_run[2];
102 unsigned long long max_bw[2], min_bw[2];
Jens Axboee9b2a3f2006-06-06 15:38:33 +0200103 unsigned long long io_kb[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100104 unsigned long long agg[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100105};
106
Jens Axboee9c047a2006-06-07 21:13:04 +0200107enum fio_ddir {
108 DDIR_READ = 0,
109 DDIR_WRITE,
110};
111
112/*
113 * What type of allocation to use for io buffers
114 */
115enum fio_memtype {
116 MEM_MALLOC = 0, /* ordinary malloc */
117 MEM_SHM, /* use shared memory segments */
118 MEM_MMAP, /* use anonynomous mmap */
119};
120
121/*
122 * The type of object we are working on
123 */
124enum fio_filetype {
125 FIO_TYPE_FILE = 1,
126 FIO_TYPE_BD,
127 FIO_TYPE_CHAR,
128};
129
Jens Axboe2866c822006-10-09 15:57:48 +0200130enum fio_ioengine_flags {
Jens Axboee9c047a2006-06-07 21:13:04 +0200131 FIO_SYNCIO = 1 << 0,
Jens Axboe2866c822006-10-09 15:57:48 +0200132 FIO_CPUIO = 1 << 1,
133 FIO_MMAPIO = 1 << 2,
Jens Axboeb2a15192006-10-18 14:10:42 +0200134 FIO_RAWIO = 1 << 3,
Jens Axboee9c047a2006-06-07 21:13:04 +0200135};
136
Jens Axboe53cdc682006-10-18 11:50:58 +0200137struct fio_file {
138 /*
139 * A file may not be a file descriptor, let the io engine decide
140 */
141 union {
142 unsigned long file_data;
143 int fd;
144 };
145 char *file_name;
146 void *mmap;
147 unsigned long long file_size;
148 unsigned long long real_file_size;
149 unsigned long long file_offset;
150 unsigned long long last_pos;
151
152 unsigned long *file_map;
153 unsigned int num_maps;
Jens Axboeb2a15192006-10-18 14:10:42 +0200154
155 int fileno;
Jens Axboe53cdc682006-10-18 11:50:58 +0200156};
157
Jens Axboee9c047a2006-06-07 21:13:04 +0200158/*
159 * This describes a single thread/process executing a fio job.
160 */
Jens Axboeebac4652005-12-08 15:25:21 +0100161struct thread_data {
Jens Axboee9c047a2006-06-07 21:13:04 +0200162 char name[32];
Jens Axboeef899b62006-06-06 09:31:00 +0200163 char *directory;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200164 char *filename;
Jens Axboeebac4652005-12-08 15:25:21 +0100165 char verror[80];
166 pthread_t thread;
167 int thread_number;
168 int groupid;
Jens Axboee9c047a2006-06-07 21:13:04 +0200169 enum fio_filetype filetype;
Jens Axboe53cdc682006-10-18 11:50:58 +0200170 struct fio_file *files;
171 unsigned int nr_files;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200172 unsigned int nr_uniq_files;
Jens Axboe53cdc682006-10-18 11:50:58 +0200173 unsigned int next_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100174 int error;
Jens Axboeebac4652005-12-08 15:25:21 +0100175 pid_t pid;
176 char *orig_buffer;
177 size_t orig_buffer_size;
178 volatile int terminate;
179 volatile int runstate;
Jens Axboee9c047a2006-06-07 21:13:04 +0200180 enum fio_ddir ddir;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200181 unsigned int iomix;
Jens Axboeebac4652005-12-08 15:25:21 +0100182 unsigned int ioprio;
Jens Axboee9c047a2006-06-07 21:13:04 +0200183
184 unsigned char sequential;
185 unsigned char odirect;
Jens Axboee9c047a2006-06-07 21:13:04 +0200186 unsigned char invalidate_cache;
187 unsigned char create_serialize;
188 unsigned char create_fsync;
189 unsigned char end_fsync;
190 unsigned char sync_io;
191 unsigned char verify;
192 unsigned char use_thread;
Jens Axboef6cbb262006-10-18 14:16:42 +0200193 unsigned char unlink;
Jens Axboee9c047a2006-06-07 21:13:04 +0200194 unsigned char do_disk_util;
195 unsigned char override_sync;
Jens Axboe9ebc27e2006-06-12 10:21:50 +0200196 unsigned char rand_repeatable;
Jens Axboeec94ec52006-10-20 10:59:19 +0200197 unsigned char write_lat_log;
198 unsigned char write_bw_log;
Jens Axboee9c047a2006-06-07 21:13:04 +0200199
Jens Axboeebac4652005-12-08 15:25:21 +0100200 unsigned int bs;
201 unsigned int min_bs;
202 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100203 unsigned int thinktime;
204 unsigned int fsync_blocks;
205 unsigned int start_delay;
Jens Axboe906c8d72006-06-13 09:37:56 +0200206 unsigned long timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100207 unsigned int overwrite;
Jens Axboeebac4652005-12-08 15:25:21 +0100208 unsigned int bw_avg_time;
Jens Axboeebac4652005-12-08 15:25:21 +0100209 unsigned int loops;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100210 unsigned long long zone_size;
211 unsigned long long zone_skip;
Jens Axboee9c047a2006-06-07 21:13:04 +0200212 enum fio_memtype mem_type;
Jens Axboeebac4652005-12-08 15:25:21 +0100213 unsigned int stonewall;
214 unsigned int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100215 unsigned int iodepth;
216 os_cpu_mask_t cpumask;
Jens Axboeaea47d42006-05-26 19:27:29 +0200217 unsigned int iolog;
Jens Axboe843a7412006-06-01 21:14:21 -0700218 unsigned int read_iolog;
219 unsigned int write_iolog;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200220 unsigned int rwmixcycle;
221 unsigned int rwmixread;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200222 unsigned int nice;
Jens Axboeaea47d42006-05-26 19:27:29 +0200223
Jens Axboeef899b62006-06-06 09:31:00 +0200224 char *iolog_file;
Jens Axboe843a7412006-06-01 21:14:21 -0700225 void *iolog_buf;
226 FILE *iolog_f;
Jens Axboeebac4652005-12-08 15:25:21 +0100227
Jens Axboeda867742006-06-06 10:39:10 -0700228 char *sysfs_root;
Jens Axboeda867742006-06-06 10:39:10 -0700229 char *ioscheduler;
230
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200231 os_random_state_t bsrange_state;
232 os_random_state_t verify_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100233
234 int shm_id;
235
Jens Axboee9c047a2006-06-07 21:13:04 +0200236 /*
237 * IO engine hooks, contains everything needed to submit an io_u
238 * to any of the available IO engines.
239 */
Jens Axboe2866c822006-10-09 15:57:48 +0200240 struct ioengine_ops *io_ops;
Jens Axboeebac4652005-12-08 15:25:21 +0100241
Jens Axboee9c047a2006-06-07 21:13:04 +0200242 /*
243 * Current IO depth and list of free and busy io_u's.
244 */
Jens Axboeebac4652005-12-08 15:25:21 +0100245 unsigned int cur_depth;
246 struct list_head io_u_freelist;
247 struct list_head io_u_busylist;
248
Jens Axboee9c047a2006-06-07 21:13:04 +0200249 /*
250 * Rate state
251 */
Jens Axboeebac4652005-12-08 15:25:21 +0100252 unsigned int rate;
253 unsigned int ratemin;
254 unsigned int ratecycle;
255 unsigned long rate_usec_cycle;
256 long rate_pending_usleep;
257 unsigned long rate_bytes;
258 struct timeval lastrate;
259
260 unsigned long runtime[2]; /* msec */
261 unsigned long long io_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200262 unsigned long long total_file_size;
263 unsigned long long start_offset;
Jens Axboeebac4652005-12-08 15:25:21 +0100264 unsigned long long total_io_size;
265
Jens Axboe9104f872005-12-28 23:50:45 +0100266 unsigned long long io_blocks[2];
267 unsigned long long io_bytes[2];
268 unsigned long long zone_bytes;
269 unsigned long long this_io_bytes[2];
Jens Axboebbfd6b02006-06-07 19:42:54 +0200270 volatile int mutex;
Jens Axboeebac4652005-12-08 15:25:21 +0100271
Jens Axboee9c047a2006-06-07 21:13:04 +0200272 /*
273 * State for random io, a bitmap of blocks done vs not done
274 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200275 os_random_state_t random_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100276
277 /*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200278 * CPU "io" cycle burner
279 */
280 unsigned int cpuload;
281 unsigned int cpucycle;
282
283 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100284 * bandwidth and latency stats
285 */
286 struct io_stat clat_stat[2]; /* completion latency */
287 struct io_stat slat_stat[2]; /* submission latency */
288 struct io_stat bw_stat[2]; /* bandwidth stats */
289
Jens Axboe9104f872005-12-28 23:50:45 +0100290 unsigned long long stat_io_bytes[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100291 struct timeval stat_sample_time[2];
292
293 struct io_log *slat_log;
294 struct io_log *clat_log;
295 struct io_log *bw_log;
296
297 struct timeval start; /* start of this loop */
298 struct timeval epoch; /* time job was started */
299
Jens Axboee9c047a2006-06-07 21:13:04 +0200300 /*
301 * fio system usage accounting
302 */
Jens Axboeebac4652005-12-08 15:25:21 +0100303 struct rusage ru_start;
304 struct rusage ru_end;
305 unsigned long usr_time;
306 unsigned long sys_time;
307 unsigned long ctx;
308
Jens Axboee9c047a2006-06-07 21:13:04 +0200309 /*
310 * read/write mixed workload state
311 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200312 os_random_state_t rwmix_state;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200313 struct timeval rwmix_switch;
Jens Axboee9c047a2006-06-07 21:13:04 +0200314 enum fio_ddir rwmix_ddir;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200315
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200316 /*
317 * Pre-run and post-run shell
318 */
319 char *exec_prerun;
320 char *exec_postrun;
321
Jens Axboee9c047a2006-06-07 21:13:04 +0200322 /*
323 * IO historic logs
324 */
Jens Axboeebac4652005-12-08 15:25:21 +0100325 struct list_head io_hist_list;
Jens Axboeaea47d42006-05-26 19:27:29 +0200326 struct list_head io_log_list;
Jens Axboeebac4652005-12-08 15:25:21 +0100327};
328
Jens Axboeb990b5c2006-09-14 09:48:22 +0200329#define __td_verror(td, err, msg) \
Jens Axboeebac4652005-12-08 15:25:21 +0100330 do { \
331 int e = (err); \
332 (td)->error = e; \
Jens Axboeb990b5c2006-09-14 09:48:22 +0200333 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg)); \
Jens Axboeebac4652005-12-08 15:25:21 +0100334 } while (0)
335
Jens Axboeb990b5c2006-09-14 09:48:22 +0200336
337#define td_verror(td, err) __td_verror((td), (err), strerror((err)))
338#define td_vmsg(td, err, msg) __td_verror((td), (err), (msg))
339
Jens Axboeebac4652005-12-08 15:25:21 +0100340extern int rate_quit;
Jens Axboeebac4652005-12-08 15:25:21 +0100341extern int exitall_on_terminate;
342extern int thread_number;
343extern int shm_id;
344extern int groupid;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200345extern int terse_output;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200346extern FILE *f_out;
347extern FILE *f_err;
Jens Axboec1d57252006-10-09 19:56:04 +0200348extern char *fio_inst_prefix;
Jens Axboe53cdc682006-10-18 11:50:58 +0200349extern int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +0100350
351extern struct thread_data *threads;
352
Jens Axboeebac4652005-12-08 15:25:21 +0100353#define td_read(td) ((td)->ddir == DDIR_READ)
354#define td_write(td) ((td)->ddir == DDIR_WRITE)
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200355#define td_rw(td) ((td)->iomix != 0)
Jens Axboeebac4652005-12-08 15:25:21 +0100356
357#define BLOCKS_PER_MAP (8 * sizeof(long))
Jens Axboe53cdc682006-10-18 11:50:58 +0200358#define TO_MAP_BLOCK(td, f, b) ((b) - ((f)->file_offset / (td)->min_bs))
359#define RAND_MAP_IDX(td, f, b) (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
360#define RAND_MAP_BIT(td, f, b) (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
Jens Axboeebac4652005-12-08 15:25:21 +0100361
362#define MAX_JOBS (1024)
363
364struct disk_util_stat {
365 unsigned ios[2];
366 unsigned merges[2];
367 unsigned long long sectors[2];
368 unsigned ticks[2];
369 unsigned io_ticks;
370 unsigned time_in_queue;
371};
372
373struct disk_util {
374 struct list_head list;
375
376 char *name;
377 char path[256];
378 dev_t dev;
379
380 struct disk_util_stat dus;
381 struct disk_util_stat last_dus;
382
383 unsigned long msec;
384 struct timeval time;
385};
386
387struct io_completion_data {
388 int nr; /* input */
389
390 int error; /* output */
391 unsigned long bytes_done[2]; /* output */
392};
393
394#define DISK_UTIL_MSEC (250)
395
Jens Axboe6a0106a2006-05-05 10:34:43 +0200396#ifndef min
397#define min(a, b) ((a) < (b) ? (a) : (b))
398#endif
399
Jens Axboe67962092006-06-07 08:45:01 +0200400/*
401 * Log exports
402 */
403extern int read_iolog_get(struct thread_data *, struct io_u *);
404extern void write_iolog_put(struct thread_data *, struct io_u *);
405extern int init_iolog(struct thread_data *td);
406extern void log_io_piece(struct thread_data *, struct io_u *);
407extern void prune_io_piece_log(struct thread_data *);
408extern void write_iolog_close(struct thread_data *);
409
410/*
411 * Logging
412 */
413extern void add_clat_sample(struct thread_data *, int, unsigned long);
414extern void add_slat_sample(struct thread_data *, int, unsigned long);
415extern void add_bw_sample(struct thread_data *, int);
416extern void show_run_stats(void);
417extern void init_disk_util(struct thread_data *);
418extern void update_rusage_stat(struct thread_data *);
419extern void update_io_ticks(void);
420extern void disk_util_timer_arm(void);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200421extern void setup_log(struct io_log **);
422extern void finish_log(struct thread_data *, struct io_log *, const char *);
423extern int setup_rate(struct thread_data *);
Jens Axboe67962092006-06-07 08:45:01 +0200424
425/*
426 * Time functions
427 */
Jens Axboe263e5292006-10-18 15:37:01 +0200428extern void time_init(void);
Jens Axboe67962092006-06-07 08:45:01 +0200429extern unsigned long utime_since(struct timeval *, struct timeval *);
430extern unsigned long mtime_since(struct timeval *, struct timeval *);
431extern unsigned long mtime_since_now(struct timeval *);
432extern unsigned long time_since_now(struct timeval *);
Jens Axboe263e5292006-10-18 15:37:01 +0200433extern unsigned long mtime_since_genesis(void);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200434extern void __usec_sleep(unsigned int);
Jens Axboe67962092006-06-07 08:45:01 +0200435extern void usec_sleep(struct thread_data *, unsigned long);
436extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
437
Jens Axboe8914a9d2006-06-07 11:14:56 +0200438/*
439 * Init functions
440 */
441extern int parse_options(int, char **);
442extern int init_random_state(struct thread_data *);
443
Jens Axboebbfd6b02006-06-07 19:42:54 +0200444/*
Jens Axboe53cdc682006-10-18 11:50:58 +0200445 * File setup/shutdown
446 */
447extern void close_files(struct thread_data *);
448extern int setup_files(struct thread_data *);
Jens Axboee5b401d2006-10-18 16:03:40 +0200449extern int file_invalidate_cache(struct thread_data *, struct fio_file *);
Jens Axboe53cdc682006-10-18 11:50:58 +0200450
451/*
Jens Axboe263e5292006-10-18 15:37:01 +0200452 * ETA/status stuff
453 */
454extern void print_thread_status(void);
455extern void print_status_init(int);
456
457/*
458 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
459 * will never back again. It may cycle between running/verififying/fsyncing.
460 * Once the thread reaches TD_EXITED, it is just waiting for the core to
461 * reap it.
462 */
463enum {
464 TD_NOT_CREATED = 0,
465 TD_CREATED,
466 TD_INITIALIZED,
467 TD_RUNNING,
468 TD_VERIFYING,
469 TD_FSYNCING,
470 TD_EXITED,
471 TD_REAPED,
472};
473
474/*
Jens Axboee29d1b72006-10-18 15:43:15 +0200475 * Verify helpers
476 */
477extern void populate_verify_io_u(struct thread_data *, struct io_u *);
478extern int get_next_verify(struct thread_data *td, struct io_u *);
Jens Axboea9619d42006-10-18 15:47:42 +0200479extern int do_io_u_verify(struct thread_data *, struct io_u **);
Jens Axboee29d1b72006-10-18 15:43:15 +0200480
481/*
Jens Axboe2f9ade32006-10-20 11:25:52 +0200482 * Memory helpers
483 */
484extern int fio_pin_memory(void);
485extern void fio_unpin_memory(void);
486extern int allocate_io_mem(struct thread_data *);
487extern void free_io_mem(struct thread_data *);
488
489/*
Jens Axboe10ba5352006-10-20 11:39:27 +0200490 * io unit handling
491 */
492#define queue_full(td) list_empty(&(td)->io_u_freelist)
493extern struct io_u *__get_io_u(struct thread_data *);
494extern struct io_u *get_io_u(struct thread_data *, struct fio_file *);
495extern void put_io_u(struct thread_data *, struct io_u *);
496extern void ios_completed(struct thread_data *, struct io_completion_data *);
497extern void io_completed(struct thread_data *, struct io_u *, struct io_completion_data *);
498
499/*
500 * io engine entry points
501 */
Jens Axboe8c16d842006-10-20 11:48:33 +0200502extern int td_io_init(struct thread_data *);
Jens Axboe10ba5352006-10-20 11:39:27 +0200503extern int td_io_prep(struct thread_data *, struct io_u *);
504extern int td_io_queue(struct thread_data *, struct io_u *);
505extern int td_io_sync(struct thread_data *, struct fio_file *);
506extern int td_io_getevents(struct thread_data *, int, int, struct timespec *);
507
508/*
Jens Axboebbfd6b02006-06-07 19:42:54 +0200509 * This is a pretty crappy semaphore implementation, but with the use that fio
510 * has (just signalling start/go conditions), it doesn't have to be better.
511 * Naturally this would not work for any type of contended semaphore or
512 * for real locking.
513 */
Jens Axboe1056eaa2006-07-13 10:33:45 -0700514static inline void fio_sem_init(volatile int *sem, int val)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200515{
516 *sem = val;
517}
518
Jens Axboe1056eaa2006-07-13 10:33:45 -0700519static inline void fio_sem_down(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200520{
521 while (*sem == 0)
522 usleep(10000);
523
524 (*sem)--;
525}
526
Jens Axboe1056eaa2006-07-13 10:33:45 -0700527static inline void fio_sem_up(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200528{
529 (*sem)++;
530}
531
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200532/*
533 * If logging output to a file, stderr should go to both stderr and f_err
534 */
535#define log_err(args...) do { \
536 fprintf(f_err, ##args); \
537 if (f_err != stderr) \
538 fprintf(stderr, ##args); \
539 } while (0)
540
Jens Axboe2866c822006-10-09 15:57:48 +0200541struct ioengine_ops {
542 char name[16];
543 int version;
544 int flags;
Jens Axboeea2877a2006-10-10 08:30:24 +0200545 int (*setup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200546 int (*init)(struct thread_data *);
547 int (*prep)(struct thread_data *, struct io_u *);
548 int (*queue)(struct thread_data *, struct io_u *);
549 int (*getevents)(struct thread_data *, int, int, struct timespec *);
550 struct io_u *(*event)(struct thread_data *, int);
551 int (*cancel)(struct thread_data *, struct io_u *);
552 void (*cleanup)(struct thread_data *);
Jens Axboe53cdc682006-10-18 11:50:58 +0200553 int (*sync)(struct thread_data *, struct fio_file *);
Jens Axboe2866c822006-10-09 15:57:48 +0200554 void *data;
555 void *dlhandle;
556};
557
Jens Axboe53cdc682006-10-18 11:50:58 +0200558#define FIO_IOOPS_VERSION 2
Jens Axboe2866c822006-10-09 15:57:48 +0200559
560extern struct ioengine_ops *load_ioengine(struct thread_data *, char *);
561extern void close_ioengine(struct thread_data *);
562
563/*
564 * Mark unused variables passed to ops functions as unused, to silence gcc
565 */
566#define fio_unused __attribute((__unused__))
567
Jens Axboe34572e22006-10-20 09:33:18 +0200568#define for_each_td(td, i) \
569 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200570#define for_each_file(td, f, i) \
Jens Axboe34572e22006-10-20 09:33:18 +0200571 for ((i) = 0, (f) = &(td)->files[0]; (i) < (int) (td)->nr_files; (i)++, (f)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200572
Jens Axboeebac4652005-12-08 15:25:21 +0100573#endif