mirror of
https://github.com/mii443/qemu.git
synced 2025-08-23 15:48:20 +00:00
runstate: introduce suspended state
QEMU enters in this state when the guest suspends to ram (S3). This is important so that HMP users and QMP clients can know that the guest is suspended. QMP also has an event for this, but events are not reliable and are limited (ie. a client can connect to QEMU after the event has been emitted). Having a different state for S3 brings a new issue, though. Every device that doesn't run when the VM is stopped but wants to run when the VM is suspended has to check for RUN_STATE_SUSPENDED explicitly. This is the case for the keyboard and mouse devices, for example. Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
4
input.c
4
input.c
@ -130,7 +130,7 @@ void qemu_remove_led_event_handler(QEMUPutLEDEntry *entry)
|
||||
|
||||
void kbd_put_keycode(int keycode)
|
||||
{
|
||||
if (!runstate_is_running()) {
|
||||
if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) {
|
||||
return;
|
||||
}
|
||||
if (qemu_put_kbd_event) {
|
||||
@ -154,7 +154,7 @@ void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
|
||||
void *mouse_event_opaque;
|
||||
int width, height;
|
||||
|
||||
if (!runstate_is_running()) {
|
||||
if (!runstate_is_running() && !runstate_check(RUN_STATE_SUSPENDED)) {
|
||||
return;
|
||||
}
|
||||
if (QTAILQ_EMPTY(&mouse_handlers)) {
|
||||
|
Reference in New Issue
Block a user