--- block/qcow2-dedup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c index 0f095a9..d22e2a4 100644 --- a/block/qcow2-dedup.c +++ b/block/qcow2-dedup.c @@ -289,6 +289,7 @@ static void qcow2_build_and_insert_hash_node(BlockDriverState *bs, QCOW_FLAG_EMPTY, QCOW_FLAG_EMPTY); g_tree_insert(s->dedup_tree_by_hash, &hash_node->hash, hash_node); + s->dedup_metrics.ram_hash_creations++; } /* @@ -1043,6 +1044,7 @@ static void qcow2_dedup_insert_hash_node(BlockDriverState *bs, g_tree_insert(s->dedup_tree_by_hash, &hash_node->hash, hash_node); g_tree_insert(s->dedup_tree_by_sect, &hash_node->physical_sect, hash_node); + s->dedup_metrics.ram_hash_creations++; } /* This load the QCowHashNode corresponding to a given cluster index into ram -- 1.7.10.4
- [Qemu-devel] [RFC V1 07/14] qcow2: Count QCowHashNode remova... Benoît Canet
- [Qemu-devel] [RFC V1 13/14] qcow2: returns deduplication met... Benoît Canet
- [Qemu-devel] [RFC V1 11/14] block: Add deduplication metrics... Benoît Canet
- [Qemu-devel] [RFC V1 05/14] qcow2: Collect undeduplicated cl... Benoît Canet
- [Qemu-devel] [RFC V1 01/14] qcow2: Add deduplication metrics... Benoît Canet
- [Qemu-devel] [RFC V1 08/14] qcow2: Count cluster deleted met... Benoît Canet
- [Qemu-devel] [RFC V1 12/14] qcow2: Add qcow2_dedup_update_me... Benoît Canet
- [Qemu-devel] [RFC V1 06/14] qcow2: Count QCowHashNode creati... Benoît Canet
- [Qemu-devel] [RFC V1 09/14] qcow2: Count deduplication refco... Benoît Canet
- [Qemu-devel] [RFC V1 10/14] qapi: Add support for deduplicat... Benoît Canet
- [Qemu-devel] [RFC V1 04/14] qcow2: Collect deduplicated clus... Benoît Canet