X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Fsolarisaio.c;h=906a154a2eee3093274f3537cdf4bf40bcf1751c;hb=4aae38a645f3315ca2f8cc57a7ec4110ba7d8319;hp=d499f5749ffd7fb51e0b55e881162bc38e43fa59;hpb=da28353c3fb45a8a6ee00d1133efd483c0ae684c;p=fio.git diff --git a/engines/solarisaio.c b/engines/solarisaio.c index d499f574..906a154a 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; @@ -213,6 +222,7 @@ static struct ioengine_ops ioengine = { .cleanup = fio_solarisaio_cleanup, .open_file = generic_open_file, .close_file = generic_close_file, + .get_file_size = generic_get_file_size, }; #else /* FIO_HAVE_SOLARISAIO */ @@ -224,7 +234,7 @@ static struct ioengine_ops ioengine = { */ static int fio_solarisaio_init(struct thread_data fio_unused *td) { - fprintf(stderr, "fio: solarisaio not available\n"); + log_err("fio: solarisaio not available\n"); return 1; }