virtio-blk: Pass read errors to the guest

We need to signal not only write errors, but also read errors to the guest
driver. This fixes a regression introduced by 869a5c6d.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
master
Kevin Wolf 2009-11-05 13:08:59 +01:00 committed by Anthony Liguori
parent cb499fb295
commit 49c3c8dca7
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ static void virtio_blk_rw_complete(void *opaque, int ret)
return;
}
virtio_blk_req_complete(req, VIRTIO_BLK_S_OK);
virtio_blk_req_complete(req, ret ? VIRTIO_BLK_S_IOERR : VIRTIO_BLK_S_OK);
}
static void virtio_blk_flush_complete(void *opaque, int ret)