diff options
| author | Martin Kletzander | 2014-02-01 12:52:42 +0100 |
|---|---|---|
| committer | Luiz Capitulino | 2014-02-17 17:57:23 +0100 |
| commit | 77d1c3c63fb18c3675d8c80262bbd172f646556a (patch) | |
| tree | 8e26095c0a8f03259de43d2091cd2ae82f90497a /qapi-schema.json | |
| parent | Use error_is_set() only when necessary (diff) | |
| download | qemu-77d1c3c63fb18c3675d8c80262bbd172f646556a.tar.gz qemu-77d1c3c63fb18c3675d8c80262bbd172f646556a.tar.xz qemu-77d1c3c63fb18c3675d8c80262bbd172f646556a.zip | |
qmp: expose list of supported character device backends
Introduce 'query-chardev-backends' QMP command which lists all
supported character device backends.
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qapi-schema.json')
| -rw-r--r-- | qapi-schema.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 7cfb5e5d1e..9bca13a476 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -437,6 +437,28 @@ { 'command': 'query-chardev', 'returns': ['ChardevInfo'] } ## +# @ChardevBackendInfo: +# +# Information about a character device backend +# +# @name: The backend name +# +# Since: 2.0 +## +{ 'type': 'ChardevBackendInfo', 'data': {'name': 'str'} } + +## +# @query-chardev-backends: +# +# Returns information about character device backends. +# +# Returns: a list of @ChardevBackendInfo +# +# Since: 2.0 +## +{ 'command': 'query-chardev-backends', 'returns': ['ChardevBackendInfo'] } + +## # @DataFormat: # # An enumeration of data format. |
