Add pread/pwrite support to sync engine
[fio.git] / engines / sync.c
index f689cbe7888c7f4c3fe862672160ae177f2a6e96..3cd4e90ae4debe89bab56fe1e3be191e510832dc 100644 (file)
@@ -1,5 +1,8 @@
 /*
- * regular read/write sync io engine
+ * sync/psync engine
+ *
+ * IO engine that does regular read(2)/write(2) with lseek(2) to transfer
+ * data and IO engine that does regular pread(2)/pwrite(2) to transfer data.
  *
  */
 #include <stdio.h>
@@ -9,35 +12,8 @@
 #include <assert.h>
 
 #include "../fio.h"
-#include "../os.h"
-
-struct syncio_data {
-       struct io_u *last_io_u;
-};
-
-static int fio_syncio_getevents(struct thread_data *td, int fio_unused min,
-                               int max, struct timespec fio_unused *t)
-{
-       assert(max <= 1);
-
-       /*
-        * we can only have one finished io_u for sync io, since the depth
-        * is always 1
-        */
-       if (list_empty(&td->io_u_busylist))
-               return 0;
-
-       return 1;
-}
 
-static struct io_u *fio_syncio_event(struct thread_data *td, int event)
-{
-       struct syncio_data *sd = td->io_ops->data;
-
-       assert(event == 0);
-
-       return sd->last_io_u;
-}
+#define is_psync(td)    ((td)->io_ops->data == (void *) 1)
 
 static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
 {
@@ -49,7 +25,7 @@ static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
                return 0;
 
        if (lseek(f->fd, io_u->offset, SEEK_SET) == -1) {
-               td_verror(td, errno);
+               td_verror(td, errno, "lseek");
                return 1;
        }
 
@@ -58,69 +34,73 @@ static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u)
 
 static int fio_syncio_queue(struct thread_data *td, struct io_u *io_u)
 {
-       struct syncio_data *sd = td->io_ops->data;
        struct fio_file *f = io_u->file;
        int ret;
 
-       if (io_u->ddir == DDIR_READ)
-               ret = read(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
-       else if (io_u->ddir == DDIR_WRITE)
-               ret = write(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
-       else
+       fio_ro_check(td, io_u);
+
+       if (io_u->ddir == DDIR_READ) {
+               if (is_psync(td))
+                       ret = pread(f->fd, io_u->xfer_buf, io_u->xfer_buflen,io_u->offset);
+               else
+                       ret = read(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
+       } else if (io_u->ddir == DDIR_WRITE) {
+               if (is_psync(td))
+                       ret = pwrite(f->fd, io_u->xfer_buf, io_u->xfer_buflen,io_u->offset);
+               else
+                       ret = write(f->fd, io_u->xfer_buf, io_u->xfer_buflen);
+       } else
                ret = fsync(f->fd);
 
        if (ret != (int) io_u->xfer_buflen) {
-               if (ret > 0) {
+               if (ret >= 0) {
                        io_u->resid = io_u->xfer_buflen - ret;
                        io_u->error = 0;
-                       return ret;
+                       return FIO_Q_COMPLETED;
                } else
                        io_u->error = errno;
        }
 
-       if (!io_u->error)
-               sd->last_io_u = io_u;
-       else
-               td_verror(td, io_u->error);
-
-       return io_u->error;
-}
+       if (io_u->error)
+               td_verror(td, io_u->error, "xfer");
 
-static void fio_syncio_cleanup(struct thread_data *td)
-{
-       if (td->io_ops->data) {
-               free(td->io_ops->data);
-               td->io_ops->data = NULL;
-       }
+       return FIO_Q_COMPLETED;
 }
 
-static int fio_syncio_init(struct thread_data *td)
+static int fio_psyncio_init(struct thread_data *td)
 {
-       struct syncio_data *sd = malloc(sizeof(*sd));
-
-       sd->last_io_u = NULL;
-       td->io_ops->data = sd;
+       td->io_ops->data = (void *) 1;
        return 0;
 }
 
-static struct ioengine_ops ioengine = {
+static struct ioengine_ops ioengine_rw = {
        .name           = "sync",
        .version        = FIO_IOOPS_VERSION,
-       .init           = fio_syncio_init,
        .prep           = fio_syncio_prep,
        .queue          = fio_syncio_queue,
-       .getevents      = fio_syncio_getevents,
-       .event          = fio_syncio_event,
-       .cleanup        = fio_syncio_cleanup,
+       .open_file      = generic_open_file,
+       .close_file     = generic_close_file,
+       .flags          = FIO_SYNCIO,
+};
+
+static struct ioengine_ops ioengine_prw = {
+       .name           = "psync",
+       .version        = FIO_IOOPS_VERSION,
+       .queue          = fio_syncio_queue,
+       .init           = fio_psyncio_init,
+       .open_file      = generic_open_file,
+       .close_file     = generic_close_file,
        .flags          = FIO_SYNCIO,
 };
 
 static void fio_init fio_syncio_register(void)
 {
-       register_ioengine(&ioengine);
+       register_ioengine(&ioengine_rw);
+       register_ioengine(&ioengine_prw);
 }
 
 static void fio_exit fio_syncio_unregister(void)
 {
-       unregister_ioengine(&ioengine);
+       unregister_ioengine(&ioengine_rw);
+       unregister_ioengine(&ioengine_prw);
 }