From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45644) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YcoqV-0005dT-8h for qemu-devel@nongnu.org; Tue, 31 Mar 2015 01:36:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YcoqQ-0001GF-7k for qemu-devel@nongnu.org; Tue, 31 Mar 2015 01:36:15 -0400 Message-ID: <551A3243.8010401@redhat.com> Date: Tue, 31 Mar 2015 13:36:03 +0800 From: Jason Wang MIME-Version: 1.0 References: <20150326111029.4249.43831.stgit@bahia.local> In-Reply-To: <20150326111029.4249.43831.stgit@bahia.local> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] vhost: fix typo in vq_index description List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Greg Kurz , qemu-trivial@nongnu.org Cc: qemu-devel@nongnu.org On 03/26/2015 07:10 PM, Greg Kurz wrote: > Signed-off-by: Greg Kurz > --- > include/hw/virtio/vhost.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h > index 71ef18f..88e1e56 100644 > --- a/include/hw/virtio/vhost.h > +++ b/include/hw/virtio/vhost.h > @@ -36,7 +36,7 @@ struct vhost_dev { > MemoryRegionSection *mem_sections; > struct vhost_virtqueue *vqs; > int nvqs; > - /* the first virtuque which would be used by this vhost dev */ > + /* the first virtqueue which would be used by this vhost dev */ > int vq_index; > unsigned long long features; > unsigned long long acked_features; > > Acked-by: Jason Wang