diff options
author | Fam Zheng <famz@redhat.com> | 2014-06-11 12:11:45 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2014-06-27 18:18:18 +0200 |
commit | 98e2d49241cb474a9fdd26852cbdbbcf67f18d54 (patch) | |
tree | 8c8d1325d2d55992239ce7e57996047f5cdc2534 | |
parent | 0bcb34472db7b9b007415151a1f7a3d495b31f28 (diff) | |
download | qemu-98e2d49241cb474a9fdd26852cbdbbcf67f18d54.zip |
virtio-blk: Drop VirtIOBlockRequest.read
Since it's set but not used.
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | hw/block/dataplane/virtio-blk.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/block/dataplane/virtio-blk.c b/hw/block/dataplane/virtio-blk.c index 3d1e9e1c43..4e5e4589bd 100644 --- a/hw/block/dataplane/virtio-blk.c +++ b/hw/block/dataplane/virtio-blk.c @@ -29,7 +29,6 @@ typedef struct { QEMUIOVector *inhdr; /* iovecs for virtio_blk_inhdr */ VirtQueueElement *elem; /* saved data from the virtqueue */ QEMUIOVector qiov; /* original request iovecs */ - bool read; /* read or write? */ } VirtIOBlockRequest; struct VirtIOBlockDataPlane { @@ -137,7 +136,6 @@ static void do_rdwr_cmd(VirtIOBlockDataPlane *s, bool read, req->s = s; req->elem = elem; req->inhdr = inhdr; - req->read = read; qemu_iovec_init_external(&req->qiov, iov, iov_cnt); qiov = &req->qiov; |