From: Jens Axboe Date: Tue, 23 Sep 2014 20:29:21 +0000 (-0600) Subject: dedupe: improve wording in output X-Git-Tag: fio-2.1.13~51 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;ds=inline;h=a29716656fa239664f8fd451e09cf5fd69898dc2;p=fio.git dedupe: improve wording in output Signed-off-by: Jens Axboe --- diff --git a/t/dedupe.c b/t/dedupe.c index cf415883..03c5032b 100644 --- a/t/dedupe.c +++ b/t/dedupe.c @@ -382,12 +382,12 @@ static void iter_rb_tree(void) } while ((n = rb_next(n)) != NULL); - printf("Chunks=%lu, Extents=%lu\n", nchunks, nextents); + printf("Extents=%lu, Unique extents=%lu\n", nextents, nchunks); printf("De-dupe factor: %3.2f\n", (double) nextents / (double) nchunks); perc = 1.00 - ((double) nchunks / (double) nextents); perc *= 100.0; - printf("dedupe_percentage=%u\n", (int) (perc + 0.50)); + printf("Fio setting: dedupe_percentage=%u\n", (int) (perc + 0.50)); } static int usage(char *argv[])