The following changes since commit aa58d2520204f5ae12291fae0289a90fb03dc587: Update email addresses (2010-06-09 09:49:38 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master YAMAMOTO Takashi (1): fix a weird check of the return value of aio_cancel. engines/posixaio.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/engines/posixaio.c b/engines/posixaio.c index 70282f2..7098d72 100644 --- a/engines/posixaio.c +++ b/engines/posixaio.c @@ -56,7 +56,7 @@ static int fio_posixaio_cancel(struct thread_data fio_unused *td, struct fio_file *f = io_u->file; int r = aio_cancel(f->fd, &io_u->aiocb); - if (r == 1 || r == AIO_CANCELED) + if (r == AIO_ALLDONE || r == AIO_CANCELED) return 0; return 1; -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html