X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fsync.c;h=6a5b7d391ed206a465f8b2d1cbd7fcf550305c8f;hp=f689cbe7888c7f4c3fe862672160ae177f2a6e96;hb=36167d82e5f49dee91c6d2cd426068edee90e36f;hpb=48097d5c61aa1718e6dd4b3b647ea2eb6f00fcfb diff --git a/engines/sync.c b/engines/sync.c index f689cbe7..6a5b7d39 100644 --- a/engines/sync.c +++ b/engines/sync.c @@ -11,34 +11,6 @@ #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; -} - static int fio_syncio_prep(struct thread_data *td, struct io_u *io_u) { struct fio_file *f = io_u->file; @@ -58,7 +30,6 @@ 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; @@ -73,45 +44,22 @@ static int fio_syncio_queue(struct thread_data *td, struct io_u *io_u) 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 + if (io_u->error) td_verror(td, io_u->error); - return io_u->error; -} - -static void fio_syncio_cleanup(struct thread_data *td) -{ - if (td->io_ops->data) { - free(td->io_ops->data); - td->io_ops->data = NULL; - } -} - -static int fio_syncio_init(struct thread_data *td) -{ - struct syncio_data *sd = malloc(sizeof(*sd)); - - sd->last_io_u = NULL; - td->io_ops->data = sd; - return 0; + return FIO_Q_COMPLETED; } static struct ioengine_ops ioengine = { .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, .flags = FIO_SYNCIO, };