diff options
author | Kevin Wolf <kwolf@redhat.com> | 2016-11-18 16:47:54 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2017-06-26 14:51:15 +0200 |
commit | c5f1ad429cdf26023cf331075a7d327708e3db6d (patch) | |
tree | fb9c6e27e1a70da6e0bfbf1e47fc5e4121df6263 /include | |
parent | 0f714ec70673e734b4b0d5c99f7851c8d9e6fafe (diff) |
block: Remove bdrv_aio_readv/writev/flush()
These functions are unused now.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/block/block.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/block/block.h b/include/block/block.h index a4f09df95a..623e7fca97 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -353,14 +353,6 @@ BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs, const char *node_name, Error **errp); /* async block I/O */ -BlockAIOCB *bdrv_aio_readv(BdrvChild *child, int64_t sector_num, - QEMUIOVector *iov, int nb_sectors, - BlockCompletionFunc *cb, void *opaque); -BlockAIOCB *bdrv_aio_writev(BdrvChild *child, int64_t sector_num, - QEMUIOVector *iov, int nb_sectors, - BlockCompletionFunc *cb, void *opaque); -BlockAIOCB *bdrv_aio_flush(BlockDriverState *bs, - BlockCompletionFunc *cb, void *opaque); void bdrv_aio_cancel(BlockAIOCB *acb); void bdrv_aio_cancel_async(BlockAIOCB *acb); |