[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC V2 13/16] block: Add deduplication metrics to BlockDri
From: |
Benoît Canet |
Subject: |
[Qemu-devel] [RFC V2 13/16] block: Add deduplication metrics to BlockDriverInfo. |
Date: |
Wed, 6 Feb 2013 13:32:16 +0100 |
---
include/block/block.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/include/block/block.h b/include/block/block.h
index 162f8a9..4d61ff4 100644
--- a/include/block/block.h
+++ b/include/block/block.h
@@ -29,6 +29,9 @@ typedef struct BlockDriverInfo {
/* offset at which the VM state can be saved (0 if not possible) */
int64_t vm_state_offset;
bool is_dirty;
+ bool has_dedup;
+ DedupStatus dedup_status;
+ BlockDeduplicationMetrics dedup_metrics;
} BlockDriverInfo;
typedef struct BlockFragInfo {
--
1.7.10.4
- [Qemu-devel] [RFC V2 11/16] qcow2: Count deduplication refcount overflow metric., (continued)
- [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, 2013/02/06
- [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 <=