gus: Do not manually free the state, qdev does it for us
[qemu] / aio.c
diff --git a/aio.c b/aio.c
index dc9b85d..efc63fd 100644 (file)
--- a/aio.c
+++ b/aio.c
@@ -112,7 +112,7 @@ void qemu_aio_flush(void)
         LIST_FOREACH(node, &aio_handlers, node) {
             ret |= node->io_flush(node->opaque);
         }
-    } while (ret > 0);
+    } while (qemu_bh_poll() || ret > 0);
 }
 
 void qemu_aio_wait(void)