diff options
| author | Joelle van Dyne <j@getutm.app> | 2022-05-06 21:18:50 -0700 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-06-14 10:34:36 +0200 |
| commit | 0631d4b448454ae8a1ab091c447e3f71ab6e088a (patch) | |
| tree | 28e1d5bef8ed7e4ec7ee847c7f18007d6169c0a1 /hw/usb/redirect.c | |
| parent | f471e8b060798f26a7fc339c6152f82f22a7b33d (diff) | |
| download | focaccia-qemu-0631d4b448454ae8a1ab091c447e3f71ab6e088a.tar.gz focaccia-qemu-0631d4b448454ae8a1ab091c447e3f71ab6e088a.zip | |
usbredir: avoid queuing hello packet on snapshot restore
When launching QEMU with "-loadvm", usbredir_create_parser() should avoid setting up the hello packet (just as with "-incoming". On the latest version of libusbredir, usbredirparser_unserialize() will return error if the parser is not "pristine." Signed-off-by: Joelle van Dyne <j@getutm.app> Message-Id: <20220507041850.98716-1-j@getutm.app> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb/redirect.c')
| -rw-r--r-- | hw/usb/redirect.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c index fd7df599bc..1bd30efc3e 100644 --- a/hw/usb/redirect.c +++ b/hw/usb/redirect.c @@ -1280,7 +1280,8 @@ static void usbredir_create_parser(USBRedirDevice *dev) } #endif - if (runstate_check(RUN_STATE_INMIGRATE)) { + if (runstate_check(RUN_STATE_INMIGRATE) || + runstate_check(RUN_STATE_PRELAUNCH)) { flags |= usbredirparser_fl_no_hello; } usbredirparser_init(dev->parser, VERSION, caps, USB_REDIR_CAPS_SIZE, |