From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 6B7511B43C for ; Tue, 25 Sep 2018 17:35:48 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A8F3930DF6F8; Tue, 25 Sep 2018 15:35:47 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.63]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6D35D5D76B; Tue, 25 Sep 2018 15:35:46 +0000 (UTC) To: Beilei Xing , qi.z.zhang@intel.com Cc: dev@dpdk.org References: <1537515374-40502-1-git-send-email-beilei.xing@intel.com> From: Kevin Traynor Organization: Red Hat Message-ID: <67816b50-3a2a-d6b1-ffcd-13bc6eebfa41@redhat.com> Date: Tue, 25 Sep 2018 16:35:44 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <1537515374-40502-1-git-send-email-beilei.xing@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.49]); Tue, 25 Sep 2018 15:35:47 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH] net/i40e: update Rx checksum offload 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: Tue, 25 Sep 2018 15:35:48 -0000 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? > 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; >