Bump IO engine version number
[fio.git] / profile.h
1 #ifndef FIO_PROFILE_H
2 #define FIO_PROFILE_H
3
4 #include "flist.h"
5
6 /*
7  * Functions for overriding internal fio io_u functions
8  */
9 struct prof_io_ops {
10         int (*td_init)(struct thread_data *);
11         void (*td_exit)(struct thread_data *);
12
13         int (*fill_io_u_off)(struct thread_data *, struct io_u *);
14         int (*fill_io_u_size)(struct thread_data *, struct io_u *);
15         struct fio_file *(*get_next_file)(struct thread_data *);
16
17         int (*io_u_lat)(struct thread_data *, uint64_t);
18 };
19
20 struct profile_ops {
21         struct flist_head list;
22         char name[32];
23         char desc[64];
24         int flags;
25
26         /*
27          * Profile specific options
28          */
29         struct fio_option *options;
30
31         /*
32          * Called after parsing options, to prepare 'cmdline'
33          */
34         int (*prep_cmd)(void);
35
36         /*
37          * The complete command line
38          */
39         const char **cmdline;
40
41         struct prof_io_ops *io_ops;
42 };
43
44 int register_profile(struct profile_ops *);
45 void unregister_profile(struct profile_ops *);
46 int load_profile(const char *);
47 struct profile_ops *find_profile(const char *);
48 void profile_add_hooks(struct thread_data *);
49
50 int profile_td_init(struct thread_data *);
51 void profile_td_exit(struct thread_data *);
52
53 #endif