From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33381) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCUwg-0001zO-17 for qemu-devel@nongnu.org; Thu, 22 Aug 2013 09:29:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VCUwX-0006wG-GU for qemu-devel@nongnu.org; Thu, 22 Aug 2013 09:29:01 -0400 Received: from mx1.redhat.com ([209.132.183.28]:56746) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VCUwX-0006w6-9g for qemu-devel@nongnu.org; Thu, 22 Aug 2013 09:28:53 -0400 From: Stefan Hajnoczi Date: Thu, 22 Aug 2013 15:28:35 +0200 Message-Id: <1377178116-28488-2-git-send-email-stefanha@redhat.com> In-Reply-To: <1377178116-28488-1-git-send-email-stefanha@redhat.com> References: <1377178116-28488-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH 1/2] aio-win32: replace incorrect AioHandler->opaque usage with ->e List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Stefan Weil , Anthony Liguori , Stefan Hajnoczi The AioHandler->opaque field does not exist in aio-win32.c. The code that uses it was incorrectly copied from aio-posix.c. For Windows we can use AioHandler->e to match against AioContext->notifier. This patch fixes the Windows build for aio-win32.o. Signed-off-by: Stefan Hajnoczi --- aio-win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio-win32.c b/aio-win32.c index 78b2801..efb2d5a 100644 --- a/aio-win32.c +++ b/aio-win32.c @@ -125,7 +125,7 @@ bool aio_poll(AioContext *ctx, bool blocking) node->io_notify(node->e); /* aio_notify() does not count as progress */ - if (node->opaque != &ctx->notifier) { + if (node->e != &ctx->notifier) { progress = true; } } @@ -188,7 +188,7 @@ bool aio_poll(AioContext *ctx, bool blocking) node->io_notify(node->e); /* aio_notify() does not count as progress */ - if (node->opaque != &ctx->notifier) { + if (node->e != &ctx->notifier) { progress = true; } } -- 1.8.3.1