Improve depth marking
[fio.git] / engines / sync.c
CommitLineData
2866c82d 1/*
a31041ea 2 * sync/psync engine
da751ca9
JA
3 *
4 * IO engine that does regular read(2)/write(2) with lseek(2) to transfer
a31041ea 5 * data and IO engine that does regular pread(2)/pwrite(2) to transfer data.
2866c82d
JA
6 *
7 */
8#include <stdio.h>
9#include <stdlib.h>
10#include <unistd.h>
11#include <errno.h>
12#include <assert.h>
5f350952
JA
13
14#include "../fio.h"
2866c82d 15
2866c82d
JA
16static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
17{
53cdc686
JA
18 struct fio_file *f = io_u->file;
19
87dc1ab1
JA
20 if (io_u->ddir == DDIR_SYNC)
21 return 0;
02bcaa8c
JA
22 if (io_u->offset == f->last_completed_pos)
23 return 0;
87dc1ab1 24
53cdc686 25 if (lseek(f->fd, io_u->offset, SEEK_SET) == -1) {
e1161c32 26 td_verror(td, errno, "lseek");
2866c82d
JA
27 return 1;
28 }
29
30 return 0;
31}
32
2bd3eabc 33static int fio_io_end(struct thread_data *td, struct io_u *io_u, int ret)
2866c82d 34{
cec6b55d 35 if (ret != (int) io_u->xfer_buflen) {
22819ec2 36 if (ret >= 0) {
cec6b55d
JA
37 io_u->resid = io_u->xfer_buflen - ret;
38 io_u->error = 0;
36167d82 39 return FIO_Q_COMPLETED;
2866c82d
JA
40 } else
41 io_u->error = errno;
42 }
43
36167d82 44 if (io_u->error)
e1161c32 45 td_verror(td, io_u->error, "xfer");
2866c82d 46
36167d82 47 return FIO_Q_COMPLETED;
2866c82d
JA
48}
49
2bd3eabc 50static int fio_psyncio_queue(struct thread_data *td, struct io_u *io_u)
a31041ea 51{
2bd3eabc
JA
52 struct fio_file *f = io_u->file;
53 int ret;
54
55 fio_ro_check(td, io_u);
56
57 if (io_u->ddir == DDIR_READ)
58 ret = pread(f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
59 else if (io_u->ddir == DDIR_WRITE)
60 ret = pwrite(f->fd, io_u->xfer_buf, io_u->xfer_buflen, io_u->offset);
61 else
62 ret = fsync(f->fd);
63
64 return fio_io_end(td, io_u, ret);
65}
66
67static int fio_syncio_queue(struct thread_data *td, struct io_u *io_u)
68{
69 struct fio_file *f = io_u->file;
70 int ret;
71
72 fio_ro_check(td, io_u);
73
74 if (io_u->ddir == DDIR_READ)
75 ret = read(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
76 else if (io_u->ddir == DDIR_WRITE)
77 ret = write(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
78 else
79 ret = fsync(f->fd);
80
81 return fio_io_end(td, io_u, ret);
a31041ea 82}
83
84static struct ioengine_ops ioengine_rw = {
2866c82d
JA
85 .name = "sync",
86 .version = FIO_IOOPS_VERSION,
2866c82d
JA
87 .prep = fio_syncio_prep,
88 .queue = fio_syncio_queue,
b5af8293
JA
89 .open_file = generic_open_file,
90 .close_file = generic_close_file,
2866c82d
JA
91 .flags = FIO_SYNCIO,
92};
5f350952 93
a31041ea 94static struct ioengine_ops ioengine_prw = {
95 .name = "psync",
96 .version = FIO_IOOPS_VERSION,
2bd3eabc 97 .queue = fio_psyncio_queue,
a31041ea 98 .open_file = generic_open_file,
99 .close_file = generic_close_file,
100 .flags = FIO_SYNCIO,
101};
102
5f350952
JA
103static void fio_init fio_syncio_register(void)
104{
a31041ea 105 register_ioengine(&ioengine_rw);
106 register_ioengine(&ioengine_prw);
5f350952
JA
107}
108
109static void fio_exit fio_syncio_unregister(void)
110{
a31041ea 111 unregister_ioengine(&ioengine_rw);
112 unregister_ioengine(&ioengine_prw);
5f350952 113}