From: Christoph Hellwig <hch@lst.de>
To: Conor Murphy <conor_murphy_virt@hotmail.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] virtio-blk.c handling of i/o which is not a 512 multiple
Date: Wed, 30 Mar 2011 20:55:46 +0200 [thread overview]
Message-ID: <20110330185546.GA26589@lst.de> (raw)
In-Reply-To: <loom.20110330T104712-100@post.gmane.org>
On Wed, Mar 30, 2011 at 08:48:18AM +0000, Conor Murphy wrote:
> Is there a requirement for virtio-blk guest drivers that all i/o requests are
> sized in multiples of 512 bytes?
Yes, like for any other block driver. Of course this should not actually
crash qemu, but rather fail the request.
Does the patch below give you a correct error report?
Index: qemu/hw/virtio-blk.c
===================================================================
--- qemu.orig/hw/virtio-blk.c 2011-03-30 20:46:10.268665534 +0200
+++ qemu/hw/virtio-blk.c 2011-03-30 20:49:45.655247322 +0200
@@ -290,6 +290,10 @@ static void virtio_blk_handle_write(Virt
virtio_blk_rw_complete(req, -EIO);
return;
}
+ if (req->qiov.size % req->dev->conf->logical_block_size) {
+ virtio_blk_rw_complete(req, -EIO);
+ return;
+ }
if (mrb->num_writes == 32) {
virtio_submit_multiwrite(req->dev->bs, mrb);
@@ -317,6 +321,10 @@ static void virtio_blk_handle_read(VirtI
virtio_blk_rw_complete(req, -EIO);
return;
}
+ if (req->qiov.size % req->dev->conf->logical_block_size) {
+ virtio_blk_rw_complete(req, -EIO);
+ return;
+ }
acb = bdrv_aio_readv(req->dev->bs, sector, &req->qiov,
req->qiov.size / BDRV_SECTOR_SIZE,
next prev parent reply other threads:[~2011-03-30 18:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-30 8:48 [Qemu-devel] virtio-blk.c handling of i/o which is not a 512 multiple Conor Murphy
2011-03-30 18:55 ` Christoph Hellwig [this message]
2011-03-31 7:52 ` [Qemu-devel] " Conor Murphy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20110330185546.GA26589@lst.de \
--to=hch@lst.de \
--cc=conor_murphy_virt@hotmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).