summaryrefslogtreecommitdiffstats
path: root/results/classifier/zero-shot/105/boot/2400
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/boot/2400
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/105/boot/2400')
-rw-r--r--results/classifier/zero-shot/105/boot/240056
1 files changed, 56 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/105/boot/2400 b/results/classifier/zero-shot/105/boot/2400
new file mode 100644
index 00000000..8f846688
--- /dev/null
+++ b/results/classifier/zero-shot/105/boot/2400
@@ -0,0 +1,56 @@
+boot: 0.916
+device: 0.871
+instruction: 0.849
+graphic: 0.840
+semantic: 0.832
+mistranslation: 0.829
+socket: 0.657
+network: 0.653
+KVM: 0.555
+other: 0.506
+vnc: 0.436
+assembly: 0.282
+
+Qemu fails to boot snapshot image if its header is qcow2 but its payload and backing image extension are luks
+Description of problem:
+Qemu fails to recognize snapshot image E:\\test_snapshot.qcow2 saying Volume is not in LUKS format
+
+You need three commands to reproduce:
+
+`qemu-img create -f luks --object secret,id=sec0,data=123 -o key-secret=sec0 E:\test.luks 1G`
+
+`qemu-img create --object secret,id=sec0,data=123 -f qcow2 -o encrypt.format=luks,encrypt.key-secret=sec0 -b E:\test.luks -F luks E:\test_snapshot.qcow2`
+
+`qemu-system-x86_64 -drive file=E:\test_snapshot.qcow2,format=luks,key-secret=sec0 -object secret,id=sec0,data=123`
+
+This error is printed:
+
+`qemu-system-x86_64: -drive file=E:\test_snapshot.qcow2,format=luks,key-secret=sec0: Volume is not in LUKS format`
+
+But fourth command shows that payload of `E:\test_snapshot.qcow2` has LUKS format:
+
+`qemu-img info E:\test_snapshot.qcow2`
+
+\[output\]
+
+```bash
+virtual size: 1 GiB (1073741824 bytes)
+disk size: 2.25 MiB
+encrypted: yes
+cluster_size: 65536
+backing file: E:\test.luks
+backing file format: luks
+Format specific information:
+ compat: 1.1
+ compression type: zlib
+ lazy refcounts: false
+ refcount bits: 16
+ encrypt:
+ ivgen alg: plain64
+ detached header: false
+ hash alg: sha256
+ cipher alg: aes-256
+ uuid: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
+ format: luks
+ cipher mode: xts ...
+```