From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=44867 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OZ37t-0000Xo-2A for qemu-devel@nongnu.org; Wed, 14 Jul 2010 10:39:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OZ37r-0001hU-S1 for qemu-devel@nongnu.org; Wed, 14 Jul 2010 10:39:56 -0400 Received: from mx3-phx2.redhat.com ([209.132.183.24]:32778 helo=mx01.colomx.prod.int.phx2.redhat.com) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OZ37r-0001gv-Lp for qemu-devel@nongnu.org; Wed, 14 Jul 2010 10:39:55 -0400 Date: Wed, 14 Jul 2010 10:39:51 -0400 (EDT) From: Alon Levy Message-ID: <173617073.334541279118391364.JavaMail.root@zmail06.collab.prod.int.phx2.redhat.com> In-Reply-To: <1c5b20f693ebc3882d01d8f2f9e807878251cd42.1277976486.git.amit.shah@redhat.com> Subject: Re: [Qemu-devel] [PATCH 1/2] virtio-serial: Check if virtio queue is ready before consuming data MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Amit Shah Cc: qemu list ----- "Amit Shah" wrote: > If a virtio-serial port is removed before the guest comes up and > initialises the virtqueues, qemu exits with the message > > Guest moved used index from 0 to 61440 > > This happens because we try to clear any pending buffers from the > virtqueue. > > Ensure the virtqueue is initialised before calling any virtqueue > operations. > > Signed-off-by: Amit Shah > --- > hw/virtio-serial-bus.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/hw/virtio-serial-bus.c b/hw/virtio-serial-bus.c > index 7f9d28f..b89daa6 100644 > --- a/hw/virtio-serial-bus.c > +++ b/hw/virtio-serial-bus.c > @@ -139,6 +139,9 @@ static void flush_queued_data(VirtIOSerialPort > *port, bool discard) > { > assert(port); > > + if (!virtio_queue_ready(port->ovq)) { > + return; > + } > do_flush_queued_data(port, port->ovq, &port->vser->vdev, > discard); > } > > -- > 1.7.0.1 ACK series