diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-02-21 12:06:57 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-02-21 14:09:17 +0100 |
commit | 5b1638bc49b7bb5686a3351611c24ab7863306f1 (patch) | |
tree | 16e4393e9bf44997a9595066148a0525a0b80794 | |
parent | 79216718f921505347bbfc61a4161adef6185cf2 (diff) | |
download | qemu-5b1638bc49b7bb5686a3351611c24ab7863306f1.zip qemu-5b1638bc49b7bb5686a3351611c24ab7863306f1.tar.gz qemu-5b1638bc49b7bb5686a3351611c24ab7863306f1.tar.bz2 |
spice: do not stop spice if VM is paused
spice_server_vm_start/stop() was added to help migration state (commit
f5bb039c6d97ef3e664094eab3c9a4dc1824ed73).
However, a paused VM could keep running the spice server. This will
allow a Spice client to keep sending commands to a spice chardev. This
allows to stop/cont a VM from a Spice monitor port. Character
devices (vdagent/usb/smartcard/..) should not read from Spice when the
VM is paused.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Tested-by: Victor Toso <victortoso@redhat.com>
Message-id: 20190221110703.5775-6-marcandre.lureau@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | ui/spice-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/spice-core.c b/ui/spice-core.c index 1cc9960..4d38497 100644 --- a/ui/spice-core.c +++ b/ui/spice-core.c @@ -628,7 +628,7 @@ static void vm_change_state_handler(void *opaque, int running, { if (running) { qemu_spice_display_start(); - } else { + } else if (state != RUN_STATE_PAUSED) { qemu_spice_display_stop(); } } |