summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/files/1796
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/files/1796
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloadqemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
qemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/files/1796')
-rw-r--r--results/classifier/gemma3:12b/files/179617
1 files changed, 17 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/files/1796 b/results/classifier/gemma3:12b/files/1796
new file mode 100644
index 000000000..9e4e6e1c6
--- /dev/null
+++ b/results/classifier/gemma3:12b/files/1796
@@ -0,0 +1,17 @@
+
+qemu-img does not accept backing image file path, only file name
+Description of problem:
+In `qemu-img create ... -b <backing_image> ... <snapshot_image>`, <backing_image> cannot be a file path, but must be a file name. <backing_image> and <snapshot_image> are forced to be in the same directory for the command to work.
+Steps to reproduce:
+```
+$ mkdir test
+$ qemu-img create -f qcow2 test/a.img 1G
+...
+$ qemu-img create -f qcow2 -b test/a.img -F qcow2 test/a.img.snap
+qemu-img: test/a.img.snap: Could not open 'test/test/a.img': No such file or directory
+Could not open backing image.
+$ qemu-img create -f qcow2 -b a.img -F qcow2 test/a.img.snap
+...
+$ ls test
+a.img  a.img.snap
+```