| Submitter | Benoît Canet |
|---|---|
| Date | Feb. 6, 2013, 12:32 p.m. |
| Message ID | <1360153939-9563-7-git-send-email-benoit@irqsave.net> |
| Download | mbox | patch |
| Permalink | /patch/218654/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c index 708b62c..31988b6 100644 --- a/block/qcow2-dedup.c +++ b/block/qcow2-dedup.c @@ -400,10 +400,14 @@ static int qcow2_deduplicate_cluster(BlockDriverState *bs, } /* Increment the refcount of the cluster */ - return update_refcount(bs, - (hash_node->physical_sect / - s->cluster_sectors) << s->cluster_bits, - 1, 1, true); + ret = update_refcount(bs, + (hash_node->physical_sect / + s->cluster_sectors) << s->cluster_bits, + 1, 1, true); + + s->dedup_metrics.deduplicated_clusters++; + + return ret; } /* This function tries to deduplicate a given cluster.