From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout1-smtp.messagingengine.com (wout1-smtp.messagingengine.com [64.147.123.24]) by dpdk.org (Postfix) with ESMTP id C808E4C95 for ; Thu, 25 Oct 2018 11:15:19 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id BE9531364; Thu, 25 Oct 2018 05:15:18 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 25 Oct 2018 05:15:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=ytLnsHAXqMpXDBg67recrN8IFX9zwCFApwcwdSVLIyQ=; b=ngTLSz9D+mN7 BAWVULcfTPWqWIWIZ+60fgzfZ4TvzZmDIbGJ5xFKmZzULXS85aE9rVHmcmUpHU+z f3cU5XJhEVxuaK7/6c/QIlvtGa0U9EA5CIDovsjfwg8Hi43Q7PyvkAY51F6Drm7v mvooFpRpSmQMw4q/UZnefs9wuD/qD7E= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=ytLnsHAXqMpXDBg67recrN8IFX9zwCFApwcwdSVLI yQ=; b=EM+mM0o8uiBh2PCimyhDsYHjEZOIxhpRcVSoDI2McswwW8fk0obaJmr7s 9oVreLRaqSpJXYGOswSpHvNZdbwvZinhIkNnfEM1YEuf64UD6M81h8a6hizsLvhn lxkPadziAhbvpxmHHKEIIIsmDyi9OxRGI8yQdMTg/ZHktgt5vW5gAWFhumzShICK 4c+gLNXE6QMxLOlf5ZmnpbQHuc6geXoVV6TfPWYLIYwvG+gvvB12ChtjOw0AMnNF 1P0Qwp6Rd46HuuuBJV7G9Xd2Ow8wQ9mt29M9m6Z4xwqkpTHFE3R/6ORh/4G7n5zg 1i2WAHBWZ1fv8IaHC+oRfw90V/ddw== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 97569E455C; Thu, 25 Oct 2018 05:15:17 -0400 (EDT) From: Thomas Monjalon To: Rami Rosen Cc: dev@dpdk.org, "Ananyev, Konstantin" Date: Thu, 25 Oct 2018 11:15:20 +0200 Message-ID: <2834404.9PQZ1P00jA@xps> In-Reply-To: <2601191342CEEE43887BDE71AB977258E9FA461F@IRSMSX102.ger.corp.intel.com> References: <20180822144545.4384-1-ramirose@gmail.com> <2601191342CEEE43887BDE71AB977258E9FA461F@IRSMSX102.ger.corp.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] bpf: fix a typo 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: , X-List-Received-Date: Thu, 25 Oct 2018 09:15:20 -0000 22/08/2018 17:25, Ananyev, Konstantin: > From: Rami Rosen [mailto:ramirose@gmail.com] > > > > This trivial patch fixes a typo in rte_bpf_ethdev.h, > > > > Signed-off-by: Rami Rosen > > --- > > lib/librte_bpf/rte_bpf_ethdev.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/lib/librte_bpf/rte_bpf_ethdev.h b/lib/librte_bpf/rte_bpf_ethdev.h > > index 31731e7a9..11d09cdc2 100644 > > --- a/lib/librte_bpf/rte_bpf_ethdev.h > > +++ b/lib/librte_bpf/rte_bpf_ethdev.h > > @@ -75,7 +75,7 @@ rte_bpf_eth_tx_unload(uint16_t port, uint16_t queue); > > * @param prm > > * Parameters used to create and initialise the BPF exeution context. > > * @param flags > > - * Flags that define expected expected behavior of the loaded filter > > + * Flags that define expected behavior of the loaded filter > > * (i.e. jited/non-jited version to use). > > * @return > > * Zero on successful completion or negative error code otherwise. > > -- > > Acked-by: Konstantin Ananyev Applied, thanks