From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by dpdk.org (Postfix) with ESMTP id 14C371E33 for ; Fri, 13 Jul 2018 15:54:55 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 22BB7380; Fri, 13 Jul 2018 09:54:54 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 13 Jul 2018 09:54:54 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=zMpKJNfIjRNmw6mliJrw3KaFxh uw95A9i2G92LcewqA=; b=L/+SSjIzDuL3vic9L+amij/bY4ebQZeLQlZmxHli+m rHj5LoetrPFX1dNMDbRCr/Kmv3izBgi3ynhyb38OCI4wJVEaqG/JQzqni055gJ5d JUF4of2xC1cm3Jngy+Xl4ELMyTB7kXuRF/n/JnHxcne8p1ZWdxpyD3JU5DlFplEm c= 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-sender:x-me-sender:x-sasl-enc; s=fm3; bh=zMpKJN fIjRNmw6mliJrw3KaFxhuw95A9i2G92LcewqA=; b=fkyQ2I6KbGHpKyaBtX8+IC aHOhKSNuvuA2xDMTj/oyQjlKr4XZef49F64lNXWQ0Ipp9r8mYFcCHxEL+vmGbzp9 7MNLs8sfvdG1DG2cHPnXyzBoGwGvuuQxuGkXg4wvk+LADVLTjLLFks6lbwwNNure sukDFSNCPqGyhvmCzkpZEP7dyIDgVyv+FEqKP/PuYHDaGH5I+YIJsOsFV0QKYGvU SO1jkSxzUhcg+ScaUvbKcyZyv7DrUoktpkHxWaXuSHuKm0jd8Tsrh+lUwRwbsWVD pWlpW4Syltnri2Iq5+nSFadlGyrNbtWhPlT9SStc4ITqKVUFi47NsqWMQx/Ded1w == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id E1FE81026C; Fri, 13 Jul 2018 09:54:52 -0400 (EDT) From: Thomas Monjalon To: Nelio Laranjeiro Cc: dev@dpdk.org Date: Fri, 13 Jul 2018 15:54:51 +0200 Message-ID: <8853319.EDUKqlyAiz@xps> In-Reply-To: <8e6234ad484ada96596a95eb302caeaed39b9c47.1531473066.git.nelio.laranjeiro@6wind.com> References: <8e6234ad484ada96596a95eb302caeaed39b9c47.1531473066.git.nelio.laranjeiro@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] ethdev: fix missing function in map file 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: Fri, 13 Jul 2018 13:54:55 -0000 13/07/2018 11:11, Nelio Laranjeiro: > Fixes: 4ed05fcd441b ("ethdev: add flow API to expand RSS flows") > > Signed-off-by: Nelio Laranjeiro > Acked-by: Adrien Mazarguil > > -- > > Changes in v2: > > - add missing documentation. > - add missing __rte_experimental in source file. > - update the order in map file. > --- > --- a/lib/librte_ethdev/rte_flow_driver.h > +++ b/lib/librte_ethdev/rte_flow_driver.h > @@ -148,6 +148,7 @@ struct rte_flow_expand_rss { > /** > * Expand RSS flows into several possible flows according to the RSS hash > * fields requested and the driver capabilities. > + * @b EXPERIMENTAL: this API may change without prior notice Blank line missing to make it appear on a new line. Applied with following log: Add rte_flow_expand_rss in map file and tag it as experimental.