Re: [Qemu-devel] [PATCH v2] accel: cleanup error output

2017-07-17 Thread Thomas Huth
On 17.07.2017 16:45, Laurent Vivier wrote: > Only emit "XXX accelerator not found", if there are not > further accelerators listed. eg > >accel=kvm:tcg > > doesn't print a "KVM accelerator not found" warning > when it falls back to tcg, but a > >accel=kvm > > prints a warning, since no

Re: [Qemu-devel] [PATCH v2] accel: cleanup error output

2017-07-17 Thread Eric Blake
On 07/17/2017 09:45 AM, Laurent Vivier wrote: > Only emit "XXX accelerator not found", if there are not > further accelerators listed. eg > >accel=kvm:tcg > > doesn't print a "KVM accelerator not found" warning > when it falls back to tcg, but a > >accel=kvm > > prints a warning, since

[Qemu-devel] [PATCH v2] accel: cleanup error output

2017-07-17 Thread Laurent Vivier
Only emit "XXX accelerator not found", if there are not further accelerators listed. eg accel=kvm:tcg doesn't print a "KVM accelerator not found" warning when it falls back to tcg, but a accel=kvm prints a warning, since no fallback is given. Suggested-by: Daniel P. Berrange Suggested-b