On Tue, 08/29 14:34, Philippe Mathieu-Daudé wrote:
> > + self._args = [ \
> > + "-nodefaults", "-m", "2G",
> > + "-cpu", "host",
> > + "-netdev", "user,id=vnet,hostfwd=:0.0.0.0:0-:22",
> > + "-device", "virtio-net-pci,netdev=vnet",
> > + "-vnc", ":0,to=20",
> > + "-serial", "file:%s" % os.path.join(self._tmpdir,
> > "serial.out")]
> > + if vcpus:
> > + self._args += ["-smp", str(vcpus)]
>
> What about enabling mttcg which isn't default?
>
> self._args += ["--accel", "tcg,thread=multi"]
Any specific reason to enable it? I think it is not available on older QEMU.
>
> > + if os.access("/dev/kvm", os.R_OK | os.W_OK):
> > + self._args += ["-enable-kvm"]
> > + else:
> > + logging.info("KVM not available, not using -enable-kvm")
> > + self._data_args = []
> [...]
Fam