From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v5] ethdev: add flow API to expand RSS flows Date: Fri, 29 Jun 2018 17:26:34 +0100 Message-ID: References: <20180627145525.8659-1-nelio.laranjeiro@6wind.com> <2b29e115e43f519e2cc2fa1a075849f53c7bf92a.1530201647.git.nelio.laranjeiro@6wind.com> <20180628160927.GI4025@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Adrien Mazarguil , Nelio Laranjeiro Return-path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id D41121B504 for ; Fri, 29 Jun 2018 18:26:36 +0200 (CEST) In-Reply-To: <20180628160927.GI4025@6wind.com> Content-Language: en-US List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 6/28/2018 5:09 PM, Adrien Mazarguil wrote: > On Thu, Jun 28, 2018 at 06:01:21PM +0200, Nelio Laranjeiro wrote: >> Introduce an helper for PMD to expand easily flows items list with RSS >> action into multiple flow items lists with priority information. >> >> For instance a user items list being "eth / end" with rss action types >> "ipv4-udp ipv6-udp end" needs to be expanded into three items lists: >> >> - eth >> - eth / ipv4 / udp >> - eth / ipv6 / udp >> >> to match the user request. Some drivers are unable to reach such >> request without this expansion, this API is there to help those. >> Only PMD should use such API for their internal cooking, the application >> will still handle a single flow. >> >> Signed-off-by: Nelio Laranjeiro >> >> --- >> >> Changes in v5: >> >> - Replace the struct rte_flow_expand_rss field by a flexible array, >> - Address all nits. > > Acked-by: Adrien Mazarguil Applied to dpdk-next-net/master, thanks.