From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 1FEFC1BED0 for ; Wed, 27 Jun 2018 16:26:56 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 8E57721949; Wed, 27 Jun 2018 10:26:55 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 27 Jun 2018 10:26:55 -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=CWBt8OKC9+GdPFsNhRqpLkW304 OhN9qufXM0ndstqVk=; b=f7vJJKSe4dRe6dXsIqpPJ2gCQZH/VYqkUAuwAgkIls YrFYKPOxlDkTbG7Cll/WTsudy4IA62iN2QYAReU6UJq+RXEg4UB9H7HluK3bJJWT v8zrFy0owQA5CzaFVaBmIPYMGqbHIgZ+B+hrVYpfeUkDqNCpNmecLa/URFdgyAHr U= 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=CWBt8O KC9+GdPFsNhRqpLkW304OhN9qufXM0ndstqVk=; b=f5go4g5vuzOlPpUxfgaWyg CrIsThlsqLUyJKoEAvzmSCdHvF5af0UKqlB2uHN99MN2SDHATCuqIUccy4lViMUE 77ucG83faeyZav+Ab9ygNj+88kFnrXzTFdBA06CxRulHjvKXas16ZPNc4LhEZhL2 dJ4JKlPe1JozNPZAhRsz1i76QZiZattsE4GhUYEoAAZNTO/78V6UBc1Ml+kPSlhb rUrrjGstVLhrb8e2W6nqw/7zE0YIwIfsNHEOaHXJpczXJUwRTlmDwrknwBmZErDl tJBqTfWwEWIJYKg1EBnLm9jI0BzvKl27DRjHmVELzXtr4NPgK7YHjZJJO+4aXSEg == 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 925A8E4533; Wed, 27 Jun 2018 10:26:54 -0400 (EDT) From: Thomas Monjalon To: Adrien Mazarguil Cc: dev@dpdk.org, Nelio Laranjeiro Date: Wed, 27 Jun 2018 16:26:53 +0200 Message-ID: <58851225.XPqQcdYWC5@xps> In-Reply-To: <15e22f72e9b4c56e79809c413ce3001e4f6067d8.1529565844.git.nelio.laranjeiro@6wind.com> References: <3c31112367e8d44d1568afbf52de20c6c9ff0c9c.1528187101.git.nelio.laranjeiro@6wind.com> <15e22f72e9b4c56e79809c413ce3001e4f6067d8.1529565844.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 v3] ethdev: add flow API to expand RSS flows 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: Wed, 27 Jun 2018 14:26:56 -0000 Adrien, would you like to review this patch please? 21/06/2018 09:25, Nelio Laranjeiro: > 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