summary refs log tree commit diff stats
path: root/results/classifier/105/graphic/739
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-03 12:04:13 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-03 12:04:13 +0000
commit256709d2eb3fd80d768a99964be5caa61effa2a0 (patch)
tree05b2352fba70923126836a64b6a0de43902e976a /results/classifier/105/graphic/739
parent2ab14fa96a6c5484b5e4ba8337551bb8dcc79cc5 (diff)
downloadqemu-analysis-256709d2eb3fd80d768a99964be5caa61effa2a0.tar.gz
qemu-analysis-256709d2eb3fd80d768a99964be5caa61effa2a0.zip
add new classifier result
Diffstat (limited to 'results/classifier/105/graphic/739')
-rw-r--r--results/classifier/105/graphic/73930
1 files changed, 30 insertions, 0 deletions
diff --git a/results/classifier/105/graphic/739 b/results/classifier/105/graphic/739
new file mode 100644
index 000000000..b566b16e1
--- /dev/null
+++ b/results/classifier/105/graphic/739
@@ -0,0 +1,30 @@
+graphic: 0.730
+mistranslation: 0.347
+semantic: 0.319
+instruction: 0.293
+device: 0.274
+socket: 0.191
+vnc: 0.180
+other: 0.168
+assembly: 0.154
+boot: 0.150
+network: 0.123
+KVM: 0.058
+
+qemu option -snapshot not work for blockdev disk
+Description of problem:
+If disk image configured with a -blockdev option, option -snapshot not work: all changes write to disk image instead of temporary files.
+Steps to reproduce:
+1. Run qemu guest with -blockdev disk image file and -snapshot options
+2. Create file test.txt on guest disk
+3. Power off guest
+4. Run qemu guest again
+5. File test.txt present on guest disk
+Additional information:
+When i replace -blockdev options to legacy -drive option
+```
+-snapshot
+-drive if=none,id=ssd1-format,media=disk,cache=none,aio=native,discard=unmap,detect-zeroes=unmap,format=qcow2,file=images/windows21h2.qcow2
+-device scsi-hd,bus=scsi0.0,channel=0,scsi-id=0,lun=0,device_id=drive-scsi0-0-0-0,drive=ssd1-format,id=scsi0-0-0-0,write-cache=on,bootindex=1
+```
+-snapshot option work fine