docker-qemu/6.1/qemu-signals.patch

21 lines
689 B
Diff
Raw Normal View History

Origin: https://bugs.launchpad.net/qemu/+bug/1217339/comments/2
Origin: https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg03039.html
2021-08-24 20:48:22 +00:00
diff --git a/softmmu/runstate.c b/softmmu/runstate.c
index ce8977c6a2..392e4c88be 100644
--- a/softmmu/runstate.c
+++ b/softmmu/runstate.c
@@ -613,7 +613,11 @@ void qemu_system_killed(int signal, pid_t pid)
/* Cannot call qemu_system_shutdown_request directly because
* we are in a signal handler.
*/
- shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL;
+ if (signal == SIGHUP) {
+ powerdown_requested = 1;
+ } else {
+ shutdown_requested = SHUTDOWN_CAUSE_HOST_SIGNAL;
+ }
qemu_notify_event();
}