Skip to content

Commit

Permalink
aio: call aio_notify after setting I/O handlers
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
bonzini committed Oct 30, 2012
1 parent 2f4dc3c commit 7ed2b24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions aio-posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ void aio_set_fd_handler(AioContext *ctx,
node->pfd.events = (io_read ? G_IO_IN | G_IO_HUP : 0);
node->pfd.events |= (io_write ? G_IO_OUT : 0);
}

aio_notify(ctx);
}

void aio_set_event_notifier(AioContext *ctx,
Expand Down
2 changes: 2 additions & 0 deletions aio-win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 7ed2b24

Please sign in to comment.