X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=engines%2Fposixaio.c;h=9ee3ca6bfbe680ee4b78c5dc6350a6528e35729a;hp=ef4d78ebe8a58c03465eb33cdc58aa7f90b52d7c;hb=b5af82930ccfd7dda6a1b11794efb452eb76d8dc;hpb=f8fe35e8c9e88dd681ea151251d75f6116a958b4 diff --git a/engines/posixaio.c b/engines/posixaio.c index ef4d78eb..9ee3ca6b 100644 --- a/engines/posixaio.c +++ b/engines/posixaio.c @@ -67,8 +67,8 @@ static int fio_posixaio_prep(struct thread_data fio_unused *td, struct fio_file *f = io_u->file; aiocb->aio_fildes = f->fd; - aiocb->aio_buf = io_u->buf; - aiocb->aio_nbytes = io_u->buflen; + aiocb->aio_buf = io_u->xfer_buf; + aiocb->aio_nbytes = io_u->xfer_buflen; aiocb->aio_offset = io_u->offset; io_u->seen = 0; @@ -100,6 +100,7 @@ restart: default: io_u->error = err; case ECANCELED: + io_u->resid = io_u->xfer_buflen; case 0: pd->aio_events[r++] = io_u; io_u->seen = 1; @@ -151,10 +152,13 @@ static int fio_posixaio_queue(struct thread_data fio_unused *td, else ret = aio_fsync(O_SYNC, aiocb); - if (ret) + if (ret) { io_u->error = errno; - - return io_u->error; + td_verror(td, io_u->error, "xfer"); + return FIO_Q_COMPLETED; + } + + return FIO_Q_QUEUED; } static void fio_posixaio_cleanup(struct thread_data *td) @@ -190,6 +194,8 @@ static struct ioengine_ops ioengine = { .getevents = fio_posixaio_getevents, .event = fio_posixaio_event, .cleanup = fio_posixaio_cleanup, + .open_file = generic_open_file, + .close_file = generic_close_file, }; #else /* FIO_HAVE_POSIXAIO */