diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-09-27 19:27:43 +0530 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2012-09-28 17:57:54 +0200 |
commit | 2db2bfc0ccac5fd68dbf0ceb70fbc372c5d8a8c7 (patch) | |
tree | 431af6bb4551199090c84cfe011fc1b56195cb72 /aio.c | |
parent | ca0defb95c69f88a905d64adbe253e7bb8fde14a (diff) | |
download | qemu-2db2bfc0ccac5fd68dbf0ceb70fbc372c5d8a8c7.zip qemu-2db2bfc0ccac5fd68dbf0ceb70fbc372c5d8a8c7.tar.gz qemu-2db2bfc0ccac5fd68dbf0ceb70fbc372c5d8a8c7.tar.bz2 |
aio: Another fix to the walking_handlers logic
The AIO dispatch loop will call QLIST_REMOVE and g_free even if there
are other pending calls to qemu_aio_wait outside the current one.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'aio.c')
-rw-r--r-- | aio.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -159,14 +159,14 @@ bool qemu_aio_wait(void) /* if we have any readable fds, dispatch event */ if (ret > 0) { - walking_handlers++; - /* we have to walk very carefully in case * qemu_aio_set_fd_handler is called while we're walking */ node = QLIST_FIRST(&aio_handlers); while (node) { AioHandler *tmp; + walking_handlers++; + if (!node->deleted && FD_ISSET(node->fd, &rdfds) && node->io_read) { @@ -181,13 +181,13 @@ bool qemu_aio_wait(void) tmp = node; node = QLIST_NEXT(node, node); - if (tmp->deleted) { + walking_handlers--; + + if (!walking_handlers && tmp->deleted) { QLIST_REMOVE(tmp, node); g_free(tmp); } } - - walking_handlers--; } return true; |