From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH v2 1/4] ethdev: add Rx offload outer UDP checksum definition Date: Wed, 3 Oct 2018 16:49:02 +0530 Message-ID: <20181003111901.GB9248@jerin> References: <20180913134707.23698-1-jerin.jacob@caviumnetworks.com> <20181002192451.19119-1-jerin.jacob@caviumnetworks.com> <8CEF83825BEC744B83065625E567D7C260D0C0C7@IRSMSX107.ger.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "Lu, Wenzhuo" , "Wu, Jingjing" , "Mcnamara, John" , "Kovacevic, Marko" , Thomas Monjalon , "Yigit, Ferruh" , Andrew Rybchenko , Olivier Matz , "dev@dpdk.org" , "shahafs@mellanox.com" To: "Iremonger, Bernard" Return-path: Received: from NAM02-BL2-obe.outbound.protection.outlook.com (mail-bl2nam02on0072.outbound.protection.outlook.com [104.47.38.72]) by dpdk.org (Postfix) with ESMTP id 689201B110 for ; Wed, 3 Oct 2018 13:21:55 +0200 (CEST) Content-Disposition: inline In-Reply-To: <8CEF83825BEC744B83065625E567D7C260D0C0C7@IRSMSX107.ger.corp.intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" -----Original Message----- > Date: Wed, 3 Oct 2018 10:51:36 +0000 > From: "Iremonger, Bernard" > To: Jerin Jacob , "Lu, Wenzhuo" > , "Wu, Jingjing" , "Mcnamara, > John" , "Kovacevic, Marko" > , Thomas Monjalon , > "Yigit, Ferruh" , Andrew Rybchenko > , Olivier Matz > CC: "dev@dpdk.org" , "shahafs@mellanox.com" > > Subject: RE: [dpdk-dev] [PATCH v2 1/4] ethdev: add Rx offload outer UDP > checksum definition > > > Hi Jerin, Hi Iremonger, > > > -----Original Message----- > > From: Jerin Jacob [mailto:jerin.jacob@caviumnetworks.com] > > Sent: Tuesday, October 2, 2018 8:25 PM > > To: Lu, Wenzhuo ; Wu, Jingjing > > ; Iremonger, Bernard ; > > Mcnamara, John ; Kovacevic, Marko > > ; Thomas Monjalon ; > > Yigit, Ferruh ; Andrew Rybchenko > > ; Olivier Matz > > Cc: dev@dpdk.org; shahafs@mellanox.com; Jerin Jacob > > > > Subject: [dpdk-dev] [PATCH v2 1/4] ethdev: add Rx offload outer UDP checksum > > definition > > > > Introduced DEV_RX_OFFLOAD_OUTER_UDP_CKSUM Rx offload flag and > > PKT_RX_EL4_CKSUM_BAD mbuf ol_flags to detect outer UDP checksum failure. > > > > - To use hardware Rx outer UDP checksum offload, the user needs to configure > > DEV_RX_OFFLOAD_OUTER_UDP_CKSUM offload flags in slowpath. > > > > - Driver updates the PKT_RX_EL4_CKSUM_BAD mbuf ol_flag on checksum failure > > similar to the outer L3 PKT_RX_EIP_CKSUM_BAD flag. > > > > Signed-off-by: Jerin Jacob > > --- > > > > v2: > > - Removed DEV_RX_OFFLOAD_OUTER_TCP_CKSUM and > > DEV_RX_OFFLOAD_OUTER_SCTP_CKSUM as there is no realworld use case for > > it. > > See: http://patches.dpdk.org/patch/44692/ > > > > This patch series is depended on http://patches.dpdk.org/patch/45840/ > > > > -- > > app/test-pmd/config.c | 9 +++++++++ > > doc/guides/nics/features.rst | 3 +++ > > lib/librte_ethdev/rte_ethdev.c | 1 + > > lib/librte_ethdev/rte_ethdev.h | 1 + > > lib/librte_mbuf/rte_mbuf.c | 2 ++ > > lib/librte_mbuf/rte_mbuf.h | 3 +++ > > 6 files changed, 19 insertions(+) > > > > > > This patch fails to apply to the latest master branch, a rebase may be needed. Have you applies the depended series http://patches.dpdk.org/patch/45840/ as mentioned above? If yes and then still has issue then let me know. > Regards, > > Bernard.