From: Chen Gang <gang.chen.5...@gmail.com> When you ask for an accelerator not supported for your target, you get a bogus "accelerator does not exist" message:
$ qemu-system-arm -machine none,accel=kvm KVM not supported for this target "kvm" accelerator does not exist. No accelerator found! Suppress it. Signed-off-by: Chen Gang <gang.chen.5...@gmail.com> Reviewed-by: Markus Armbruster <arm...@redhat.com> Signed-off-by: Michael Tokarev <m...@tls.msk.ru> --- vl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vl.c b/vl.c index 9975e5a..db9ea90 100644 --- a/vl.c +++ b/vl.c @@ -2740,7 +2740,7 @@ static int configure_accelerator(QEMUMachine *machine) if (!accel_list[i].available()) { printf("%s not supported for this target\n", accel_list[i].name); - continue; + break; } *(accel_list[i].allowed) = true; ret = accel_list[i].init(machine); -- 1.7.10.4