qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [COMMIT 6e5d97d] Handle BH's queued by AIO completions in


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 6e5d97d] Handle BH's queued by AIO completions inqemu_aio_flush()
Date: Wed, 22 Jul 2009 16:26:28 -0000

From: Nolan <address@hidden>

Without this, the call to qemu_aio_flush during migration doesn't
actually flush all in-flight SCSI IOs.

Signed-off-by: Nolan Leake <nolan <at> sigbus.net>
Signed-off-by: Anthony Liguori <address@hidden>

diff --git a/aio.c b/aio.c
index dc9b85d..efc63fd 100644
--- 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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]