diff mbox

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

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

Commit Message

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

Patch

diff --git a/qapi-schema.json b/qapi-schema.json
index ff85d1c..5f371c8 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -3162,30 +3162,6 @@ 
   'returns': ['RxFilterInfo'] }
 
 ##
-# @BlockdevOptionsBlkdebug
-#
-# Driver specific block device options for blkdebug.
-#
-# @image:           underlying raw block device (or image file)
-#
-# @config:          #optional filename of the configuration file
-#
-# @align:           #optional required alignment for requests in bytes
-#
-# @inject-error:    #optional array of error injection descriptions
-#
-# @set-state:       #optional array of state-change descriptions
-#
-# Since: 2.0
-##
-{ 'type': 'BlockdevOptionsBlkdebug',
-  'data': { 'image': 'BlockdevRef',
-            '*config': 'str',
-            '*align': 'int',
-            '*inject-error': ['BlkdebugInjectErrorOptions'],
-            '*set-state': ['BlkdebugSetStateOptions'] } }
-
-##
 # @BlockdevOptionsBlkverify
 #
 # Driver specific block device options for blkverify.
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 82299b2..cb42a86 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -1311,3 +1311,27 @@ 
             '*state': 'int',
             'new_state': 'int' } }
 
+##
+# @BlockdevOptionsBlkdebug
+#
+# Driver specific block device options for blkdebug.
+#
+# @image:           underlying raw block device (or image file)
+#
+# @config:          #optional filename of the configuration file
+#
+# @align:           #optional required alignment for requests in bytes
+#
+# @inject-error:    #optional array of error injection descriptions
+#
+# @set-state:       #optional array of state-change descriptions
+#
+# Since: 2.0
+##
+{ 'type': 'BlockdevOptionsBlkdebug',
+  'data': { 'image': 'BlockdevRef',
+            '*config': 'str',
+            '*align': 'int',
+            '*inject-error': ['BlkdebugInjectErrorOptions'],
+            '*set-state': ['BlkdebugSetStateOptions'] } }
+