提交 3d5e90a5 编写于 作者: T Thomas Huth

Disallow colons in the parameter of "-accel"

Everybody who used something like "-machine accel=kvm:tcg" in the past
might be tempted to specify a similar list with the -accel parameter,
too, for example "-accel kvm:tcg". However, this is not how this
options is thought to be used, since each "-accel" should only take care
of one specific accelerator.

In the long run, we really should rework the "-accel" code completely,
so that it does not set "-machine accel=..." anymore internally, but
is completely independent from "-machine". For the short run, let's
make sure that users cannot use "-accel xyz:tcg", so that we avoid
that we have to deal with such cases in the wild later.

Message-Id: <20190930123505.11607-1-thuth@redhat.com>
Signed-off-by: NThomas Huth <thuth@redhat.com>
上级 e423455c
...@@ -120,7 +120,7 @@ static void test_cdboot(gconstpointer data) ...@@ -120,7 +120,7 @@ static void test_cdboot(gconstpointer data)
{ {
QTestState *qts; QTestState *qts;
qts = qtest_initf("-accel kvm:tcg -no-shutdown %s%s", (const char *)data, qts = qtest_initf("-M accel=kvm:tcg -no-shutdown %s%s", (const char *)data,
isoimage); isoimage);
boot_sector_test(qts); boot_sector_test(qts);
qtest_quit(qts); qtest_quit(qts);
......
...@@ -3554,6 +3554,11 @@ int main(int argc, char **argv, char **envp) ...@@ -3554,6 +3554,11 @@ int main(int argc, char **argv, char **envp)
g_slist_free(accel_list); g_slist_free(accel_list);
exit(0); exit(0);
} }
if (optarg && strchr(optarg, ':')) {
error_report("Don't use ':' with -accel, "
"use -M accel=... for now instead");
exit(1);
}
opts = qemu_opts_create(qemu_find_opts("machine"), NULL, opts = qemu_opts_create(qemu_find_opts("machine"), NULL,
false, &error_abort); false, &error_abort);
qemu_opt_set(opts, "accel", optarg, &error_abort); qemu_opt_set(opts, "accel", optarg, &error_abort);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册