aboutsummaryrefslogtreecommitdiff
path: root/hw/block/virtio-blk.c
diff options
context:
space:
mode:
authorStefano Garzarella <sgarzare@redhat.com>2019-01-30 10:52:31 +0100
committerLaurent Vivier <laurent@vivier.eu>2019-01-30 14:20:18 +0100
commit95b3c9cfd5eaaa4a2a4afa1eaf09612a94ade1da (patch)
tree5351a9b2e5dea88c35ab6251028ca87fa364243d /hw/block/virtio-blk.c
parent36f1f0d26eeec59c842a061603946f7c5ace4941 (diff)
downloadqemu-95b3c9cfd5eaaa4a2a4afa1eaf09612a94ade1da.zip
qemu-95b3c9cfd5eaaa4a2a4afa1eaf09612a94ade1da.tar.gz
qemu-95b3c9cfd5eaaa4a2a4afa1eaf09612a94ade1da.tar.bz2
virtio-blk: remove duplicate definition of VirtIOBlock *s pointer
VirtIOBlock *s is already defined and initialized with req->dev on top of virtio_blk_handle_request(), so we can remove it from the code block of VIRTIO_BLK_T_GET_ID case. Signed-off-by: Stefano Garzarella <sgarzare@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20190130095231.42081-1-sgarzare@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/block/virtio-blk.c')
-rw-r--r--hw/block/virtio-blk.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
index f208c6d..9a87b3b 100644
--- a/hw/block/virtio-blk.c
+++ b/hw/block/virtio-blk.c
@@ -569,8 +569,6 @@ static int virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
break;
case VIRTIO_BLK_T_GET_ID:
{
- VirtIOBlock *s = req->dev;
-
/*
* NB: per existing s/n string convention the string is
* terminated by '\0' only when shorter than buffer.