diff mbox

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

Message ID 1401537111-10221-11-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     | 14 --------------
 qapi/block-core.json | 14 ++++++++++++++
 2 files changed, 14 insertions(+), 14 deletions(-)
diff mbox

Patch

diff --git a/qapi-schema.json b/qapi-schema.json
index 0c517f4..26bf23f 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -184,20 +184,6 @@ 
             'guest-panicked' ] }
 
 ##
-# @ImageInfoSpecific:
-#
-# A discriminated record of image format specific information structures.
-#
-# Since: 1.7
-##
-
-{ 'union': 'ImageInfoSpecific',
-  'data': {
-      'qcow2': 'ImageInfoSpecificQCow2',
-      'vmdk': 'ImageInfoSpecificVmdk'
-  } }
-
-##
 # @ImageInfo:
 #
 # Information about a QEMU image file
diff --git a/qapi/block-core.json b/qapi/block-core.json
index ed853d9..6aaddf7 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -67,3 +67,17 @@ 
       'extents': ['ImageInfo']
   } }
 
+##
+# @ImageInfoSpecific:
+#
+# A discriminated record of image format specific information structures.
+#
+# Since: 1.7
+##
+
+{ 'union': 'ImageInfoSpecific',
+  'data': {
+      'qcow2': 'ImageInfoSpecificQCow2',
+      'vmdk': 'ImageInfoSpecificVmdk'
+  } }
+