From 589d5d4fa38318111a68f8588a919a628548fe01 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Tue, 24 Jan 2017 00:13:06 +0900 Subject: [PATCH] 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 --- backend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1