diff options
author | Andrew de Quincey <adq@lidskialf.net> | 2010-08-08 21:04:50 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2010-08-30 18:44:22 +0200 |
commit | a9b56f82895d1fd86c3fa2bb9c913625d350ff47 (patch) | |
tree | 9987cbbe2eab1cd692fd4a5ad41b573b20fadcde | |
parent | f891f9f74dac3622848ea3c10d11ac1c0b81869c (diff) |
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 <adq@lidskialf.net>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
(cherry picked from commit 34cf0081294513bc734896c9051c20ca6c19c3db)
-rw-r--r-- | posix-aio-compat.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |