qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v1 14/72] qapi: Extract BlockDeviceIoStatus definiti


From: Benoît Canet
Subject: [Qemu-devel] [PATCH v1 14/72] qapi: Extract BlockDeviceIoStatus definition into qapi/block-core.json
Date: Sat, 31 May 2014 13:50:53 +0200

Signed-off-by: Benoit Canet <address@hidden>
---
 qapi-schema.json     | 15 ---------------
 qapi/block-core.json | 15 +++++++++++++++
 2 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/qapi-schema.json b/qapi-schema.json
index cdfa222..408602b 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -664,21 +664,6 @@
 { 'command': 'query-iothreads', 'returns': ['IOThreadInfo'] }
 
 ##
-# @BlockDeviceIoStatus:
-#
-# An enumeration of block device I/O status.
-#
-# @ok: The last I/O operation has succeeded
-#
-# @failed: The last I/O operation has failed
-#
-# @nospace: The last I/O operation has failed due to a no-space condition
-#
-# Since: 1.0
-##
-{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
-
-##
 # @BlockDeviceMapEntry:
 #
 # Entry in the metadata map of the device (returned by "qemu-img map")
diff --git a/qapi/block-core.json b/qapi/block-core.json
index e129db4..d355daa 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -250,3 +250,18 @@
             '*iops_rd_max': 'int', '*iops_wr_max': 'int',
             '*iops_size': 'int' } }
 
+##
+# @BlockDeviceIoStatus:
+#
+# An enumeration of block device I/O status.
+#
+# @ok: The last I/O operation has succeeded
+#
+# @failed: The last I/O operation has failed
+#
+# @nospace: The last I/O operation has failed due to a no-space condition
+#
+# Since: 1.0
+##
+{ 'enum': 'BlockDeviceIoStatus', 'data': [ 'ok', 'failed', 'nospace' ] }
+
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]