From: Kevin Wolf Date: Wed, 27 Jan 2010 12:12:36 +0000 (+0100) Subject: virtio-blk: Fix error cases which ignored rerror/werror X-Git-Tag: v0.12.3~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb45bcc8dec3863c31a07ac576f031ef4c961c93;p=thirdparty%2Fqemu.git virtio-blk: Fix error cases which ignored rerror/werror If an I/O request fails right away instead of getting an error only in the callback, we still need to consider rerror/werror. Signed-off-by: Kevin Wolf Signed-off-by: Anthony Liguori (cherry picked from commit 6c510fbf601fd8c6891b2f1d7165ceb82308a16f) --- diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c index 136e4606213..2fd9b3fba7a 100644 --- a/hw/virtio-blk.c +++ b/hw/virtio-blk.c @@ -272,7 +272,7 @@ static void do_multiwrite(BlockDriverState *bs, BlockRequest *blkreq, if (ret != 0) { for (i = 0; i < num_writes; i++) { if (blkreq[i].error) { - virtio_blk_req_complete(blkreq[i].opaque, VIRTIO_BLK_S_IOERR); + virtio_blk_rw_complete(blkreq[i].opaque, -EIO); } } } @@ -316,7 +316,7 @@ static void virtio_blk_handle_read(VirtIOBlockReq *req) acb = bdrv_aio_readv(req->dev->bs, req->out->sector, &req->qiov, req->qiov.size / 512, virtio_blk_rw_complete, req); if (!acb) { - virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR); + virtio_blk_rw_complete(req, -EIO); } }