Re: [Qemu-devel] [PATCH 04/10] spice: avoid spice runtime assert

2018-11-28 Thread Marc-André Lureau
Hi On Tue, Aug 7, 2018 at 5:48 PM Gerd Hoffmann wrote: > > On Fri, Aug 03, 2018 at 07:36:08PM +0200, Marc-André Lureau wrote: > > The Spice server doesn't like to be started or stopped twice . It > > aborts with: > > > > (process:6191): Spice-ERROR **: 19:29:35.912: > > red-worker.c:623:handle_de

Re: [Qemu-devel] [PATCH 04/10] spice: avoid spice runtime assert

2018-08-07 Thread Gerd Hoffmann
On Fri, Aug 03, 2018 at 07:36:08PM +0200, Marc-André Lureau wrote: > The Spice server doesn't like to be started or stopped twice . It > aborts with: > > (process:6191): Spice-ERROR **: 19:29:35.912: > red-worker.c:623:handle_dev_start: assertion `!worker->running' failed > > It's easy to avoid

[Qemu-devel] [PATCH 04/10] spice: avoid spice runtime assert

2018-08-03 Thread Marc-André Lureau
The Spice server doesn't like to be started or stopped twice . It aborts with: (process:6191): Spice-ERROR **: 19:29:35.912: red-worker.c:623:handle_dev_start: assertion `!worker->running' failed It's easy to avoid that situation since qemu spice_display_is_running tracks the server state. Sign