From 45b56027da94b1513e991a67999d7bab51b77149 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 6 Oct 2014 21:00:10 -0600 Subject: [PATCH] t/dedupe: fix off-by 1.024 in bandwidth Signed-off-by: Jens Axboe --- t/dedupe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/dedupe.c b/t/dedupe.c index 69ebc8a9..b3ab0f9b 100644 --- a/t/dedupe.c +++ b/t/dedupe.c @@ -361,7 +361,7 @@ static void show_progress(struct worker_thread *threads, unsigned long total) this_items *= blocksize; tdiff = mtime_since_now(&last_tv); if (tdiff) { - this_items /= tdiff; + this_items = (this_items * 1000) / (tdiff * 1024); printf("%3.2f%% done (%luKB/sec)\r", perc, this_items); last_nitems = nitems; fio_gettime(&last_tv, NULL); -- 2.25.1