--- block/qcow2-dedup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c index 5a79906..e96ab00 100644 --- a/block/qcow2-dedup.c +++ b/block/qcow2-dedup.c @@ -841,6 +841,7 @@ static void qcow2_remove_hash_node(BlockDriverState *bs, BDRVQcowState *s = bs->opaque; g_tree_remove(s->dedup_tree_by_sect, &hash_node->physical_sect); g_tree_remove(s->dedup_tree_by_hash, &hash_node->hash); + s->dedup_metrics.ram_hash_deletions++; } /* This function removes a hash_node from the trees given a physical sector -- 1.7.10.4
- [Qemu-devel] [RFC V2 11/16] qcow2: Count deduplication refco... Benoît Canet
- [Qemu-devel] [RFC V2 05/16] qcow2: Collect unaligned writes ... Benoît Canet
- [Qemu-devel] [RFC V2 01/16] qcow2: Add qcow2_co_dedup_resume... Benoît Canet
- [Qemu-devel] [RFC V2 07/16] qcow2: Collect undeduplicated cl... Benoît Canet
- [Qemu-devel] [RFC V2 15/16] qcow2: returns deduplication met... Benoît Canet
- [Qemu-devel] [RFC V2 02/16] qcow2: Enable the deduplication ... Benoît Canet
- [Qemu-devel] [RFC V2 06/16] qcow2: Collect deduplicated clus... Benoît Canet
- [Qemu-devel] [RFC V2 04/16] qcow2: Initialize deduplication ... Benoît Canet
- [Qemu-devel] [RFC V2 08/16] qcow2: Count QCowHashNode creati... Benoît Canet
- [Qemu-devel] [RFC V2 09/16] qcow2: Count QCowHashNode remova... Benoît Canet
- [Qemu-devel] [RFC V2 16/16] qapi: Return virtual block devic... Benoît Canet
- [Qemu-devel] [RFC V2 12/16] qapi: Add support for deduplicat... Benoît Canet
- [Qemu-devel] [RFC V2 13/16] block: Add deduplication metrics... Benoît Canet