From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 10E30A48B for ; Mon, 2 Apr 2018 15:27:32 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Apr 2018 06:27:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,395,1517904000"; d="scan'208";a="42735995" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by fmsmga004.fm.intel.com with ESMTP; 02 Apr 2018 06:27:30 -0700 Received: from fmsmsx121.amr.corp.intel.com (10.18.125.36) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 2 Apr 2018 06:27:30 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx121.amr.corp.intel.com (10.18.125.36) with Microsoft SMTP Server (TLS) id 14.3.319.2; Mon, 2 Apr 2018 06:27:30 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.235]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.129]) with mapi id 14.03.0319.002; Mon, 2 Apr 2018 21:27:25 +0800 From: "Zhang, Qi Z" To: "Dai, Wei" , "Ananyev, Konstantin" , "Lu, Wenzhuo" CC: "dev@dpdk.org" , "Dai, Wei" Thread-Topic: [dpdk-dev] [PATCH v4 0/4] net/ixgbe: convert to new offloads API Thread-Index: AQHTwY/JdR5niiwp20OBWm0lnvQj7KPtiHKA Date: Mon, 2 Apr 2018 13:27:25 +0000 Message-ID: <039ED4275CED7440929022BC67E7061153177B6D@SHSMSX103.ccr.corp.intel.com> References: <1521443063-57722-1-git-send-email-wei.dai@intel.com> <20180322034103.25734-1-wei.dai@intel.com> In-Reply-To: <20180322034103.25734-1-wei.dai@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/4] net/ixgbe: convert to new offloads API 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: Mon, 02 Apr 2018 13:27:33 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Wei Dai > Sent: Thursday, March 22, 2018 11:41 AM > To: Ananyev, Konstantin ; Lu, Wenzhuo > > Cc: dev@dpdk.org; Dai, Wei > Subject: [dpdk-dev] [PATCH v4 0/4] net/ixgbe: convert to new offloads API >=20 > This patch set adds support of per queue VLAN strip offloading in ixgbe P= F and > VF. > This patch support new offloads API in ixgbe PF and VF. >=20 > --- > v4: don't support header spliting any more >=20 > v3: Rx header spliting capability is only enabled in > #ifdef RTE_HEADER_SPLIT_ENABLE. > Tx vector tranmit function only work without any Tx offloads. >=20 > v2: improve error checking >=20 > Wei Dai (4): > net/ixgbe: support VLAN strip per queue offloading in PF > net/ixgbe: support VLAN strip per queue offloading in VF > net/ixgbe: convert to new Rx offloads API > net/ixgbe: convert to new Tx offloads API >=20 > drivers/net/ixgbe/ixgbe_ethdev.c | 264 > ++++++++++++++-------------- > drivers/net/ixgbe/ixgbe_ethdev.h | 4 +- > drivers/net/ixgbe/ixgbe_ipsec.c | 13 +- > drivers/net/ixgbe/ixgbe_pf.c | 5 +- > drivers/net/ixgbe/ixgbe_rxtx.c | 275 > +++++++++++++++++++++++------- > drivers/net/ixgbe/ixgbe_rxtx.h | 7 + > drivers/net/ixgbe/ixgbe_rxtx_vec_common.h | 5 - > drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c | 2 +- > 8 files changed, 359 insertions(+), 216 deletions(-) >=20 > -- > 2.9.5 It's better to only enable per queue vlan-strip without convert to new offl= oad in patch 1,2 then convert all to new offload in patch 3,4 But still ok for me. Acked-by: Qi Zhang