From: Jens Axboe Date: Fri, 8 Jul 2011 06:33:37 +0000 (+0200) Subject: Rewrite posixaio back off comment to be closer to actual English X-Git-Tag: fio-1.56~25 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=def1d8e3019d8757b8214691013880ebb414d396;p=fio.git Rewrite posixaio back off comment to be closer to actual English Signed-off-by: Jens Axboe --- diff --git a/engines/posixaio.c b/engines/posixaio.c index 867b5f72..a84eb773 100644 --- a/engines/posixaio.c +++ b/engines/posixaio.c @@ -186,7 +186,9 @@ static int fio_posixaio_queue(struct thread_data *td, if (ret) { /* * At least OSX has a very low limit on the number of pending - * IOs, so if it will return EAGAIN. + * IOs, so if it returns EAGAIN, we are out of resources + * to queue more. Just return FIO_Q_BUSY to naturally + * drop off at this depth. */ if (errno == EAGAIN) return FIO_Q_BUSY;