| Submitter | Kevin Wolf |
|---|---|
| Date | May 20, 2010, 1:10 p.m. |
| Message ID | <1274361043-25862-2-git-send-email-kwolf@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/53068/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/aio.c b/aio.c index f164a47..2f08655 100644 --- a/aio.c +++ b/aio.c @@ -113,7 +113,9 @@ void qemu_aio_flush(void) qemu_aio_wait(); QLIST_FOREACH(node, &aio_handlers, node) { - ret |= node->io_flush(node->opaque); + if (node->io_flush) { + ret |= node->io_flush(node->opaque); + } } } while (qemu_bh_poll() || ret > 0); }