diff options
-rw-r--r-- | qapi-schema.json | 14 | ||||
-rw-r--r-- | qapi/block-core.json | 1 | ||||
-rw-r--r-- | qapi/common.json | 14 |
3 files changed, 15 insertions, 14 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 4964d92..80c15da 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2816,20 +2816,6 @@ 'data': { 'info': 'ACPIOSTInfo' } } ## -# @IoOperationType: -# -# An enumeration of the I/O operation types -# -# @read: read operation -# -# @write: write operation -# -# Since: 2.1 -## -{ 'enum': 'IoOperationType', - 'data': [ 'read', 'write' ] } - -## # @rtc-reset-reinjection: # # This command will reset the RTC interrupt reinjection backlog. diff --git a/qapi/block-core.json b/qapi/block-core.json index 5379674..f4caa5c 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -5,6 +5,7 @@ ## { 'include': 'common.json' } +{ 'include': 'crypto.json' } { 'include': 'sockets.json' } ## diff --git a/qapi/common.json b/qapi/common.json index e2c5856..fc72d7e 100644 --- a/qapi/common.json +++ b/qapi/common.json @@ -132,6 +132,20 @@ { 'command': 'query-commands', 'returns': ['CommandInfo'] } ## +# @IoOperationType: +# +# An enumeration of the I/O operation types +# +# @read: read operation +# +# @write: write operation +# +# Since: 2.1 +## +{ 'enum': 'IoOperationType', + 'data': [ 'read', 'write' ] } + +## # @OnOffAuto: # # An enumeration of three options: on, off, and auto |