Add missing trailing \n in log_err/info()
[fio.git] / engines / gfapi.h
CommitLineData
cc47f094 1#include <glusterfs/api/glfs.h>
cc47f094 2#include "../fio.h"
3
4struct gf_options {
a1f871c7 5 void *pad;
b6b2626a
JA
6 char *gf_vol;
7 char *gf_brick;
cc47f094 8};
9
10struct gf_data {
b6b2626a
JA
11 glfs_t *fs;
12 glfs_fd_t *fd;
cc47f094 13 struct io_u **aio_events;
14};
15
16extern struct fio_option gfapi_options[];
17extern int fio_gf_setup(struct thread_data *td);
18extern void fio_gf_cleanup(struct thread_data *td);
19extern int fio_gf_get_file_size(struct thread_data *td, struct fio_file *f);
20extern int fio_gf_open_file(struct thread_data *td, struct fio_file *f);
21extern int fio_gf_close_file(struct thread_data *td, struct fio_file *f);
38ef9c90 22extern int fio_gf_unlink_file(struct thread_data *td, struct fio_file *f);