From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: Re: [PATCH] net/i40e: update Rx checksum offload Date: Tue, 25 Sep 2018 16:50:42 +0100 Message-ID: References: <1537515374-40502-1-git-send-email-beilei.xing@intel.com> <67816b50-3a2a-d6b1-ffcd-13bc6eebfa41@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org To: Kevin Traynor , Beilei Xing , qi.z.zhang@intel.com Return-path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id EFA0E1B458 for ; Tue, 25 Sep 2018 17:55:48 +0200 (CEST) In-Reply-To: <67816b50-3a2a-d6b1-ffcd-13bc6eebfa41@redhat.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/25/2018 4:35 PM, Kevin Traynor wrote: > On 09/21/2018 08:36 AM, Beilei Xing wrote: >> HW supports Rx scatter offload, this patch updates >> Rx scatter offload for PF. >> > > Should this be for stable branch also? I think it should, I will update in next-net, Thanks for reminder. > >> Signed-off-by: Beilei Xing >> --- >> drivers/net/i40e/i40e_ethdev.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c >> index 24d73f2..37c9c08 100644 >> --- a/drivers/net/i40e/i40e_ethdev.c >> +++ b/drivers/net/i40e/i40e_ethdev.c >> @@ -3378,6 +3378,7 @@ i40e_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info) >> DEV_RX_OFFLOAD_TCP_CKSUM | >> DEV_RX_OFFLOAD_OUTER_IPV4_CKSUM | >> DEV_RX_OFFLOAD_KEEP_CRC | >> + DEV_RX_OFFLOAD_SCATTER | >> DEV_RX_OFFLOAD_VLAN_EXTEND | >> DEV_RX_OFFLOAD_VLAN_FILTER | >> DEV_RX_OFFLOAD_JUMBO_FRAME; >> >