From: Yaowei Bai Date: Sat, 28 Jul 2018 05:18:44 +0000 (+0800) Subject: virtio-blk: fix comment for virtio_blk_rw_complete X-Git-Tag: qemu-xen-4.13.0-rc1~575^2~28 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=9bb192a4fca3e50194b6ac2e0eaaee20d996bba1;p=qemu-xen.git virtio-blk: fix comment for virtio_blk_rw_complete Here should be submit_requests, there is no submit_merged_requests function. Signed-off-by: Yaowei Bai Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c index 225fe44b7a..83cf5c01f9 100644 --- a/hw/block/virtio-blk.c +++ b/hw/block/virtio-blk.c @@ -97,8 +97,8 @@ static void virtio_blk_rw_complete(void *opaque, int ret) if (req->qiov.nalloc != -1) { /* If nalloc is != 1 req->qiov is a local copy of the original - * external iovec. It was allocated in submit_merged_requests - * to be able to merge requests. */ + * external iovec. It was allocated in submit_requests to be + * able to merge requests. */ qemu_iovec_destroy(&req->qiov); }