From: Pawel Moll <pawel.moll@arm.com>
To: Rusty Russell <rusty@rustcorp.com.au>
Cc: Brian Foley <brian.foley@arm.com>,
Pawel Moll <pawel.moll@arm.com>,
virtualization@lists.linux-foundation.org
Subject: [PATCH 2/2] virtio_mmio: Don't attempt to create empty virtqueues
Date: Mon, 24 Sep 2012 14:33:42 +0100 [thread overview]
Message-ID: <1348493622-26091-3-git-send-email-pawel.moll@arm.com> (raw)
In-Reply-To: <1348493622-26091-1-git-send-email-pawel.moll@arm.com>
From: Brian Foley <brian.foley@arm.com>
If a virtio device reports a QueueNumMax of 0, vring_new_virtqueue()
doesn't check this, and thanks to an unsigned (i < num - 1) loop
guard, scribbles over memory when initialising the free list.
Avoid by not trying to create zero-descriptor queues, as there's no
way to do any I/O with one.
Signed-off-by: Brian Foley <brian.foley@arm.com>
Signed-off-by: Pawel Moll <pawel.moll@arm.com>
---
drivers/virtio/virtio_mmio.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/virtio/virtio_mmio.c b/drivers/virtio/virtio_mmio.c
index 58e2d78..6979c1b 100644
--- a/drivers/virtio/virtio_mmio.c
+++ b/drivers/virtio/virtio_mmio.c
@@ -332,6 +332,16 @@ static struct virtqueue *vm_setup_vq(struct virtio_device *vdev, unsigned index,
* and two rings (which makes it "alignment_size * 2")
*/
info->num = readl(vm_dev->base + VIRTIO_MMIO_QUEUE_NUM_MAX);
+
+ /* If the device reports a 0 entry queue, we won't be able to
+ * use it to perform I/O, and vring_new_virtqueue() can't create
+ * empty queues anyway, so don't bother to set up the device.
+ */
+ if (info->num == 0) {
+ err = -ENOENT;
+ goto error_alloc_pages;
+ }
+
while (1) {
size = PAGE_ALIGN(vring_size(info->num,
VIRTIO_MMIO_VRING_ALIGN));
--
1.7.9.5
next prev parent reply other threads:[~2012-09-24 13:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-24 13:33 [PATCH 0/2] virtio-mmio updates for 3.7 Pawel Moll
2012-09-24 13:33 ` [PATCH 1/2] virtio_mmio: fix off by one error allocating queue Pawel Moll
2012-09-24 13:33 ` Pawel Moll [this message]
2012-09-25 0:11 ` [PATCH 0/2] virtio-mmio updates for 3.7 Rusty Russell
2012-09-25 11:12 ` Pawel Moll
2012-09-26 0:10 ` Rusty Russell
2012-09-27 16:33 ` Pawel Moll
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=1348493622-26091-3-git-send-email-pawel.moll@arm.com \
--to=pawel.moll@arm.com \
--cc=brian.foley@arm.com \
--cc=rusty@rustcorp.com.au \
--cc=virtualization@lists.linux-foundation.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).