summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorEric Blake2016-05-20 01:05:50 +0200
committerStefan Hajnoczi2016-06-07 15:40:51 +0200
commit41574268b7e61ab98384ca7048f3fec862433401 (patch)
tree17cc862299e256b05cce314f17712a166d49e2fe /block
parentblock/io: optimize bdrv_co_pwritev for small requests (diff)
downloadqemu-41574268b7e61ab98384ca7048f3fec862433401.tar.gz
qemu-41574268b7e61ab98384ca7048f3fec862433401.tar.xz
qemu-41574268b7e61ab98384ca7048f3fec862433401.zip
block: Move BlockRequest type to io.c
I was thrown by the fact that the public type BlockRequest had an anonymous union, but no obvious discriminator. Turns out that the only client of the second branch of the union was code internal to io.c, now that commit 91c6e4b killed public multiwrite, so move it into io.c and improve the comments. Signed-off-by: Eric Blake <eblake@redhat.com> Message-Id: <1463699150-19445-1-git-send-email-eblake@redhat.com> Signed-off-by: Fam Zheng <famz@redhat.com>
Diffstat (limited to 'block')
-rw-r--r--block/io.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/block/io.c b/block/io.c
index e12f303df5..a2fba6738a 100644
--- a/block/io.c
+++ b/block/io.c
@@ -1902,6 +1902,27 @@ void bdrv_aio_cancel_async(BlockAIOCB *acb)
/**************************************************************/
/* async block device emulation */
+typedef struct BlockRequest {
+ union {
+ /* Used during read, write, trim */
+ struct {
+ int64_t sector;
+ int nb_sectors;
+ int flags;
+ QEMUIOVector *qiov;
+ };
+ /* Used during ioctl */
+ struct {
+ int req;
+ void *buf;
+ };
+ };
+ BlockCompletionFunc *cb;
+ void *opaque;
+
+ int error;
+} BlockRequest;
+
typedef struct BlockAIOCBCoroutine {
BlockAIOCB common;
BlockRequest req;