summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/files/660366
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/660366
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloadqemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
qemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/files/660366')
-rw-r--r--results/classifier/gemma3:12b/files/66036620
1 files changed, 20 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/files/660366 b/results/classifier/gemma3:12b/files/660366
new file mode 100644
index 000000000..503035074
--- /dev/null
+++ b/results/classifier/gemma3:12b/files/660366
@@ -0,0 +1,20 @@
+
+"qemu-img convert -O qcow2 -o backing_file" makes huge images
+
+$ dd if=/dev/urandom bs=1M of=1.img count=4
+4+0 records in
+4+0 records out
+4194304 bytes (4,2 MB) copied, 1,0413 s, 4,0 MB/s
+$ qemu-img create -f qcow2 -b 1.img 2.img
+Formatting '2.img', fmt=qcow2 size=4194304 backing_file='1.img' encryption=off cluster_size=0 
+$ qemu-img convert -O qcow2 -o backing_file=1.img 2.img 3.img
+$ du -h ?.img
+4,1M	1.img
+144K	2.img
+4,3M	3.img
+
+The conversion result is bigger then the source!
+
+It appears that "-o backing_file" is not applied to data (as expected). I.e. all data is put into the resulting image: both from source image and "backing" image.
+
+Expected behavior is to put only data that is not present in backing_file.
\ No newline at end of file