summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/socket/2584
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/zero-shot/105/socket/2584
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/105/socket/2584')
-rw-r--r--results/classifier/zero-shot/105/socket/258429
1 files changed, 29 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/105/socket/2584 b/results/classifier/zero-shot/105/socket/2584
new file mode 100644
index 00000000..d29d3e48
--- /dev/null
+++ b/results/classifier/zero-shot/105/socket/2584
@@ -0,0 +1,29 @@
+socket: 0.966
+graphic: 0.816
+network: 0.728
+device: 0.684
+semantic: 0.486
+instruction: 0.450
+boot: 0.335
+other: 0.321
+vnc: 0.313
+mistranslation: 0.223
+KVM: 0.185
+assembly: 0.054
+
+nbd URI wrong export name (regression in qemu 9.1)
+Description of problem:
+qemu with an nbd URI seems to pass the wrong export name to the server, if the exportname is `.`.  This seems
+to be a regression in qemu 9.1, because it didn't happen in 9.0.
+Steps to reproduce:
+```
+$ nbdkit -fv -U - null --run 'qemu-img info "nbd+unix:///.?socket=$unixsocket"'
+...
+nbdkit: null[1]: debug: null: open readonly=0 exportname="" tls=0
+```
+
+In qemu 9.0 this was correct:
+
+```
+nbdkit: null[1]: debug: null: open readonly=0 exportname="." tls=0
+```