diff options
author | Thomas Huth | 2019-09-04 07:27:39 +0200 |
---|---|---|
committer | Laurent Vivier | 2019-09-19 12:01:48 +0200 |
commit | 976e8c54142586285f71f524308e4715f6e04e2d (patch) | |
tree | 16a70fa9d8bc21c44cb51df2914aa5bdaea3d6bf /tests/migration | |
parent | cutils: Move size_to_str() from "qemu-common.h" to "qemu/cutils.h" (diff) | |
download | qemu-976e8c54142586285f71f524308e4715f6e04e2d.tar.gz qemu-976e8c54142586285f71f524308e4715f6e04e2d.tar.xz qemu-976e8c54142586285f71f524308e4715f6e04e2d.zip |
Replace '-machine accel=xyz' with '-accel xyz'
We've got a separate option to configure the accelerator nowadays, which
is shorter to type and the preferred way of specifying an accelerator.
Use it in the source and examples to show that it is the favored option.
(However, do not touch the places yet which also specify other machine
options or multiple accelerators - these are currently still better
handled with one single "-machine" statement instead)
Signed-off-by: Thomas Huth <thuth@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20190904052739.22123-1-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'tests/migration')
-rw-r--r-- | tests/migration/guestperf/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/migration/guestperf/engine.py b/tests/migration/guestperf/engine.py index f13dbea800..1dd04ce33b 100644 --- a/tests/migration/guestperf/engine.py +++ b/tests/migration/guestperf/engine.py @@ -287,7 +287,7 @@ class Engine(object): cmdline = "'" + cmdline + "'" argv = [ - "-machine", "accel=kvm", + "-accel", "kvm", "-cpu", "host", "-kernel", self._kernel, "-initrd", self._initrd, |