From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:44253) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gmeSG-000155-LY for qemu-devel@nongnu.org; Thu, 24 Jan 2019 07:50:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gmeSF-00011r-16 for qemu-devel@nongnu.org; Thu, 24 Jan 2019 07:50:00 -0500 From: Laurent Vivier Date: Thu, 24 Jan 2019 13:49:05 +0100 Message-Id: <20190124124906.16653-5-laurent@vivier.eu> In-Reply-To: <20190124124906.16653-1-laurent@vivier.eu> References: <20190124124906.16653-1-laurent@vivier.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PULL 4/5] virtio-net: Fix a typo List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Laurent Vivier , Paolo Bonzini , Eduardo Habkost , qemu-trivial@nongnu.org, "Michael S. Tsirkin" , David Gibson , Marcel Apfelbaum , qemu-ppc@nongnu.org, Richard Henderson , Michael Tokarev , =?UTF-8?q?Alex=20Benn=C3=A9e?= , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Peter Maydell From: Philippe Mathieu-Daudé Fixes: 2974e916df8 Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Peter Maydell Message-Id: <20190121181335.3326-1-philmd@redhat.com> Signed-off-by: Laurent Vivier --- include/hw/virtio/virtio-net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h index bd662752d2..a1a0be3bea 100644 --- a/include/hw/virtio/virtio-net.h +++ b/include/hw/virtio/virtio-net.h @@ -94,7 +94,7 @@ typedef struct VirtioNetRscUnit { uint16_t payload; /* pure payload without virtio/eth/ip/tcp */ } VirtioNetRscUnit; -/* Coalesced segmant */ +/* Coalesced segment */ typedef struct VirtioNetRscSeg { QTAILQ_ENTRY(VirtioNetRscSeg) next; void *buf; -- 2.20.1