[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC V6 02/33] qmp: Add DedupStatus enum.
From: |
Benoît Canet |
Subject: |
[Qemu-devel] [RFC V6 02/33] qmp: Add DedupStatus enum. |
Date: |
Wed, 6 Feb 2013 13:31:35 +0100 |
---
qapi-schema.json | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/qapi-schema.json b/qapi-schema.json
index cdd8384..cf4e9d6 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -796,6 +796,24 @@
{ 'command': 'query-block', 'returns': ['BlockInfo'] }
##
+# @DedupStatus
+#
+# An enumeration of a virtual block device deduplication status.
+#
+# @stopped: The deduplication has been stopped
+#
+# @starting: The deduplication is starting
+#
+# @started: The deduplication is started
+#
+# @stopping: The deduplication is stopping
+#
+# Since: 1.5.0
+##
+{ 'enum': 'DedupStatus', 'data': [ 'stopped', 'starting', 'started',
+ 'stopping' ] }
+
+##
# @BlockDeviceStats:
#
# Statistics of a virtual block device or a block backing device.
--
1.7.10.4