| Submitter | Benoît Canet |
|---|---|
| Date | Feb. 6, 2013, 12:32 p.m. |
| Message ID | <1360153939-9563-8-git-send-email-benoit@irqsave.net> |
| Download | mbox | patch |
| Permalink | /patch/218613/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c index 31988b6..454a94f 100644 --- a/block/qcow2-dedup.c +++ b/block/qcow2-dedup.c @@ -524,6 +524,7 @@ static int qcow2_count_next_non_dedupable_clusters(BlockDriverState *bs, uint8_t *data, int left_to_process) { + BDRVQcowState *s = bs->opaque; int i; int ret = 0; QCowHashNode *hash_node; @@ -546,6 +547,7 @@ static int qcow2_count_next_non_dedupable_clusters(BlockDriverState *bs, qcow2_build_and_insert_hash_node(bs, &ds->phash.hash); add_hash_to_undedupable_list(bs, ds); + s->dedup_metrics.non_deduplicated_clusters++; } return i;