X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Fsolarisaio.c;h=069cda5347c903d9f458772508b2f6eed0d2fc39;hb=983a69d71e6f9c0c8f590f24d492f9efba19232b;hp=a48ec41825b67ceae574682ba73cc545bcd9156e;hpb=df9c26b10275a631e83e7cc92d5f7384998b2c49;p=fio.git diff --git a/engines/solarisaio.c b/engines/solarisaio.c index a48ec418..069cda53 100644 --- a/engines/solarisaio.c +++ b/engines/solarisaio.c @@ -62,7 +62,7 @@ static void wait_for_event(struct timeval *tv) io_u->resid = io_u->xfer_buflen - io_u->resultp.aio_return; io_u->error = 0; } else - io_u->error = io_u->resultp.aio_return; + io_u->error = io_u->resultp.aio_errno; /* * For SIGIO, we need a write barrier between the two, so that @@ -126,6 +126,15 @@ static int fio_solarisaio_queue(struct thread_data fio_unused *td, return FIO_Q_COMPLETED; } + if (io_u->ddir == DDIR_DATASYNC) { + if (sd->nr) + return FIO_Q_BUSY; + if (fdatasync(f->fd) < 0) + io_u->error = errno; + + return FIO_Q_COMPLETED; + } + if (sd->nr == sd->max_depth) return FIO_Q_BUSY;