From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH v4 36/41] net/dpaa: add support for packet type parsing Date: Mon, 18 Sep 2017 15:56:41 +0100 Message-ID: <2d5f1c10-5f8d-6f65-f70c-a886528ca23d@intel.com> References: <20170823141213.25476-1-shreyansh.jain@nxp.com> <20170909112132.13936-1-shreyansh.jain@nxp.com> <20170909112132.13936-37-shreyansh.jain@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: hemant.agrawal@nxp.com To: Shreyansh Jain , dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id E65D01B1A0 for ; Mon, 18 Sep 2017 16:56:48 +0200 (CEST) In-Reply-To: <20170909112132.13936-37-shreyansh.jain@nxp.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 9/9/2017 12:21 PM, Shreyansh Jain wrote: > Add support for parsing the packet type and L2/L3 checksum offload > capability information. > > Signed-off-by: Hemant Agrawal > Signed-off-by: Shreyansh Jain > --- > doc/guides/nics/features/dpaa.ini | 2 + > drivers/net/dpaa/dpaa_ethdev.c | 27 +++++ > drivers/net/dpaa/dpaa_rxtx.c | 116 +++++++++++++++++++++ > drivers/net/dpaa/dpaa_rxtx.h | 206 ++++++++++++++++++++++++++++++++++++++ > 4 files changed, 351 insertions(+) > > diff --git a/doc/guides/nics/features/dpaa.ini b/doc/guides/nics/features/dpaa.ini > index 1ba6b11..2ef1b56 100644 > --- a/doc/guides/nics/features/dpaa.ini > +++ b/doc/guides/nics/features/dpaa.ini > @@ -11,7 +11,9 @@ MTU update = Y > Promiscuous mode = Y > Allmulticast mode = Y > Unicast MAC filter = Y > +RSS hash = Y Not sure about claiming this support yet. Iss mbuf rss hash field set in Rx path, or is packets distributed to multiple queues using rss hash functions at this point? <...>