diff options
author | Kevin Wolf | 2016-10-20 14:40:22 +0200 |
---|---|---|
committer | Kevin Wolf | 2016-10-27 19:05:23 +0200 |
commit | cbc14ac9c3e199df759e2847b2301e2b990a8537 (patch) | |
tree | a69833f8702c781228fad213f73d869bfa2ec0fd /block/io.c | |
parent | raw: Implement .bdrv_co_ioctl instead of .bdrv_aio_ioctl (diff) | |
download | qemu-cbc14ac9c3e199df759e2847b2301e2b990a8537.tar.gz qemu-cbc14ac9c3e199df759e2847b2301e2b990a8537.tar.xz qemu-cbc14ac9c3e199df759e2847b2301e2b990a8537.zip |
block: Remove bdrv_aio_ioctl()
It is unused now.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'block/io.c')
-rw-r--r-- | block/io.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/block/io.c b/block/io.c index 370c7d8128..79cbbdf769 100644 --- a/block/io.c +++ b/block/io.c @@ -2522,33 +2522,6 @@ out: return co.ret; } -static void coroutine_fn bdrv_co_aio_ioctl_entry(void *opaque) -{ - BlockAIOCBCoroutine *acb = opaque; - acb->req.error = bdrv_co_ioctl(acb->common.bs, - acb->req.req, acb->req.buf); - bdrv_co_complete(acb); -} - -BlockAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, - unsigned long int req, void *buf, - BlockCompletionFunc *cb, void *opaque) -{ - BlockAIOCBCoroutine *acb = qemu_aio_get(&bdrv_em_co_aiocb_info, - bs, cb, opaque); - Coroutine *co; - - acb->need_bh = true; - acb->req.error = -EINPROGRESS; - acb->req.req = req; - acb->req.buf = buf; - co = qemu_coroutine_create(bdrv_co_aio_ioctl_entry, acb); - qemu_coroutine_enter(co); - - bdrv_co_maybe_schedule_bh(acb); - return &acb->common; -} - void *qemu_blockalign(BlockDriverState *bs, size_t size) { return qemu_memalign(bdrv_opt_mem_align(bs), size); |