From: Paolo Bonzini <pbonzini@redhat.com>
To: Stefan Hajnoczi <stefanha@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [PATCH for-6.1] qemu-config: restore "machine" in qmp_query_command_line_options()
Date: Wed, 21 Jul 2021 18:46:05 +0200 [thread overview]
Message-ID: <03a42c38-6524-f2e0-db3f-c863e4d6b616@redhat.com> (raw)
In-Reply-To: <20210721151055.424580-1-stefanha@redhat.com>
On 21/07/21 17:10, Stefan Hajnoczi wrote:
> Commit d8fb7d0969d5c32b3d1b9e20b63ec6c0abe80be4 ("vl: switch -M parsing
> to keyval") stopped adding the "machine" QemuOptsList. This causes
> "machine" options to not show up in QMP query-command-line-options
> output. For example, libvirt cannot detect that kernel_irqchip support
> is available.
>
> Adjust the "machine" opts enumeration in
> qmp_query_command_line_options() so that options are properly reported.
>
> Fixes: d8fb7d0969d5 ("vl: switch -M parsing to keyval")
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
> ---
> I'm not familiar with this code. Better solutions welcome!
> ---
> util/qemu-config.c | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/util/qemu-config.c b/util/qemu-config.c
> index 84ee6dc4ea..52db5e743c 100644
> --- a/util/qemu-config.c
> +++ b/util/qemu-config.c
> @@ -255,8 +255,6 @@ CommandLineOptionInfoList *qmp_query_command_line_options(bool has_option,
> info->option = g_strdup(vm_config_groups[i]->name);
> if (!strcmp("drive", vm_config_groups[i]->name)) {
> info->parameters = get_drive_infolist();
> - } else if (!strcmp("machine", vm_config_groups[i]->name)) {
> - info->parameters = query_option_descs(machine_opts.desc);
> } else {
> info->parameters =
> query_option_descs(vm_config_groups[i]->desc);
> @@ -265,6 +263,13 @@ CommandLineOptionInfoList *qmp_query_command_line_options(bool has_option,
> }
> }
>
> + if (!has_option || !strcmp(option, "machine")) {
> + info = g_malloc0(sizeof(*info));
> + info->option = g_strdup("machine");
> + info->parameters = query_option_descs(machine_opts.desc);
> + QAPI_LIST_PREPEND(conf_list, info);
> + }
> +
> if (conf_list == NULL) {
> error_setg(errp, "invalid option name: %s", option);
> }
>
Given that there's an "if" either way, I guess it's easiest to do it
this way. It may be even be possible (later) to build the info from the
MachineClass properties instead.
Queued, thanks!
Paolo
prev parent reply other threads:[~2021-07-21 16:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-21 15:10 [PATCH for-6.1] qemu-config: restore "machine" in qmp_query_command_line_options() Stefan Hajnoczi
2021-07-21 16:46 ` Paolo Bonzini [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=03a42c38-6524-f2e0-db3f-c863e4d6b616@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).