Introduce enum fio_q_status
[fio.git] / engines / glusterfs_sync.c
1 /*
2  * glusterfs engine
3  *
4  * IO engine using Glusterfs's gfapi sync interface
5  *
6  */
7
8 #include "gfapi.h"
9
10 #define LAST_POS(f)     ((f)->engine_pos)
11 static int fio_gf_prep(struct thread_data *td, struct io_u *io_u)
12 {
13         struct fio_file *f = io_u->file;
14         struct gf_data *g = td->io_ops_data;
15
16         dprint(FD_FILE, "fio prep\n");
17
18         if (!ddir_rw(io_u->ddir))
19                 return 0;
20
21         if (LAST_POS(f) != -1ULL && LAST_POS(f) == io_u->offset)
22                 return 0;
23
24         if (glfs_lseek(g->fd, io_u->offset, SEEK_SET) < 0) {
25                 td_verror(td, errno, "lseek");
26                 return 1;
27         }
28
29         return 0;
30 }
31
32 static enum fio_q_status fio_gf_queue(struct thread_data *td, struct io_u *io_u)
33 {
34         struct gf_data *g = td->io_ops_data;
35         int ret = 0;
36
37         dprint(FD_FILE, "fio queue len %lu\n", io_u->xfer_buflen);
38         fio_ro_check(td, io_u);
39
40         if (io_u->ddir == DDIR_READ)
41                 ret = glfs_read(g->fd, io_u->xfer_buf, io_u->xfer_buflen, 0);
42         else if (io_u->ddir == DDIR_WRITE)
43                 ret = glfs_write(g->fd, io_u->xfer_buf, io_u->xfer_buflen, 0);
44         else if (io_u->ddir == DDIR_SYNC)
45                 ret = glfs_fsync(g->fd);
46         else if (io_u->ddir == DDIR_DATASYNC)
47                 ret = glfs_fdatasync(g->fd);
48         else {
49                 log_err("unsupported operation.\n");
50                 io_u->error = EINVAL;
51                 return FIO_Q_COMPLETED;
52         }
53         dprint(FD_FILE, "fio len %lu ret %d\n", io_u->xfer_buflen, ret);
54         if (io_u->file && ret >= 0 && ddir_rw(io_u->ddir))
55                 LAST_POS(io_u->file) = io_u->offset + ret;
56
57         if (ret != (int)io_u->xfer_buflen) {
58                 if (ret >= 0) {
59                         io_u->resid = io_u->xfer_buflen - ret;
60                         io_u->error = 0;
61                         return FIO_Q_COMPLETED;
62                 } else
63                         io_u->error = errno;
64         }
65
66         if (io_u->error) {
67                 log_err("IO failed.\n");
68                 td_verror(td, io_u->error, "xfer");
69         }
70
71         return FIO_Q_COMPLETED;
72
73 }
74
75 static struct ioengine_ops ioengine = {
76         .name = "gfapi",
77         .version = FIO_IOOPS_VERSION,
78         .init = fio_gf_setup,
79         .cleanup = fio_gf_cleanup,
80         .prep = fio_gf_prep,
81         .queue = fio_gf_queue,
82         .open_file = fio_gf_open_file,
83         .close_file = fio_gf_close_file,
84         .unlink_file = fio_gf_unlink_file,
85         .get_file_size = fio_gf_get_file_size,
86         .options = gfapi_options,
87         .option_struct_size = sizeof(struct gf_options),
88         .flags = FIO_SYNCIO | FIO_DISKLESSIO,
89 };
90
91 static void fio_init fio_gf_register(void)
92 {
93         register_ioengine(&ioengine);
94 }
95
96 static void fio_exit fio_gf_unregister(void)
97 {
98         unregister_ioengine(&ioengine);
99 }