[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC V2 00/16] QCOW2 deduplication metrics
From: |
Benoît Canet |
Subject: |
[Qemu-devel] [RFC V2 00/16] QCOW2 deduplication metrics |
Date: |
Wed, 6 Feb 2013 13:32:03 +0100 |
This patchset implements QMP metrics for the qcow2 deduplication.
It applies on top of the "QCOW2 deduplication core functionality" V6 patchset.
v2:
replace invalid order operator "<" by "==" in qapi-schema.json [Eric]
replace running by status which is an enum [Benoît/Eric]
Compute size of GtreeNode_Copy from RAM usage [Eric]
Benoît Canet (16):
qcow2: Add qcow2_co_dedup_resume to restart deduplication.
qcow2: Enable the deduplication feature.
qcow2: Add deduplication metrics structures.
qcow2: Initialize deduplication metrics.
qcow2: Collect unaligned writes missing data reads metric.
qcow2: Collect deduplicated cluster metric.
qcow2: Collect undeduplicated cluster metric.
qcow2: Count QCowHashNode creation metrics.
qcow2: Count QCowHashNode removal from tree for metrics.
qcow2: Count cluster deleted metric
qcow2: Count deduplication refcount overflow metric.
qapi: Add support for deduplication infos in qapi-schema.json.
block: Add deduplication metrics to BlockDriverInfo.
qcow2: Add qcow2_dedup_update_metrics to compute dedup RAM usage.
qcow2: returns deduplication metrics and status via bdrv_get_info()
qapi: Return virtual block device deduplication metrics in QMP
block.c | 36 +++++++++
block/qcow2-dedup.c | 214 ++++++++++++++++++++++++++++++++++++++++++++++++-
block/qcow2.c | 22 +++++
block/qcow2.h | 21 ++++-
include/block/block.h | 14 ++++
qapi-schema.json | 40 ++++++++-
6 files changed, 341 insertions(+), 6 deletions(-)
--
1.7.10.4
- [Qemu-devel] [RFC V2 00/16] QCOW2 deduplication metrics,
Benoît Canet <=
- [Qemu-devel] [RFC V2 01/16] qcow2: Add qcow2_co_dedup_resume to restart deduplication., Benoît Canet, 2013/02/06
- [Qemu-devel] [RFC V2 03/16] qcow2: Add deduplication metrics structures., Benoît Canet, 2013/02/06
- [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