[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC V2 08/16] qcow2: Count QCowHashNode creation metrics.
From: |
Benoît Canet |
Subject: |
[Qemu-devel] [RFC V2 08/16] qcow2: Count QCowHashNode creation metrics. |
Date: |
Wed, 6 Feb 2013 13:32:11 +0100 |
---
block/qcow2-dedup.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/block/qcow2-dedup.c b/block/qcow2-dedup.c
index 454a94f..5a79906 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 V2 05/16] qcow2: Collect unaligned writes missing data reads metric., (continued)
- [Qemu-devel] [RFC V2 05/16] qcow2: Collect unaligned writes missing data reads metric., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 06/16] qcow2: Collect deduplicated cluster metric., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 14/16] qcow2: Add qcow2_dedup_update_metrics to compute dedup RAM usage., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 15/16] qcow2: returns deduplication metrics and status via bdrv_get_info(), Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 10/16] qcow2: Count cluster deleted metric, Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 11/16] qcow2: Count deduplication refcount overflow metric., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 07/16] qcow2: Collect undeduplicated cluster metric., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 02/16] qcow2: Enable the deduplication feature., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 04/16] qcow2: Initialize deduplication metrics., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 08/16] qcow2: Count QCowHashNode creation metrics.,
Benoît Canet <=
- [Qemu-devel] [RFC V2 09/16] qcow2: Count QCowHashNode removal from tree for metrics., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 16/16] qapi: Return virtual block device deduplication metrics in QMP, Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 12/16] qapi: Add support for deduplication infos in qapi-schema.json., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 13/16] block: Add deduplication metrics to BlockDriverInfo., Benoît Canet, 2013/02/06