diff options
author | BenoƮt Canet <benoit@irqsave.net> | 2014-01-23 21:31:33 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-01-24 16:06:47 +0100 |
commit | 6913c0c2ce00c0e886b2bd20b05073090fa5308a (patch) | |
tree | c3f2b2754a215872577f0e30913c22c14e1bc898 /qapi-schema.json | |
parent | dc364f4cdca0c49e37376b16c3ee0bf3b4a96f4c (diff) |
block: Allow the user to define "node-name" option both on command line and QMP.
Signed-off-by: Benoit Canet <benoit@irqsave.net>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index a433869962..26e370b0a0 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -4092,6 +4092,7 @@ # @id: #optional id by which the new block device can be referred to. # This is a required option on the top level of blockdev-add, and # currently not allowed on any other level. +# @node-name: #optional the name of a block driver state node (Since 2.0) # @discard: #optional discard-related options (default: ignore) # @cache: #optional cache-related options # @aio: #optional AIO backend (default: threads) @@ -4107,6 +4108,7 @@ { 'type': 'BlockdevOptionsBase', 'data': { 'driver': 'str', '*id': 'str', + '*node-name': 'str', '*discard': 'BlockdevDiscardOptions', '*cache': 'BlockdevCacheOptions', '*aio': 'BlockdevAioOptions', |