diff options
Diffstat (limited to 'results/classifier/zero-shot/108/other/1377163')
| -rw-r--r-- | results/classifier/zero-shot/108/other/1377163 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/108/other/1377163 b/results/classifier/zero-shot/108/other/1377163 new file mode 100644 index 000000000..c7f0c38cc --- /dev/null +++ b/results/classifier/zero-shot/108/other/1377163 @@ -0,0 +1,37 @@ +device: 0.849 +graphic: 0.843 +performance: 0.793 +KVM: 0.760 +other: 0.699 +semantic: 0.687 +debug: 0.498 +network: 0.487 +vnc: 0.462 +socket: 0.438 +PID: 0.426 +permissions: 0.362 +boot: 0.269 +files: 0.252 + +Does not add usb-host devices as they are hotplugged + +A commandline such as + +qemu-kvm -device usb-ehci,id=USBCtrl -device host-usb,bus=USBCtrl.0,hostbus=3 + +should automatically add all devices on the given bus (here: 3) not only initially, but also when new devices appear on that bus while Qemu runs. Currently, all devices on the bus are added initially, but new devices which are added to the (host) usb while Qemu runs have to be added manually. + +With some devices, I get a speed mismatch with ehci-usb: +qemu-system-x86_64: Warning: speed mismatch trying to attach usb device "USB Keyboard" (( speed) to bus "ehci.0", port "1" (high speed) + +nec-usb-xhci fixes the keyboard+usb-storage case, but it breaks a webcam: +qemu-system-x86_64: Warning: speed mismatch trying to attach usb device "Chicony WebCam" (high speed) to bus "usb.0", port "4.3" (full speed) + +Anyway, -device usb-host,... binds to only one device. If you disconnect that device, it will enumerate the next available one and use that. If you only have one port, then you might have more luck with the 'hostport' option. Example that adds all available ports (which might not be the best solution though): +qemu-system-x86_64 -usb -device usb-ehci,id=usb $(for i in {1..6};do echo -device usb-host,bus=usb.0,hostbus=2,hostport=1.$i;done) + +The QEMU project is currently considering to move its bug tracking to another system. For this we need to know which bugs are still valid and which could be closed already. Thus we are setting older bugs to "Incomplete" now. +If you still think this bug report here is valid, then please switch the state back to "New" within the next 60 days, otherwise this report will be marked as "Expired". Or mark it as "Fix Released" if the problem has been solved with a newer version of QEMU already. Thank you and sorry for the inconvenience. + +[Expired for QEMU because there has been no activity for 60 days.] + |