summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/device/1391
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/device/1391
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloadqemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
qemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/device/1391')
-rw-r--r--results/classifier/gemma3:12b/device/139129
1 files changed, 29 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/device/1391 b/results/classifier/gemma3:12b/device/1391
new file mode 100644
index 000000000..6dbfe010d
--- /dev/null
+++ b/results/classifier/gemma3:12b/device/1391
@@ -0,0 +1,29 @@
+
+virtio-blk: BDRV_REQ_REGISTERED_BUF optimization hint crashes on macOS
+Description of problem:
+When using QEMU 7.2.0 on macOS with the virtio-blk drive, the process will exit and QMP shows a `BLOCK_IO_ERROR` event. This appears to be caused by this line: https://gitlab.com/qemu-project/qemu/-/blob/master/hw/block/virtio-blk.c#L405 introduced in https://gitlab.com/qemu-project/qemu/-/commit/baf422684d73c7bf38e2c18815e18d44fcf395b6
+
+Commenting that line out fixes the issue.
+Steps to reproduce:
+1. Run the QEMU command above with a Ubuntu 22.04 server ISO image.
+2. Follow the installer and try to get to the end.
+3. The process will crash before you can finish installing.
+Additional information:
+Following event appears on QMP:
+```
+{
+    data =     {
+        action = report;
+        device = "drive437EC806-41A4-4CCE-A747-713352E7C27C";
+        "node-name" = "#block785";
+        nospace = 0;
+        operation = write;
+        reason = "Invalid argument";
+    };
+    event = "BLOCK_IO_ERROR";
+    timestamp =     {
+        microseconds = 808474;
+        seconds = 1671867673;
+    };
+}
+```