23c02ace35
Although individual qemu-storage-daemon QMP commands are identical to QEMU QMP commands, qemu-storage-daemon only supports a subset of QEMU's QMP commands. Generate a manual page of just the commands supported by qemu-storage-daemon so that users know exactly what is available in qemu-storage-daemon. Add an h1 heading in storage-daemon/qapi/qapi-schema.json so that block-core.json is at the h2 heading level. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20201209103802.350848-2-stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
# -*- Mode: Python -*-
|
|
# vim: filetype=python
|
|
|
|
# Note that modules are shared with the QEMU main schema under the assumption
|
|
# that the storage daemon schema is a subset of the main schema. For the shared
|
|
# modules, no code is generated here, but we reuse the code files generated
|
|
# from the main schema.
|
|
#
|
|
# If you wish to extend the storage daemon schema to contain things that are
|
|
# not in the main schema, be aware that array types of types defined in shared
|
|
# modules are only generated if an array of the respective type is already used
|
|
# in the main schema. Therefore, if you use such arrays, you may need to define
|
|
# the array type in the main schema, even if it is unused outside of the
|
|
# storage daemon.
|
|
|
|
{ 'include': '../../qapi/pragma.json' }
|
|
|
|
##
|
|
# = Block devices
|
|
##
|
|
{ 'include': '../../qapi/block-core.json' }
|
|
{ 'include': '../../qapi/block-export.json' }
|
|
{ 'include': '../../qapi/char.json' }
|
|
{ 'include': '../../qapi/common.json' }
|
|
{ 'include': '../../qapi/control.json' }
|
|
{ 'include': '../../qapi/crypto.json' }
|
|
{ 'include': '../../qapi/introspect.json' }
|
|
{ 'include': '../../qapi/job.json' }
|
|
{ 'include': '../../qapi/qom.json' }
|
|
{ 'include': '../../qapi/sockets.json' }
|
|
{ 'include': '../../qapi/transaction.json' }
|