test-runner: Quiet a warning about msize

We seem to be not specifying the msize for the root filesystem, which
results in this warning being printed:

emu-system-x86_64: warning: 9p: degraded performance: a reasonable high msize should be chosen on client/guest side (chosen msize is <= 8192). See https://wiki.qemu.org/Documentation/9psetup#msize for details.

There doesn't seem to be much performance difference in the end since
iwd does not process large files.
This commit is contained in:
Denis Kenzior 2021-05-25 15:17:02 -05:00
parent efa5b0cc62
commit 074ed35b3d
1 changed files with 1 additions and 1 deletions

View File

@ -1620,7 +1620,7 @@ class Main:
'-append',
'console=ttyS0,115200n8 earlyprintk=serial \
rootfstype=9p root=/dev/root \
rootflags=trans=virtio,version=9p2000.u \
rootflags=trans=virtio,msize=1048576,version=9p2000.u \
acpi=off pci=noacpi %s ro \
mac80211_hwsim.radios=0 %s' % (kern_log, options),
'-cpu', 'host', '-smp', str(smp)