Re: [PATCH] qmp: fix aio_poll() assertion failure on Windows

2020-11-02 Thread Mark Cave-Ayland
On 21/10/2020 07:40, Volker Rümelin wrote: Commit 9ce44e2ce2 "qmp: Move dispatcher to a coroutine" modified aio_poll() in util/aio-posix.c to avoid an assertion failure. This change is missing in util/aio-win32.c. Apply the changes to util/aio-posix.c to util/aio-win32.c too. This fixes an asse

Re: [PATCH] qmp: fix aio_poll() assertion failure on Windows

2020-10-21 Thread Stefan Hajnoczi
On Wed, Oct 21, 2020 at 08:40:33AM +0200, Volker Rümelin wrote: > Commit 9ce44e2ce2 "qmp: Move dispatcher to a coroutine" modified > aio_poll() in util/aio-posix.c to avoid an assertion failure. This > change is missing in util/aio-win32.c. > > Apply the changes to util/aio-posix.c to util/aio-win

[PATCH] qmp: fix aio_poll() assertion failure on Windows

2020-10-21 Thread Volker Rümelin
Commit 9ce44e2ce2 "qmp: Move dispatcher to a coroutine" modified aio_poll() in util/aio-posix.c to avoid an assertion failure. This change is missing in util/aio-win32.c. Apply the changes to util/aio-posix.c to util/aio-win32.c too. This fixes an assertion failure on Windows whenever QEMU exits.