diff options
Diffstat (limited to 'results/classifier/118/review/1470536')
| -rw-r--r-- | results/classifier/118/review/1470536 | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/results/classifier/118/review/1470536 b/results/classifier/118/review/1470536 new file mode 100644 index 000000000..347e2578f --- /dev/null +++ b/results/classifier/118/review/1470536 @@ -0,0 +1,79 @@ +mistranslation: 0.813 +graphic: 0.768 +device: 0.725 +files: 0.616 +ppc: 0.600 +semantic: 0.592 +network: 0.566 +performance: 0.554 +architecture: 0.456 +socket: 0.441 +kernel: 0.429 +vnc: 0.396 +peripherals: 0.392 +arm: 0.349 +PID: 0.329 +boot: 0.280 +register: 0.261 +TCG: 0.252 +debug: 0.252 +VMM: 0.240 +x86: 0.231 +virtual: 0.216 +risc-v: 0.210 +hypervisor: 0.183 +user-level: 0.178 +i386: 0.173 +permissions: 0.156 +KVM: 0.106 +assembly: 0.083 +-------------------- +hypervisor: 0.685 +debug: 0.678 +x86: 0.646 +user-level: 0.478 +i386: 0.457 +files: 0.089 +TCG: 0.083 +virtual: 0.076 +kernel: 0.076 +ppc: 0.059 +device: 0.050 +peripherals: 0.033 +VMM: 0.020 +arm: 0.016 +network: 0.013 +register: 0.011 +performance: 0.011 +architecture: 0.010 +PID: 0.009 +semantic: 0.009 +boot: 0.006 +socket: 0.004 +permissions: 0.004 +risc-v: 0.003 +KVM: 0.002 +graphic: 0.002 +assembly: 0.002 +vnc: 0.001 +mistranslation: 0.001 + +qemu-img incorrectly prints "qemu-img: Host floppy pass-through is deprecated" + +qemu-img incorrectly prints this warning when you use /dev/fd/<NN> to pass in file descriptors. A simple way to demonstrate this uses bash process substitution, so the following will only work if you are using bash as your shell: + +$ qemu-img info <( cat /dev/null ) +qemu-img: Host floppy pass-through is deprecated +Support for it will be removed in a future release. +qemu-img: Could not open '/dev/fd/63': Could not refresh total sector count: Illegal seek + +The root cause is a bug in block/raw-posix.c:floppy_probe_device() where it thinks anything starting with /dev/fd is a floppy drive, which is not the case here: + +http://git.qemu.org/?p=qemu.git;a=blob;f=block/raw-posix.c;h=cbe6574bf4da90a124436a40422dce3667da71e6;hb=HEAD#l2425 + +I sent a patch to qemu-devel which should fix this. + +Patch has been included here: +http://git.qemu.org/?p=qemu.git;a=commitdiff;h=25d9747b6427de825322 +... so I am assuming it's OK to close this ticket now. + |