t/dedupe: print dedupe ratio instead of made-up factor
Signed-off-by: Jens Axboe <axboe@fb.com>
diff --git a/t/dedupe.c b/t/dedupe.c
index fc28077..12ede8f 100644
--- a/t/dedupe.c
+++ b/t/dedupe.c
@@ -475,10 +475,11 @@
static void show_stat(uint64_t nextents, uint64_t nchunks)
{
- double perc;
+ double perc, ratio;
printf("Extents=%lu, Unique extents=%lu\n", (unsigned long) nextents, (unsigned long) nchunks);
- printf("De-dupe factor: %3.2f\n", (double) nextents / (double) nchunks);
+ ratio = (double) nextents / (double) nchunks;
+ printf("De-dupe ratio: 1:%3.2f\n", ratio - 1.0);
perc = 1.00 - ((double) nchunks / (double) nextents);
perc *= 100.0;