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 ACEC4A0613 for ; Thu, 29 Aug 2019 04:43:57 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1EB351E869; Thu, 29 Aug 2019 04:36:38 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 992E11DFEC for ; Thu, 29 Aug 2019 04:35:56 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Aug 2019 19:35:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,442,1559545200"; d="scan'208";a="182205405" Received: from dpdk-lrong-srv-04.sh.intel.com ([10.67.119.187]) by fmsmga007.fm.intel.com with ESMTP; 28 Aug 2019 19:35:52 -0700 From: Leyi Rong To: qi.z.zhang@intel.com, xiaolong.ye@intel.com, haiyue.wang@intel.com, wenzhuo.lu@intel.com Cc: dev@dpdk.org, Leyi Rong Date: Thu, 29 Aug 2019 10:34:15 +0800 Message-Id: <20190829023421.112551-1-leyi.rong@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH 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" This patchset enable Rx flexible descriptor for ice PMD in both normal path and vector path. Depends on shared code update patchset. Haiyue Wang (3): net/ice: add Rx flex descriptor definition net/ice: handle the Rx flex descriptor net/ice: add protocol extraction support for per Rx queue Leyi Rong (1): net/ice: switch to Rx flexible descriptor in AVX path Wenzhuo Lu (2): net/ice: support more ptype net/ice: switch to flexible descriptor in SSE path config/common_base | 1 + doc/guides/nics/ice.rst | 107 ++++++++ drivers/net/ice/Makefile | 3 + drivers/net/ice/ice_ethdev.c | 330 ++++++++++++++++++++++++ drivers/net/ice/ice_ethdev.h | 4 + drivers/net/ice/ice_rxtx.c | 348 +++++++++++++++----------- drivers/net/ice/ice_rxtx.h | 6 + drivers/net/ice/ice_rxtx_vec_avx2.c | 232 ++++++++--------- drivers/net/ice/ice_rxtx_vec_common.h | 5 + drivers/net/ice/ice_rxtx_vec_sse.c | 243 +++++++++--------- drivers/net/ice/meson.build | 2 + drivers/net/ice/rte_pmd_ice.h | 156 ++++++++++++ 12 files changed, 1054 insertions(+), 383 deletions(-) create mode 100644 drivers/net/ice/rte_pmd_ice.h -- 2.17.1