blob: 4af8a4df8503c8e6e75afe4f2fadb491d0513e81 [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;
69
70 unsigned int resid;
71 unsigned int error;
72
Jens Axboeebac4652005-12-08 15:25:21 +010073 unsigned char ddir;
74
Jens Axboedfd7bc22006-10-24 12:17:57 +020075 /*
76 * io engine private data
77 */
78 union {
79 unsigned int index;
80 unsigned int seen;
81 };
82
Jens Axboe53cdc682006-10-18 11:50:58 +020083 struct fio_file *file;
84
Jens Axboeebac4652005-12-08 15:25:21 +010085 struct list_head list;
86};
87
88#define FIO_HDR_MAGIC 0xf00baaef
89
90enum {
91 VERIFY_NONE = 0,
92 VERIFY_MD5,
93 VERIFY_CRC32,
94};
95
96struct verify_header {
97 unsigned int fio_magic;
98 unsigned int len;
99 unsigned int verify_type;
100 union {
101 char md5_digest[MD5_HASH_WORDS * 4];
102 unsigned long crc32;
103 };
104};
105
106struct group_run_stats {
Jens Axboe9104f872005-12-28 23:50:45 +0100107 unsigned long long max_run[2], min_run[2];
108 unsigned long long max_bw[2], min_bw[2];
Jens Axboee9b2a3f2006-06-06 15:38:33 +0200109 unsigned long long io_kb[2];
Jens Axboe9104f872005-12-28 23:50:45 +0100110 unsigned long long agg[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100111};
112
Jens Axboee9c047a2006-06-07 21:13:04 +0200113enum fio_ddir {
114 DDIR_READ = 0,
115 DDIR_WRITE,
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200116 DDIR_SYNC,
Jens Axboee9c047a2006-06-07 21:13:04 +0200117};
118
119/*
120 * What type of allocation to use for io buffers
121 */
122enum fio_memtype {
123 MEM_MALLOC = 0, /* ordinary malloc */
124 MEM_SHM, /* use shared memory segments */
125 MEM_MMAP, /* use anonynomous mmap */
126};
127
128/*
129 * The type of object we are working on
130 */
131enum fio_filetype {
132 FIO_TYPE_FILE = 1,
133 FIO_TYPE_BD,
134 FIO_TYPE_CHAR,
135};
136
Jens Axboe2866c822006-10-09 15:57:48 +0200137enum fio_ioengine_flags {
Jens Axboee9c047a2006-06-07 21:13:04 +0200138 FIO_SYNCIO = 1 << 0,
Jens Axboe2866c822006-10-09 15:57:48 +0200139 FIO_CPUIO = 1 << 1,
140 FIO_MMAPIO = 1 << 2,
Jens Axboeb2a15192006-10-18 14:10:42 +0200141 FIO_RAWIO = 1 << 3,
Jens Axboee9c047a2006-06-07 21:13:04 +0200142};
143
Jens Axboe53cdc682006-10-18 11:50:58 +0200144struct fio_file {
145 /*
146 * A file may not be a file descriptor, let the io engine decide
147 */
148 union {
149 unsigned long file_data;
150 int fd;
151 };
152 char *file_name;
153 void *mmap;
154 unsigned long long file_size;
155 unsigned long long real_file_size;
156 unsigned long long file_offset;
157 unsigned long long last_pos;
158
159 unsigned long *file_map;
160 unsigned int num_maps;
161};
162
Jens Axboee9c047a2006-06-07 21:13:04 +0200163/*
164 * This describes a single thread/process executing a fio job.
165 */
Jens Axboeebac4652005-12-08 15:25:21 +0100166struct thread_data {
Jens Axboeb4692822006-10-27 13:43:22 +0200167 char *name;
Jens Axboeef899b62006-06-06 09:31:00 +0200168 char *directory;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200169 char *filename;
Jens Axboeebac4652005-12-08 15:25:21 +0100170 char verror[80];
171 pthread_t thread;
172 int thread_number;
173 int groupid;
Jens Axboee9c047a2006-06-07 21:13:04 +0200174 enum fio_filetype filetype;
Jens Axboe53cdc682006-10-18 11:50:58 +0200175 struct fio_file *files;
176 unsigned int nr_files;
Jens Axboe13f8e2d2006-10-24 09:29:45 +0200177 unsigned int nr_uniq_files;
Jens Axboe53cdc682006-10-18 11:50:58 +0200178 unsigned int next_file;
Jens Axboeebac4652005-12-08 15:25:21 +0100179 int error;
Jens Axboeebac4652005-12-08 15:25:21 +0100180 pid_t pid;
181 char *orig_buffer;
182 size_t orig_buffer_size;
183 volatile int terminate;
184 volatile int runstate;
Jens Axboee9c047a2006-06-07 21:13:04 +0200185 enum fio_ddir ddir;
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200186 unsigned int iomix;
Jens Axboeebac4652005-12-08 15:25:21 +0100187 unsigned int ioprio;
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200188 unsigned int last_was_sync;
Jens Axboee9c047a2006-06-07 21:13:04 +0200189
Jens Axboe9158d2f2006-10-27 14:27:39 +0200190 unsigned int sequential;
191 unsigned int odirect;
192 unsigned int invalidate_cache;
193 unsigned int create_serialize;
194 unsigned int create_fsync;
195 unsigned int end_fsync;
196 unsigned int sync_io;
197 unsigned int verify;
198 unsigned int use_thread;
199 unsigned int unlink;
200 unsigned int do_disk_util;
201 unsigned int override_sync;
202 unsigned int rand_repeatable;
203 unsigned int write_lat_log;
204 unsigned int write_bw_log;
Jens Axboee9c047a2006-06-07 21:13:04 +0200205
Jens Axboeebac4652005-12-08 15:25:21 +0100206 unsigned int bs;
207 unsigned int min_bs;
208 unsigned int max_bs;
Jens Axboeebac4652005-12-08 15:25:21 +0100209 unsigned int thinktime;
210 unsigned int fsync_blocks;
211 unsigned int start_delay;
Jens Axboe906c8d72006-06-13 09:37:56 +0200212 unsigned long timeout;
Jens Axboeebac4652005-12-08 15:25:21 +0100213 unsigned int overwrite;
Jens Axboeebac4652005-12-08 15:25:21 +0100214 unsigned int bw_avg_time;
Jens Axboeebac4652005-12-08 15:25:21 +0100215 unsigned int loops;
Jens Axboe20dc95c2005-12-09 10:29:35 +0100216 unsigned long long zone_size;
217 unsigned long long zone_skip;
Jens Axboee9c047a2006-06-07 21:13:04 +0200218 enum fio_memtype mem_type;
Jens Axboeebac4652005-12-08 15:25:21 +0100219 unsigned int stonewall;
220 unsigned int numjobs;
Jens Axboeebac4652005-12-08 15:25:21 +0100221 unsigned int iodepth;
222 os_cpu_mask_t cpumask;
Jens Axboeaea47d42006-05-26 19:27:29 +0200223 unsigned int iolog;
Jens Axboe843a7412006-06-01 21:14:21 -0700224 unsigned int read_iolog;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200225 unsigned int rwmixcycle;
226 unsigned int rwmixread;
Jens Axboee1f36502006-10-27 10:54:08 +0200227 unsigned int rwmixwrite;
Jens Axboeb6f4d882006-06-02 10:32:51 +0200228 unsigned int nice;
Jens Axboeaea47d42006-05-26 19:27:29 +0200229
Jens Axboe076efc72006-10-27 11:24:25 +0200230 char *read_iolog_file;
231 char *write_iolog_file;
Jens Axboe843a7412006-06-01 21:14:21 -0700232 void *iolog_buf;
233 FILE *iolog_f;
Jens Axboeebac4652005-12-08 15:25:21 +0100234
Jens Axboeda867742006-06-06 10:39:10 -0700235 char *sysfs_root;
Jens Axboeda867742006-06-06 10:39:10 -0700236 char *ioscheduler;
237
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200238 os_random_state_t bsrange_state;
239 os_random_state_t verify_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100240
241 int shm_id;
242
Jens Axboee9c047a2006-06-07 21:13:04 +0200243 /*
244 * IO engine hooks, contains everything needed to submit an io_u
245 * to any of the available IO engines.
246 */
Jens Axboe2866c822006-10-09 15:57:48 +0200247 struct ioengine_ops *io_ops;
Jens Axboeebac4652005-12-08 15:25:21 +0100248
Jens Axboee9c047a2006-06-07 21:13:04 +0200249 /*
250 * Current IO depth and list of free and busy io_u's.
251 */
Jens Axboeebac4652005-12-08 15:25:21 +0100252 unsigned int cur_depth;
253 struct list_head io_u_freelist;
254 struct list_head io_u_busylist;
255
Jens Axboee9c047a2006-06-07 21:13:04 +0200256 /*
257 * Rate state
258 */
Jens Axboeebac4652005-12-08 15:25:21 +0100259 unsigned int rate;
260 unsigned int ratemin;
261 unsigned int ratecycle;
262 unsigned long rate_usec_cycle;
263 long rate_pending_usleep;
264 unsigned long rate_bytes;
265 struct timeval lastrate;
266
267 unsigned long runtime[2]; /* msec */
268 unsigned long long io_size;
Jens Axboe53cdc682006-10-18 11:50:58 +0200269 unsigned long long total_file_size;
270 unsigned long long start_offset;
Jens Axboeebac4652005-12-08 15:25:21 +0100271 unsigned long long total_io_size;
272
Jens Axboe9104f872005-12-28 23:50:45 +0100273 unsigned long long io_blocks[2];
274 unsigned long long io_bytes[2];
275 unsigned long long zone_bytes;
276 unsigned long long this_io_bytes[2];
Jens Axboebbfd6b02006-06-07 19:42:54 +0200277 volatile int mutex;
Jens Axboeebac4652005-12-08 15:25:21 +0100278
Jens Axboee9c047a2006-06-07 21:13:04 +0200279 /*
280 * State for random io, a bitmap of blocks done vs not done
281 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200282 os_random_state_t random_state;
Jens Axboeebac4652005-12-08 15:25:21 +0100283
284 /*
Jens Axboeb990b5c2006-09-14 09:48:22 +0200285 * CPU "io" cycle burner
286 */
287 unsigned int cpuload;
288 unsigned int cpucycle;
289
290 /*
Jens Axboeebac4652005-12-08 15:25:21 +0100291 * bandwidth and latency stats
292 */
293 struct io_stat clat_stat[2]; /* completion latency */
294 struct io_stat slat_stat[2]; /* submission latency */
295 struct io_stat bw_stat[2]; /* bandwidth stats */
296
Jens Axboe9104f872005-12-28 23:50:45 +0100297 unsigned long long stat_io_bytes[2];
Jens Axboeebac4652005-12-08 15:25:21 +0100298 struct timeval stat_sample_time[2];
299
300 struct io_log *slat_log;
301 struct io_log *clat_log;
302 struct io_log *bw_log;
303
304 struct timeval start; /* start of this loop */
305 struct timeval epoch; /* time job was started */
306
Jens Axboee9c047a2006-06-07 21:13:04 +0200307 /*
308 * fio system usage accounting
309 */
Jens Axboeebac4652005-12-08 15:25:21 +0100310 struct rusage ru_start;
311 struct rusage ru_end;
312 unsigned long usr_time;
313 unsigned long sys_time;
314 unsigned long ctx;
315
Jens Axboee9c047a2006-06-07 21:13:04 +0200316 /*
317 * read/write mixed workload state
318 */
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200319 os_random_state_t rwmix_state;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200320 struct timeval rwmix_switch;
Jens Axboee9c047a2006-06-07 21:13:04 +0200321 enum fio_ddir rwmix_ddir;
Jens Axboea6ccc7b2006-06-02 10:14:15 +0200322
Jens Axboe4e0ba8a2006-06-06 09:36:28 +0200323 /*
324 * Pre-run and post-run shell
325 */
326 char *exec_prerun;
327 char *exec_postrun;
328
Jens Axboee9c047a2006-06-07 21:13:04 +0200329 /*
330 * IO historic logs
331 */
Jens Axboeebac4652005-12-08 15:25:21 +0100332 struct list_head io_hist_list;
Jens Axboeaea47d42006-05-26 19:27:29 +0200333 struct list_head io_log_list;
Jens Axboeebac4652005-12-08 15:25:21 +0100334};
335
Jens Axboeb990b5c2006-09-14 09:48:22 +0200336#define __td_verror(td, err, msg) \
Jens Axboeebac4652005-12-08 15:25:21 +0100337 do { \
338 int e = (err); \
339 (td)->error = e; \
Jens Axboeb990b5c2006-09-14 09:48:22 +0200340 snprintf(td->verror, sizeof(td->verror) - 1, "file:%s:%d, error=%s", __FILE__, __LINE__, (msg)); \
Jens Axboeebac4652005-12-08 15:25:21 +0100341 } while (0)
342
Jens Axboeb990b5c2006-09-14 09:48:22 +0200343
344#define td_verror(td, err) __td_verror((td), (err), strerror((err)))
345#define td_vmsg(td, err, msg) __td_verror((td), (err), (msg))
346
Jens Axboeebac4652005-12-08 15:25:21 +0100347extern int rate_quit;
Jens Axboeebac4652005-12-08 15:25:21 +0100348extern int exitall_on_terminate;
349extern int thread_number;
350extern int shm_id;
351extern int groupid;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200352extern int terse_output;
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200353extern FILE *f_out;
354extern FILE *f_err;
Jens Axboec1d57252006-10-09 19:56:04 +0200355extern char *fio_inst_prefix;
Jens Axboe53cdc682006-10-18 11:50:58 +0200356extern int temp_stall_ts;
Jens Axboeebac4652005-12-08 15:25:21 +0100357
358extern struct thread_data *threads;
359
Jens Axboeebac4652005-12-08 15:25:21 +0100360#define td_read(td) ((td)->ddir == DDIR_READ)
361#define td_write(td) ((td)->ddir == DDIR_WRITE)
Jens Axboe3d60d1e2006-05-25 06:31:06 +0200362#define td_rw(td) ((td)->iomix != 0)
Jens Axboeebac4652005-12-08 15:25:21 +0100363
364#define BLOCKS_PER_MAP (8 * sizeof(long))
Jens Axboe53cdc682006-10-18 11:50:58 +0200365#define TO_MAP_BLOCK(td, f, b) ((b) - ((f)->file_offset / (td)->min_bs))
366#define RAND_MAP_IDX(td, f, b) (TO_MAP_BLOCK(td, f, b) / BLOCKS_PER_MAP)
367#define RAND_MAP_BIT(td, f, b) (TO_MAP_BLOCK(td, f, b) & (BLOCKS_PER_MAP - 1))
Jens Axboeebac4652005-12-08 15:25:21 +0100368
369#define MAX_JOBS (1024)
370
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200371static inline int should_fsync(struct thread_data *td)
372{
373 if (td->last_was_sync)
374 return 0;
375 if (td->odirect)
376 return 0;
377 if (td_write(td) || td_rw(td) || td->override_sync)
378 return 1;
379
380 return 0;
381}
382
Jens Axboeebac4652005-12-08 15:25:21 +0100383struct disk_util_stat {
384 unsigned ios[2];
385 unsigned merges[2];
386 unsigned long long sectors[2];
387 unsigned ticks[2];
388 unsigned io_ticks;
389 unsigned time_in_queue;
390};
391
392struct disk_util {
393 struct list_head list;
394
395 char *name;
396 char path[256];
397 dev_t dev;
398
399 struct disk_util_stat dus;
400 struct disk_util_stat last_dus;
401
402 unsigned long msec;
403 struct timeval time;
404};
405
406struct io_completion_data {
407 int nr; /* input */
408
409 int error; /* output */
410 unsigned long bytes_done[2]; /* output */
411};
412
413#define DISK_UTIL_MSEC (250)
414
Jens Axboe6a0106a2006-05-05 10:34:43 +0200415#ifndef min
416#define min(a, b) ((a) < (b) ? (a) : (b))
417#endif
418
Jens Axboe67962092006-06-07 08:45:01 +0200419/*
420 * Log exports
421 */
422extern int read_iolog_get(struct thread_data *, struct io_u *);
423extern void write_iolog_put(struct thread_data *, struct io_u *);
424extern int init_iolog(struct thread_data *td);
425extern void log_io_piece(struct thread_data *, struct io_u *);
426extern void prune_io_piece_log(struct thread_data *);
427extern void write_iolog_close(struct thread_data *);
428
429/*
430 * Logging
431 */
432extern void add_clat_sample(struct thread_data *, int, unsigned long);
433extern void add_slat_sample(struct thread_data *, int, unsigned long);
434extern void add_bw_sample(struct thread_data *, int);
435extern void show_run_stats(void);
436extern void init_disk_util(struct thread_data *);
437extern void update_rusage_stat(struct thread_data *);
438extern void update_io_ticks(void);
439extern void disk_util_timer_arm(void);
Jens Axboe8914a9d2006-06-07 11:14:56 +0200440extern void setup_log(struct io_log **);
441extern void finish_log(struct thread_data *, struct io_log *, const char *);
442extern int setup_rate(struct thread_data *);
Jens Axboe67962092006-06-07 08:45:01 +0200443
444/*
445 * Time functions
446 */
Jens Axboe263e5292006-10-18 15:37:01 +0200447extern void time_init(void);
Jens Axboe67962092006-06-07 08:45:01 +0200448extern unsigned long utime_since(struct timeval *, struct timeval *);
449extern unsigned long mtime_since(struct timeval *, struct timeval *);
450extern unsigned long mtime_since_now(struct timeval *);
451extern unsigned long time_since_now(struct timeval *);
Jens Axboe263e5292006-10-18 15:37:01 +0200452extern unsigned long mtime_since_genesis(void);
Jens Axboeb990b5c2006-09-14 09:48:22 +0200453extern void __usec_sleep(unsigned int);
Jens Axboe67962092006-06-07 08:45:01 +0200454extern void usec_sleep(struct thread_data *, unsigned long);
455extern void rate_throttle(struct thread_data *, unsigned long, unsigned int);
456
Jens Axboe8914a9d2006-06-07 11:14:56 +0200457/*
458 * Init functions
459 */
460extern int parse_options(int, char **);
461extern int init_random_state(struct thread_data *);
462
Jens Axboebbfd6b02006-06-07 19:42:54 +0200463/*
Jens Axboe53cdc682006-10-18 11:50:58 +0200464 * File setup/shutdown
465 */
466extern void close_files(struct thread_data *);
467extern int setup_files(struct thread_data *);
Jens Axboee5b401d2006-10-18 16:03:40 +0200468extern int file_invalidate_cache(struct thread_data *, struct fio_file *);
Jens Axboe53cdc682006-10-18 11:50:58 +0200469
470/*
Jens Axboe263e5292006-10-18 15:37:01 +0200471 * ETA/status stuff
472 */
473extern void print_thread_status(void);
474extern void print_status_init(int);
475
476/*
477 * Thread life cycle. Once a thread has a runstate beyond TD_INITIALIZED, it
478 * will never back again. It may cycle between running/verififying/fsyncing.
479 * Once the thread reaches TD_EXITED, it is just waiting for the core to
480 * reap it.
481 */
482enum {
483 TD_NOT_CREATED = 0,
484 TD_CREATED,
485 TD_INITIALIZED,
486 TD_RUNNING,
487 TD_VERIFYING,
488 TD_FSYNCING,
489 TD_EXITED,
490 TD_REAPED,
491};
492
493/*
Jens Axboee29d1b72006-10-18 15:43:15 +0200494 * Verify helpers
495 */
496extern void populate_verify_io_u(struct thread_data *, struct io_u *);
497extern int get_next_verify(struct thread_data *td, struct io_u *);
Jens Axboea9619d42006-10-18 15:47:42 +0200498extern int do_io_u_verify(struct thread_data *, struct io_u **);
Jens Axboee29d1b72006-10-18 15:43:15 +0200499
500/*
Jens Axboe2f9ade32006-10-20 11:25:52 +0200501 * Memory helpers
502 */
503extern int fio_pin_memory(void);
504extern void fio_unpin_memory(void);
505extern int allocate_io_mem(struct thread_data *);
506extern void free_io_mem(struct thread_data *);
507
508/*
Jens Axboe10ba5352006-10-20 11:39:27 +0200509 * io unit handling
510 */
511#define queue_full(td) list_empty(&(td)->io_u_freelist)
512extern struct io_u *__get_io_u(struct thread_data *);
513extern struct io_u *get_io_u(struct thread_data *, struct fio_file *);
514extern void put_io_u(struct thread_data *, struct io_u *);
515extern void ios_completed(struct thread_data *, struct io_completion_data *);
516extern void io_completed(struct thread_data *, struct io_u *, struct io_completion_data *);
517
518/*
519 * io engine entry points
520 */
Jens Axboe8c16d842006-10-20 11:48:33 +0200521extern int td_io_init(struct thread_data *);
Jens Axboe10ba5352006-10-20 11:39:27 +0200522extern int td_io_prep(struct thread_data *, struct io_u *);
523extern int td_io_queue(struct thread_data *, struct io_u *);
524extern int td_io_sync(struct thread_data *, struct fio_file *);
525extern int td_io_getevents(struct thread_data *, int, int, struct timespec *);
526
527/*
Jens Axboebbfd6b02006-06-07 19:42:54 +0200528 * This is a pretty crappy semaphore implementation, but with the use that fio
529 * has (just signalling start/go conditions), it doesn't have to be better.
530 * Naturally this would not work for any type of contended semaphore or
531 * for real locking.
532 */
Jens Axboe1056eaa2006-07-13 10:33:45 -0700533static inline void fio_sem_init(volatile int *sem, int val)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200534{
535 *sem = val;
536}
537
Jens Axboe1056eaa2006-07-13 10:33:45 -0700538static inline void fio_sem_down(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200539{
540 while (*sem == 0)
541 usleep(10000);
542
543 (*sem)--;
544}
545
Jens Axboe1056eaa2006-07-13 10:33:45 -0700546static inline void fio_sem_up(volatile int *sem)
Jens Axboebbfd6b02006-06-07 19:42:54 +0200547{
548 (*sem)++;
549}
550
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200551/*
552 * If logging output to a file, stderr should go to both stderr and f_err
553 */
554#define log_err(args...) do { \
555 fprintf(f_err, ##args); \
556 if (f_err != stderr) \
557 fprintf(stderr, ##args); \
558 } while (0)
559
Jens Axboe2866c822006-10-09 15:57:48 +0200560struct ioengine_ops {
561 char name[16];
562 int version;
563 int flags;
Jens Axboeea2877a2006-10-10 08:30:24 +0200564 int (*setup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200565 int (*init)(struct thread_data *);
566 int (*prep)(struct thread_data *, struct io_u *);
567 int (*queue)(struct thread_data *, struct io_u *);
568 int (*getevents)(struct thread_data *, int, int, struct timespec *);
569 struct io_u *(*event)(struct thread_data *, int);
570 int (*cancel)(struct thread_data *, struct io_u *);
571 void (*cleanup)(struct thread_data *);
Jens Axboe2866c822006-10-09 15:57:48 +0200572 void *data;
573 void *dlhandle;
574};
575
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200576#define FIO_IOOPS_VERSION 3
Jens Axboe2866c822006-10-09 15:57:48 +0200577
Jens Axboeb4692822006-10-27 13:43:22 +0200578extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
Jens Axboe2866c822006-10-09 15:57:48 +0200579extern void close_ioengine(struct thread_data *);
580
581/*
582 * Mark unused variables passed to ops functions as unused, to silence gcc
583 */
584#define fio_unused __attribute((__unused__))
585
Jens Axboe34572e22006-10-20 09:33:18 +0200586#define for_each_td(td, i) \
587 for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200588#define for_each_file(td, f, i) \
Jens Axboe34572e22006-10-20 09:33:18 +0200589 for ((i) = 0, (f) = &(td)->files[0]; (i) < (int) (td)->nr_files; (i)++, (f)++)
Jens Axboe53cdc682006-10-18 11:50:58 +0200590
Jens Axboeebac4652005-12-08 15:25:21 +0100591#endif