]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
kvm tools: Hook virtio-blk completion to disk op completion
authorSasha Levin <levinsasha928@gmail.com>
Wed, 2 Nov 2011 05:41:12 +0000 (07:41 +0200)
committerPekka Enberg <penberg@kernel.org>
Wed, 2 Nov 2011 06:21:31 +0000 (08:21 +0200)
This patch connects the completion processing in virtio-blk to the completion
notification coming from disk image.

Signed-off-by: Sasha Levin <levinsasha928@gmail.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
tools/kvm/virtio/blk.c

index be53111a32dda363cfa8afd3adb4a47d4552d0be..5969d27a6c1edc6c25b01b77920ba3c80b97ef57 100644 (file)
@@ -119,26 +119,26 @@ static void virtio_blk_do_io_request(struct kvm *kvm, struct blk_dev_req *req)
        switch (req_hdr->type) {
        case VIRTIO_BLK_T_IN:
                block_cnt       = disk_image__read(bdev->disk, req_hdr->sector, iov + 1,
-                                       in + out - 2, NULL);
+                                       in + out - 2, req);
                break;
        case VIRTIO_BLK_T_OUT:
                block_cnt       = disk_image__write(bdev->disk, req_hdr->sector, iov + 1,
-                                       in + out - 2, NULL);
+                                       in + out - 2, req);
                break;
        case VIRTIO_BLK_T_FLUSH:
                block_cnt       = disk_image__flush(bdev->disk);
+               virtio_blk_complete(req, block_cnt);
                break;
        case VIRTIO_BLK_T_GET_ID:
                block_cnt       = VIRTIO_BLK_ID_BYTES;
                disk_image__get_serial(bdev->disk, (iov + 1)->iov_base, &block_cnt);
+               virtio_blk_complete(req, block_cnt);
                break;
        default:
                pr_warning("request type %d", req_hdr->type);
                block_cnt       = -1;
                break;
        }
-
-       virtio_blk_complete(req, block_cnt);
 }
 
 static void virtio_blk_do_io(struct kvm *kvm, struct virt_queue *vq, struct blk_dev *bdev)
@@ -261,6 +261,8 @@ void virtio_blk__init(struct kvm *kvm, struct disk_image *disk)
        for (i = 0; i < ARRAY_SIZE(bdev->reqs); i++)
                list_add(&bdev->reqs[i].list, &bdev->req_list);
 
+       disk_image__set_callback(bdev->disk, virtio_blk_complete);
+
        if (compat_id != -1)
                compat_id = compat__add_message("virtio-blk device was not detected",
                                                "While you have requested a virtio-blk device, "