diff options
Diffstat (limited to '')
| -rw-r--r-- | results/classifier/108/other/1614 | 16 | ||||
| -rw-r--r-- | results/classifier/108/other/1614521 | 23 | ||||
| -rw-r--r-- | results/classifier/108/other/1614609 | 67 |
3 files changed, 106 insertions, 0 deletions
diff --git a/results/classifier/108/other/1614 b/results/classifier/108/other/1614 new file mode 100644 index 000000000..417f191cc --- /dev/null +++ b/results/classifier/108/other/1614 @@ -0,0 +1,16 @@ +device: 0.775 +network: 0.688 +performance: 0.532 +semantic: 0.522 +graphic: 0.419 +PID: 0.359 +debug: 0.337 +boot: 0.321 +files: 0.307 +vnc: 0.297 +permissions: 0.291 +KVM: 0.202 +socket: 0.132 +other: 0.102 + +Add option to chardev pty for setting a named link to the allocated pty diff --git a/results/classifier/108/other/1614521 b/results/classifier/108/other/1614521 new file mode 100644 index 000000000..4b7cac3c5 --- /dev/null +++ b/results/classifier/108/other/1614521 @@ -0,0 +1,23 @@ +other: 0.864 +device: 0.784 +socket: 0.684 +performance: 0.676 +semantic: 0.670 +network: 0.651 +files: 0.463 +vnc: 0.455 +boot: 0.376 +graphic: 0.352 +debug: 0.317 +permissions: 0.125 +PID: 0.044 +KVM: 0.031 + +-display accepts "none[a-z,0-9]*" instead of 'none' + +When using the '-display' option the parameter 'none' is not the only string that causes the behaviour of 'none'. I can use '-display noneMICKEYMOUSE' and still have the none behaviour. + +Fixed in: + +https://git.qemu.org/?p=qemu.git;a=commitdiff;h=2c9498c3e44cd5574 + diff --git a/results/classifier/108/other/1614609 b/results/classifier/108/other/1614609 new file mode 100644 index 000000000..57626e4a6 --- /dev/null +++ b/results/classifier/108/other/1614609 @@ -0,0 +1,67 @@ +device: 0.871 +boot: 0.842 +other: 0.798 +vnc: 0.715 +files: 0.697 +network: 0.688 +socket: 0.685 +permissions: 0.683 +PID: 0.679 +KVM: 0.637 +performance: 0.632 +graphic: 0.528 +debug: 0.358 +semantic: 0.270 + +alphabetical order of monitor options + +Looking for the 'continue'/'resume' option I found this order that was not quite 'alphabetical'. +It had me overlook the 'cont' option at glance. Which is just a little impractical. + +... +boot_set bootdevice -- define new values for the boot device list +change device filename [format [read-only-mode]] -- change a removable medium, optional format +chardev-add args -- add chardev +chardev-remove id -- remove chardev +client_migrate_info protocol hostname port tls-port cert-subject -- set migration information for remote display +closefd closefd name -- close a file descriptor previously passed via SCM rights +commit device|all -- commit changes to the disk images (if -snapshot is used) or backing files +cpu index -- set the default CPU +cpu-add id -- add cpu +c|cont -- resume emulation +delvm tag|id -- delete a VM snapshot from its tag or id +... + +I tested this list with 'sort' just to make sure and make a point: + +$ cat Desktop/order-orig.txt +boot_set +change +chardev-add +chardev-remove +client_migrate_info +closefd +commit +cpu +cpu-add +c|cont +delvm +$ cat Desktop/order-orig.txt | sort +boot_set +c|cont +change +chardev-add +chardev-remove +client_migrate_info +closefd +commit +cpu +cpu-add +delvm +$ + +Should be fixed by this patch: https://<email address hidden>/ + +Fix has been included here: +https://gitlab.com/qemu-project/qemu/-/commit/ff688cd2c7c3a677b71e + |