From: Jens Axboe Date: Wed, 18 Oct 2006 13:14:35 +0000 (+0200) Subject: [PATCH] Verify eta time fix X-Git-Tag: fio-1.7~24 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=e732426492c17fcd3a7a47d90c00eeabf5ea65d9;hp=d9257beae0247e694c0d7c286a4088a2ebc53ccf [PATCH] Verify eta time fix Signed-off-by: Jens Axboe --- diff --git a/fio.c b/fio.c index 405346b6..968c96c7 100644 --- a/fio.c +++ b/fio.c @@ -1351,16 +1351,6 @@ static int thread_eta(struct thread_data *td, unsigned long elapsed) bytes_total = td->total_io_size; - /* - * if writing, bytes_total will be twice the size. If mixing, - * assume a 50/50 split and thus bytes_total will be 50% larger. - */ - if (td->verify) { - if (td_rw(td)) - bytes_total = bytes_total * 3 / 2; - else - bytes_total <<= 1; - } if (td->zone_size && td->zone_skip) bytes_total /= (td->zone_skip / td->zone_size);