From a9b56f82895d1fd86c3fa2bb9c913625d350ff47 Mon Sep 17 00:00:00 2001 From: Andrew de Quincey Date: Sun, 8 Aug 2010 21:04:50 +0100 Subject: posix-aio-compat: Fix async_conmtext for ioctl Set the async_context_id field when queuing an async ioctl call Signed-off-by: Andrew de Quincey Signed-off-by: Kevin Wolf (cherry picked from commit 34cf0081294513bc734896c9051c20ca6c19c3db) --- posix-aio-compat.c | 1 + 1 file changed, 1 insertion(+) diff --git a/posix-aio-compat.c b/posix-aio-compat.c index a67ffe3113..efc59683c0 100644 --- a/posix-aio-compat.c +++ b/posix-aio-compat.c @@ -599,6 +599,7 @@ BlockDriverAIOCB *paio_ioctl(BlockDriverState *bs, int fd, acb->aio_type = QEMU_AIO_IOCTL; acb->aio_fildes = fd; acb->ev_signo = SIGUSR2; + acb->async_context_id = get_async_context_id(); acb->aio_offset = 0; acb->aio_ioctl_buf = buf; acb->aio_ioctl_cmd = req; -- cgit v1.2.1