From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 86537A0613 for ; Tue, 24 Sep 2019 11:07:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3E7443977; Tue, 24 Sep 2019 11:07:52 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id C3F96343C for ; Tue, 24 Sep 2019 11:07:50 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Sep 2019 02:07:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,543,1559545200"; d="scan'208";a="363922447" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga005.jf.intel.com with ESMTP; 24 Sep 2019 02:07:48 -0700 Date: Tue, 24 Sep 2019 17:05:41 +0800 From: Ye Xiaolong To: Leyi Rong Cc: haiyue.wang@intel.com, wenzhuo.lu@intel.com, qi.z.zhang@intel.com, dev@dpdk.org Message-ID: <20190924090541.GL7338@intel.com> References: <20190829023421.112551-1-leyi.rong@intel.com> <20190924023809.11722-1-leyi.rong@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20190924023809.11722-1-leyi.rong@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v5 0/6] enable Rx flexible descriptor 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 09/24, Leyi Rong wrote: >This patchset enable Rx flexible descriptor for ice PMD >in both normal path and vector path. >Depends on shared code update patchset. > >--- >v5: >- Fix some typo, and enhance the array index access handling. >- Move update for release note to `New Features` section. > >v4: >- Handle the ‘proto_xtr’ with error processing, and remove the > Redundant default type variable. >- Add flex descriptor and protocol extraction release note. >- Clean up the legacy descriptor. > >v3: >- Parse the ‘proto_xtr’ devargs before CVL HW initialization and > save it for later accessing. >- Merge shuffle ops on vlan and rss flag on vector path. > >v2: >- Remove the CONFIG_RTE_LIBRTE_ICE_PROTO_XTR definition, and use the > RTE_LIBRTE_ICE_16BYTE_RX_DESC to control the protocol extraction > when handling Rx packets. > >Haiyue Wang (4): > net/ice: add Rx flex descriptor definition > net/ice: handle the Rx flex descriptor > net/ice: add protocol extraction support for per Rx queue > net/ice: remove Rx legacy descriptor definition > >Leyi Rong (1): > net/ice: switch to Rx flexible descriptor in AVX path > >Wenzhuo Lu (1): > net/ice: switch to flexible descriptor in SSE path > > doc/guides/nics/ice.rst | 101 +++++++++ > doc/guides/rel_notes/release_19_11.rst | 4 + > drivers/net/ice/Makefile | 3 + > drivers/net/ice/ice_ethdev.c | 301 +++++++++++++++++++++++++ > drivers/net/ice/ice_ethdev.h | 4 + > drivers/net/ice/ice_rxtx.c | 297 +++++++++++++----------- > drivers/net/ice/ice_rxtx.h | 8 +- > drivers/net/ice/ice_rxtx_vec_avx2.c | 221 +++++++++--------- > drivers/net/ice/ice_rxtx_vec_common.h | 3 + > drivers/net/ice/ice_rxtx_vec_sse.c | 235 +++++++++---------- > drivers/net/ice/meson.build | 2 + > drivers/net/ice/rte_pmd_ice.h | 152 +++++++++++++ > 12 files changed, 961 insertions(+), 370 deletions(-) > create mode 100644 drivers/net/ice/rte_pmd_ice.h > >-- >2.17.1 > Series applied to dpdk-next-net-intel.