[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/5] tests/vm: Use 'host' cpu when KVM is available,
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-devel] [PATCH 2/5] tests/vm: Use 'host' cpu when KVM is available, else default to 'max' |
Date: |
Mon, 16 Jul 2018 23:48:24 -0300 |
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
tests/vm/basevm.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/vm/basevm.py b/tests/vm/basevm.py
index 04089cd545..1f4ad04c32 100755
--- a/tests/vm/basevm.py
+++ b/tests/vm/basevm.py
@@ -70,7 +70,6 @@ class BaseVM(object):
self._stdout = self._devnull
self._args = [ \
"-nodefaults", "-m", "2G",
- "-cpu", "host",
"-netdev", "user,id=vnet,hostfwd=:127.0.0.1:0-:22",
"-device", "virtio-net-pci,netdev=vnet",
"-vnc", "127.0.0.1:0,to=20",
@@ -79,8 +78,10 @@ class BaseVM(object):
self._args += ["-smp", str(vcpus)]
if kvm_available():
self._args += ["-enable-kvm"]
+ self._args += ["-cpu", "host"]
else:
logging.info("KVM not available, not using -enable-kvm")
+ self._args += ["-cpu", "max"]
self._data_args = []
def _download_with_cache(self, url, sha256sum=None):
--
2.18.0
- [Qemu-devel] [PATCH 0/5] tests/vm: Improvements when KVM is not available, Philippe Mathieu-Daudé, 2018/07/16
- [Qemu-devel] [PATCH 1/5] tests/vm: Extract the kvm_available() handy function, Philippe Mathieu-Daudé, 2018/07/16
- [Qemu-devel] [PATCH 2/5] tests/vm: Use 'host' cpu when KVM is available, else default to 'max',
Philippe Mathieu-Daudé <=
- [Qemu-devel] [PATCH 3/5] tests/vm: Do not abuse parallelism when KVM is not available, Philippe Mathieu-Daudé, 2018/07/16
- [Qemu-devel] [RFC PATCH 4/5] tests/vm: Display remaining seconds to wait for a VM to start, Philippe Mathieu-Daudé, 2018/07/16
- [Qemu-devel] [RFC PATCH 5/5] tests/vm: When using TCG, wait longer for a VM to start, Philippe Mathieu-Daudé, 2018/07/16