From: Tomohiro Kusumi Date: Mon, 23 Jan 2017 15:13:06 +0000 (+0900) Subject: Fix wrong comment on exit condition of threads/processes X-Git-Tag: fio-2.18~44 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=589d5d4fa38318111a68f8588a919a628548fe01 Fix wrong comment on exit condition of threads/processes 74f4b020 in 2013 has changed the exit condition from min to max, so sync the comment with 74f4b020. Signed-off-by: Tomohiro Kusumi Signed-off-by: Jens Axboe --- diff --git a/backend.c b/backend.c index fc647098..27e36bb0 100644 --- a/backend.c +++ b/backend.c @@ -1359,7 +1359,7 @@ static bool keep_running(struct thread_data *td) uint64_t diff; /* - * If the difference is less than the minimum IO size, we + * If the difference is less than the maximum IO size, we * are done. */ diff = limit - ddir_rw_sum(td->io_bytes);