mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-14 15:36:25 +00:00
Handle deleted IOHandlers in a single buffer
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
ca96c316c0
commit
4bed983730
17
vl.c
17
vl.c
@ -2836,20 +2836,17 @@ void main_loop_wait(int nonblocking)
|
|||||||
if (ret > 0) {
|
if (ret > 0) {
|
||||||
IOHandlerRecord *pioh;
|
IOHandlerRecord *pioh;
|
||||||
|
|
||||||
QLIST_FOREACH(ioh, &io_handlers, next) {
|
|
||||||
if (!ioh->deleted && ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
|
|
||||||
ioh->fd_read(ioh->opaque);
|
|
||||||
}
|
|
||||||
if (!ioh->deleted && ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
|
|
||||||
ioh->fd_write(ioh->opaque);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* remove deleted IO handlers */
|
|
||||||
QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
|
QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
|
||||||
if (ioh->deleted) {
|
if (ioh->deleted) {
|
||||||
QLIST_REMOVE(ioh, next);
|
QLIST_REMOVE(ioh, next);
|
||||||
qemu_free(ioh);
|
qemu_free(ioh);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (ioh->fd_read && FD_ISSET(ioh->fd, &rfds)) {
|
||||||
|
ioh->fd_read(ioh->opaque);
|
||||||
|
}
|
||||||
|
if (ioh->fd_write && FD_ISSET(ioh->fd, &wfds)) {
|
||||||
|
ioh->fd_write(ioh->opaque);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user