Juan Quintela <quint...@redhat.com> wrote: > Patch consist: > diff --git a/aio.c b/aio.c > index f164a47..4185233 100644 > --- a/aio.c > +++ b/aio.c > @@ -93,7 +93,7 @@ int qemu_aio_set_fd_handler(int fd, > node->opaque = opaque; > } > > - qemu_set_fd_handler2(fd, NULL, io_read, io_write, opaque); > + qemu_set_fd_rw_handler(fd, io_read, io_write, opaque); > > return 0; > }
NACK myself. Sorry, this one can't be changed, aio_set_fd_handler() is still called with NULL's. Sorry, please review rest. Later, Juan.