From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerin Jacob Subject: Re: [PATCH 3/4] ethdev: add Rx offload outer L4 checksum definitions Date: Fri, 14 Sep 2018 08:35:43 +0530 Message-ID: <20180914030541.GA3822@jerin> References: <20180913134707.23698-1-jerin.jacob@caviumnetworks.com> <20180913134707.23698-3-jerin.jacob@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Wenzhuo Lu , Jingjing Wu , Bernard Iremonger , John McNamara , Marko Kovacevic , Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Olivier Matz , "dev@dpdk.org" To: Shahaf Shuler Return-path: Received: from NAM02-BL2-obe.outbound.protection.outlook.com (mail-bl2nam02on0059.outbound.protection.outlook.com [104.47.38.59]) by dpdk.org (Postfix) with ESMTP id 8D3D669D4 for ; Fri, 14 Sep 2018 05:06:05 +0200 (CEST) Content-Disposition: inline In-Reply-To: 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: Thu, 13 Sep 2018 17:24:26 +0000 > From: Shahaf Shuler > To: Jerin Jacob , Wenzhuo Lu > , Jingjing Wu , Bernard > Iremonger , John McNamara > , Marko Kovacevic , > Thomas Monjalon , Ferruh Yigit > , Andrew Rybchenko , > Olivier Matz > CC: "dev@dpdk.org" > Subject: RE: [dpdk-dev] [PATCH 3/4] ethdev: add Rx offload outer L4 > checksum definitions > > > Thursday, September 13, 2018 4:47 PM, Jerin Jacob: > > Subject: [dpdk-dev] [PATCH 3/4] ethdev: add Rx offload outer L4 checksum > > definitions > > > > Introduced DEV_RX_OFFLOAD_OUTER_UDP_CKSUM, > > DEV_RX_OFFLOAD_OUTER_TCP_CKSUM and > > DEV_RX_OFFLOAD_OUTER_SCTP_CKSUM offload flags and > > Out of curiosity, which TCP based tunnels you target with this current patchset? I am not aware of any _popular_/_non proprietary_ protocols except SSTP for VPN. > > > > > PKT_RX_EL4_CKSUM_BAD mbuf ol_flags to enable outer Rx L4 checksum > > offload. > > > > # To use hardware Rx outer L4 checksum offload, the user needs to > > configure DEV_RX_OFFLOAD_OUTER_* 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