From: "Alex Bennée" <alex.bennee@linaro.org>
To: peter.maydell@linaro.org, pbonzini@redhat.com, rth@twiddle.net,
cota@braap.org
Cc: qemu-devel@nongnu.org, Thomas Huth <thuth@redhat.com>
Subject: [Qemu-devel] [PATCH v1 1/3] vl: Fix broken thread=xxx option of the --accel parameter
Date: Wed, 14 Jun 2017 15:02:07 +0100 [thread overview]
Message-ID: <20170614140209.29847-2-alex.bennee@linaro.org> (raw)
In-Reply-To: <20170614140209.29847-1-alex.bennee@linaro.org>
From: Thomas Huth <thuth@redhat.com>
Commit bde4d9205 ("Fix the -accel parameter and the documentation for
'hax'") introduced a regression by adding a new local accel_opts
variable which shadows the variable with the same name that is
declared at the beginning of the main() scope. This causes the
qemu_tcg_configure() call later to be always called with NULL, so
that the thread=xxx option gets ignored. Fix it by removing the
local accel_opts variable and use "opts" instead, which is meant
for storing temporary QemuOpts values.
And while we're at it, also change the exit(1) here to exit(0)
since asking for help is not an error.
Fixes: bde4d9205ee9def98852ff6054cdef4efd74e1f8
Reported-by: Markus Armbruster <armbru@redhat.com>
Reported-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
vl.c | 13 +++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/vl.c b/vl.c
index 32db19e3b9..59fea15488 100644
--- a/vl.c
+++ b/vl.c
@@ -3757,21 +3757,18 @@ int main(int argc, char **argv, char **envp)
qdev_prop_register_global(&kvm_pit_lost_tick_policy);
break;
}
- case QEMU_OPTION_accel: {
- QemuOpts *accel_opts;
-
+ case QEMU_OPTION_accel:
accel_opts = qemu_opts_parse_noisily(qemu_find_opts("accel"),
optarg, true);
optarg = qemu_opt_get(accel_opts, "accel");
if (!optarg || is_help_option(optarg)) {
error_printf("Possible accelerators: kvm, xen, hax, tcg\n");
- exit(1);
+ exit(0);
}
- accel_opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
- false, &error_abort);
- qemu_opt_set(accel_opts, "accel", optarg, &error_abort);
+ opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
+ false, &error_abort);
+ qemu_opt_set(opts, "accel", optarg, &error_abort);
break;
- }
case QEMU_OPTION_usb:
olist = qemu_find_opts("machine");
qemu_opts_parse_noisily(olist, "usb=on", false);
--
2.13.0
next prev parent reply other threads:[~2017-06-14 14:01 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-14 14:02 [Qemu-devel] [PATCH v1 0/3] Fixes for TCG hangs Alex Bennée
2017-06-14 14:02 ` Alex Bennée [this message]
2017-06-14 14:02 ` [Qemu-devel] [PATCH v1 2/3] tcg-runtime: light re-factor of lookup_tb_ptr Alex Bennée
2017-06-14 15:44 ` Richard Henderson
2017-06-14 16:07 ` Alex Bennée
2017-06-14 17:10 ` Pranith Kumar
2017-06-14 14:02 ` [Qemu-devel] [PATCH v1 3/3] tcg-runtime: short-circuit lookup_tb_ptr on IRQs Alex Bennée
2017-06-14 15:45 ` Richard Henderson
2017-06-14 16:08 ` Paolo Bonzini
2017-06-14 16:51 ` Richard Henderson
2017-06-14 17:08 ` Paolo Bonzini
2017-06-14 18:26 ` Richard Henderson
2017-06-14 19:07 ` Alex Bennée
2017-06-14 19:43 ` Richard Henderson
2017-06-16 20:01 ` Emilio G. Cota
2017-06-14 17:49 ` Alex Bennée
2017-06-14 17:53 ` Richard Henderson
2017-06-14 19:11 ` Peter Maydell
2017-06-14 19:19 ` Richard Henderson
2017-06-14 14:25 ` [Qemu-devel] [PATCH v1 0/3] Fixes for TCG hangs Philippe Mathieu-Daudé
2017-06-14 14:30 ` no-reply
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=20170614140209.29847-2-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=cota@braap.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=thuth@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).