diff mbox

[v1,09/72] qapi: Extract ImageInfoSpecificQCow2 definition into qapi/block-core.json

Message ID 1401537111-10221-10-git-send-email-benoit.canet@irqsave.net
State New
Headers show

Commit Message

BenoƮt Canet May 31, 2014, 11:50 a.m. UTC
Signed-off-by: Benoit Canet <benoit@irqsave.net>
---
 qapi-schema.json     | 21 ---------------------
 qapi/block-core.json | 21 +++++++++++++++++++++
 2 files changed, 21 insertions(+), 21 deletions(-)
diff mbox

Patch

diff --git a/qapi-schema.json b/qapi-schema.json
index 2507681..0c517f4 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -184,27 +184,6 @@ 
             'guest-panicked' ] }
 
 ##
-# @ImageInfoSpecificVmdk:
-#
-# @create-type: The create type of VMDK image
-#
-# @cid: Content id of image
-#
-# @parent-cid: Parent VMDK image's cid
-#
-# @extents: List of extent files
-#
-# Since: 1.7
-##
-{ 'type': 'ImageInfoSpecificVmdk',
-  'data': {
-      'create-type': 'str',
-      'cid': 'int',
-      'parent-cid': 'int',
-      'extents': ['ImageInfo']
-  } }
-
-##
 # @ImageInfoSpecific:
 #
 # A discriminated record of image format specific information structures.
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 3897c57..ed853d9 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -46,3 +46,24 @@ 
       '*lazy-refcounts': 'bool'
   } }
 
+##
+# @ImageInfoSpecificVmdk:
+#
+# @create-type: The create type of VMDK image
+#
+# @cid: Content id of image
+#
+# @parent-cid: Parent VMDK image's cid
+#
+# @extents: List of extent files
+#
+# Since: 1.7
+##
+{ 'type': 'ImageInfoSpecificVmdk',
+  'data': {
+      'create-type': 'str',
+      'cid': 'int',
+      'parent-cid': 'int',
+      'extents': ['ImageInfo']
+  } }
+