From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yb5gP-0004Tv-So for qemu-devel@nongnu.org; Thu, 26 Mar 2015 07:10:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yb5gM-0001wT-Dq for qemu-devel@nongnu.org; Thu, 26 Mar 2015 07:10:41 -0400 Received: from e06smtp10.uk.ibm.com ([195.75.94.106]:33930) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yb5gL-0001wK-N4 for qemu-devel@nongnu.org; Thu, 26 Mar 2015 07:10:37 -0400 Received: from /spool/local by e06smtp10.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 26 Mar 2015 11:10:35 -0000 From: Greg Kurz Date: Thu, 26 Mar 2015 12:10:29 +0100 Message-ID: <20150326111029.4249.43831.stgit@bahia.local> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] vhost: fix typo in vq_index description List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial@nongnu.org Cc: qemu-devel@nongnu.org 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;