Comments
Patch
@@ -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