From patchwork Thu Nov 2 19:30:56 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 31132 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CBC351B61E; Thu, 2 Nov 2017 20:31:04 +0100 (CET) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 02DC41B612 for ; Thu, 2 Nov 2017 20:31:03 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5828720D0C; Thu, 2 Nov 2017 15:31:03 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 02 Nov 2017 15:31:03 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=jTKHbfIVhYGd/IITD5KteVWl56Lrt2+2Aw1EbC y2/2A=; b=Qe0SbsJHUUsmK0twNR9mrkwaL2pk7lDn0t3OgDMppDH4RPq7c18Lhs GuXHWh2NuhiQ+9rwXTcjNxuskb7lkA1gvwZgHoJAGYfFgo+TwCY2RgqpQHhy3jtf 25ZPEgtUQThKtMgEMg5MtwZtqC9KsV4k3tnC3A00JpO8e2TdX023M= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=jTKHbfIVhYGd/IITD 5KteVWl56Lrt2+2Aw1EbCy2/2A=; b=cURCg1gu6vN4t+QNdvjJ26VvATv2P3FgH 67oRbLnYjN8wi+KnZxtZ75IOVgNw6HhRz0KEeSS0NfSz07NxyhsND0rsCUEKMemO bELc4sFrb9jChyGpTAz1NliPw7YoKrgQu+sen5wSTsc3m9+sMIK+b+Ocb4pm6d7m ktrxzr4ZBGqe8V0C/XH6Qm6Wo1Kj4bYMamnx5x2BbddBoXBOda+l8ECMz84v9/Gx pygvQUGFu7WX4B29UfNVXT4lw6GiVBv+Uq3XlebqMi3dByshEerODuW17QcDPoEA lBOb/+/79gr5eXjO4oobeI8NTSSJbYHlSeoko9ATH110n2QQdMYMQ== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id E12E9247A5 for ; Thu, 2 Nov 2017 15:31:02 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Date: Thu, 2 Nov 2017 20:30:56 +0100 Message-Id: <20171102193056.3771-1-thomas@monjalon.net> X-Mailer: git-send-email 2.14.2 Subject: [dpdk-dev] [PATCH] lib: fix some typos X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/include/arch/arm/rte_vect.h | 2 +- lib/librte_eventdev/rte_event_eth_rx_adapter.c | 2 +- lib/librte_eventdev/rte_eventdev_pmd.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_eal/common/include/arch/arm/rte_vect.h b/lib/librte_eal/common/include/arch/arm/rte_vect.h index 782350d14..aa887a972 100644 --- a/lib/librte_eal/common/include/arch/arm/rte_vect.h +++ b/lib/librte_eal/common/include/arch/arm/rte_vect.h @@ -136,7 +136,7 @@ vgetq_lane_p64(poly64x2_t x, const int lane) #endif /* - * If (0 <= index <= 15), then call the ASIMD ext intruction on the + * If (0 <= index <= 15), then call the ASIMD ext instruction on the * 128 bit regs v0 and v1 with the appropriate index. * * Else returns a zero vector. diff --git a/lib/librte_eventdev/rte_event_eth_rx_adapter.c b/lib/librte_eventdev/rte_event_eth_rx_adapter.c index fcba18d2f..90106e6c9 100644 --- a/lib/librte_eventdev/rte_event_eth_rx_adapter.c +++ b/lib/librte_eventdev/rte_event_eth_rx_adapter.c @@ -67,7 +67,7 @@ struct rte_event_eth_rx_adapter { struct rte_eth_event_enqueue_buffer event_enqueue_buffer; /* Per adapter stats */ struct rte_event_eth_rx_adapter_stats stats; - /* Block count, counts upto BLOCK_CNT_THRESHOLD */ + /* Block count, counts up to BLOCK_CNT_THRESHOLD */ uint16_t enq_block_count; /* Block start ts */ uint64_t rx_enq_block_start_ts; diff --git a/lib/librte_eventdev/rte_eventdev_pmd.h b/lib/librte_eventdev/rte_eventdev_pmd.h index 4369d9b8c..7a206c56f 100644 --- a/lib/librte_eventdev/rte_eventdev_pmd.h +++ b/lib/librte_eventdev/rte_eventdev_pmd.h @@ -481,7 +481,7 @@ struct rte_event_eth_rx_adapter_queue_conf *queue_conf; * Ethernet device receive queue index * * @param queue_conf - * Additonal configuration structure + * Additional configuration structure * @return * - 0: Success, ethernet receive queue added successfully.