From: Luiz Capitulino <lcapitulino@redhat.com>
To: Martin Kletzander <mkletzan@redhat.com>
Cc: qemu-devel@nongnu.org, Anthony Liguori <aliguori@amazon.com>,
Markus Armbruster <armbru@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3] qmp: expose list of supported character device backends
Date: Tue, 11 Feb 2014 11:40:11 -0500 [thread overview]
Message-ID: <20140211114011.4380d86a@redhat.com> (raw)
In-Reply-To: <feaf8aa168ebae036d5dba2dae46b67d8f3040ba.1391255319.git.mkletzan@redhat.com>
On Sat, 1 Feb 2014 12:52:42 +0100
Martin Kletzander <mkletzan@redhat.com> wrote:
> Introduce 'query-chardev-backends' QMP command which lists all
> supported character device backends.
>
> Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Applied to the qmp branch, thanks.
> ---
> v3:
> - Omit commas at the end of list in JSON
> v2:
> - Version changed from "1.8.0" to "2.0"
>
> qapi-schema.json | 22 ++++++++++++++++++++++
> qemu-char.c | 19 +++++++++++++++++++
> qmp-commands.hx | 41 +++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 82 insertions(+)
>
> diff --git a/qapi-schema.json b/qapi-schema.json
> index 05ced9d..ebd278a 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.
> diff --git a/qemu-char.c b/qemu-char.c
> index 30c5a6a..c88f1c4 100644
> --- a/qemu-char.c
> +++ b/qemu-char.c
> @@ -3432,6 +3432,25 @@ ChardevInfoList *qmp_query_chardev(Error **errp)
> return chr_list;
> }
>
> +ChardevBackendInfoList *qmp_query_chardev_backends(Error **errp)
> +{
> + ChardevBackendInfoList *backend_list = NULL;
> + CharDriver *c = NULL;
> + GSList *i = NULL;
> +
> + for (i = backends; i; i = i->next) {
> + ChardevBackendInfoList *info = g_malloc0(sizeof(*info));
> + c = i->data;
> + info->value = g_malloc0(sizeof(*info->value));
> + info->value->name = g_strdup(c->name);
> +
> + info->next = backend_list;
> + backend_list = info;
> + }
> +
> + return backend_list;
> +}
> +
> CharDriverState *qemu_chr_find(const char *name)
> {
> CharDriverState *chr;
> diff --git a/qmp-commands.hx b/qmp-commands.hx
> index cce6b81..8a0e832 100644
> --- a/qmp-commands.hx
> +++ b/qmp-commands.hx
> @@ -1924,6 +1924,47 @@ EQMP
> },
>
> SQMP
> +query-chardev-backends
> +-------------
> +
> +List available character device backends.
> +
> +Each backend is represented by a json-object, the returned value is a json-array
> +of all backends.
> +
> +Each json-object contains:
> +
> +- "name": backend name (json-string)
> +
> +Example:
> +
> +-> { "execute": "query-chardev-backends" }
> +<- {
> + "return":[
> + {
> + "name":"udp"
> + },
> + {
> + "name":"tcp"
> + },
> + {
> + "name":"unix"
> + },
> + {
> + "name":"spiceport"
> + }
> + ]
> + }
> +
> +EQMP
> +
> + {
> + .name = "query-chardev-backends",
> + .args_type = "",
> + .mhandler.cmd_new = qmp_marshal_input_query_chardev_backends,
> + },
> +
> +SQMP
> query-block
> -----------
>
> --
> 1.8.5.3
>
prev parent reply other threads:[~2014-02-11 16:41 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-01 11:52 [Qemu-devel] [PATCH v3] qmp: expose list of supported character device backends Martin Kletzander
2014-02-03 18:03 ` Eric Blake
2014-02-10 21:16 ` Luiz Capitulino
2014-02-10 21:36 ` Eric Blake
2014-02-11 8:32 ` Markus Armbruster
2014-02-11 13:14 ` Eric Blake
2014-02-11 15:51 ` Luiz Capitulino
2014-02-11 16:24 ` Eric Blake
2014-02-11 16:40 ` Luiz Capitulino [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140211114011.4380d86a@redhat.com \
--to=lcapitulino@redhat.com \
--cc=aliguori@amazon.com \
--cc=armbru@redhat.com \
--cc=mkletzan@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.