summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/hypervisor/1866792
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/hypervisor/1866792
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/hypervisor/1866792')
-rw-r--r--results/classifier/gemma3:12b/hypervisor/186679262
1 files changed, 62 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/hypervisor/1866792 b/results/classifier/gemma3:12b/hypervisor/1866792
new file mode 100644
index 00000000..ac69a567
--- /dev/null
+++ b/results/classifier/gemma3:12b/hypervisor/1866792
@@ -0,0 +1,62 @@
+
+formating vdi-disk over nbd fails
+
+Hi,
+after creating a vdi-image with qemu-vdi and attaching it with qemu-nbd partitioning works fine, but the system hangs up during formating with mkfs.ext4.
+
+Same procedure with qcow2-image works fine 
+Tested on Fedora 31 kernel  5.5.7-200.fc31.x86_64
+
+
+-----------------
+#! /bin/sh
+
+qemu-img create -f qcow2 ~/test.qcow2 32G
+#qemu-img version 4.1.1 (qemu-4.1.1-1.fc31)
+
+modprobe nbd max_part=8
+qemu-nbd --connect=/dev/nbd2 ~/test.qcow2
+#qemu-nbd 4.1.1 (qemu-4.1.1-1.fc31)
+
+parted -s /dev/nbd2 "mklabel gpt"
+parted -s -a optimal /dev/nbd2 "mkpart test ext4 2048 32G "
+parted  -s -a optimal /dev/nbd2 "p"
+
+mkfs.ext4 /dev/nbd2p1
+#Format hangs up due to IO errors.
+#Tested on Fedora 31, kernel 5.5.7-200.fc31.x86_64
+
+mkdir /mnt/test_qcow2
+
+mount /dev/nbd2p1 /mnt/test_qcow2
+df -H
+
+-------------------
+#! /bin/sh
+
+qemu-img create -f vdi ~/test.vdi 32G
+
+modprobe nbd max_part=8
+qemu-nbd --connect=/dev/nbd4 ~/test.vdi
+
+parted -s /dev/nbd4 "mklabel gpt"
+parted -s -a optimal /dev/nbd4 "mkpart test ext4 2048 32G "
+parted  -s -a optimal /dev/nbd4 "p"
+
+mkfs.ext4 /dev/nbd4p1
+#Format hangs up due to IO errors 
+#Tested on Fedora 31 kernel  5.5.7-200.fc31.x86_64
+
+mkdir /mnt/test_vdi
+
+mount /dev/nbd4p1 /mnt/test_vdi
+df -H
+----------------------
+
+
+Kind regards
+  Eilert
+
+PS.: There may be a connection to this bug:
+​ 	
+#1661758 qemu-nbd causes data corruption in VDI-format disk images
\ No newline at end of file