summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/hypervisor/1410
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/1410
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloadqemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
qemu-analysis-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/hypervisor/1410')
-rw-r--r--results/classifier/gemma3:12b/hypervisor/141015
1 files changed, 15 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/hypervisor/1410 b/results/classifier/gemma3:12b/hypervisor/1410
new file mode 100644
index 000000000..d383d0c4d
--- /dev/null
+++ b/results/classifier/gemma3:12b/hypervisor/1410
@@ -0,0 +1,15 @@
+
+system_powerdown only works once
+Description of problem:
+When the guest is configured to sleep on power button events, something in the ACPI states are not restored coming out of resume.  The first call to `system_powerdown` succeeds, but the second after waking the system is rejected in `acpi_pm1_evt_power_down()` since `ar->pm1.evt.en` is zero coming out of the resume path.
+
+There is probably something deeper (or perhaps in seabios?) since removing the test in that handler doesn't cause a second sleep either.
+Steps to reproduce:
+![image](/uploads/60876bde4027c42699f2edf936bd874d/image.png)
+1. Boot a guest configured to sleep when it receives a power button event
+2. `system_powerdown` from the monitor to tell it to sleep
+3. `info status` to verify that it is suspended
+4. Wake the guest, either with `system_wakeup` or moving the mouse or something
+5. `system_powerdown` has no effect
+Additional information:
+This is using qemu-7.2.0 built from source with a Windows 10 guest and IGD GPU+audio passthrough.