From 25309a33aa949413e8c69fd879b5964758de8c38 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 10 Jan 2007 11:33:14 +0100 Subject: [PATCH] [PATCH] Reversed order of thinktime_blocks modulo operation We wish to find the remainder of block count vs thinktime_blocks, not the other way around. This makes thinktime_blocks work correctly. Signed-off-by: Jens Axboe --- fio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.c b/fio.c index 28f6376d..dd526264 100644 --- a/fio.c +++ b/fio.c @@ -452,7 +452,7 @@ static void do_io(struct thread_data *td) unsigned long long b; b = td->io_blocks[0] + td->io_blocks[1]; - if (!(td->thinktime_blocks % b)) + if (!(b % td->thinktime_blocks)) usec_sleep(td, td->thinktime); } } -- 2.25.1