diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-09-25 10:22:39 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-10-30 09:30:53 +0100 |
commit | 7ed2b24ce17f8fb7e36e4e8d113f2a30cbea142f (patch) | |
tree | f7cecf83b58fad39722149a02d1ac5d3886f6e74 /aio-win32.c | |
parent | 2f4dc3c1b2a453a8255d9b97c7cb87860123e495 (diff) |
aio: call aio_notify after setting I/O handlers
In the current code, this is done by qemu_set_fd_handler2, which is
called by qemu_aio_set_fd_handler. We need to keep the same behavior
even after removing the call to qemu_set_fd_handler2.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'aio-win32.c')
-rw-r--r-- | aio-win32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/aio-win32.c b/aio-win32.c index e460bd848a..a84eb71246 100644 --- a/aio-win32.c +++ b/aio-win32.c @@ -75,6 +75,8 @@ void aio_set_event_notifier(AioContext *ctx, node->io_notify = io_notify; node->io_flush = io_flush; } + + aio_notify(ctx); } bool aio_pending(AioContext *ctx) |