From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jay Zhou Subject: [PATCH] net/virtio: fix a typo Date: Tue, 22 Aug 2017 10:34:36 +0800 Message-ID: <1503369276-8276-1-git-send-email-jianjay.zhou@huawei.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , , , Jay Zhou To: , , Return-path: Received: from szxga04-in.huawei.com (szxga04-in.huawei.com [45.249.212.190]) by dpdk.org (Postfix) with ESMTP id 726A547CD for ; Tue, 22 Aug 2017 04:35:19 +0200 (CEST) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixed a comment in struct virtionet_ctl, referring to the ring type Signed-off-by: Jay Zhou --- drivers/net/virtio/virtio_rxtx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_rxtx.h b/drivers/net/virtio/virtio_rxtx.h index 28f82d6..9811204 100644 --- a/drivers/net/virtio/virtio_rxtx.h +++ b/drivers/net/virtio/virtio_rxtx.h @@ -83,7 +83,7 @@ struct virtnet_ctl { const struct rte_memzone *virtio_net_hdr_mz; phys_addr_t virtio_net_hdr_mem; /**< hdr for each xmit packet */ uint8_t port_id; /**< Device port identifier. */ - const struct rte_memzone *mz; /**< mem zone to populate RX ring. */ + const struct rte_memzone *mz; /**< mem zone to populate CTL ring. */ }; int virtio_rxq_vec_setup(struct virtnet_rx *rxvq); -- 1.8.3.1