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 D79D2A0613 for ; Sun, 20 Oct 2019 03:15:16 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C674F1BF2C; Sun, 20 Oct 2019 03:15:15 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id DCC431BF2B for ; Sun, 20 Oct 2019 03:15:13 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Oct 2019 18:15:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,317,1566889200"; d="scan'208";a="209007396" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga002.jf.intel.com with ESMTP; 19 Oct 2019 18:15:11 -0700 Date: Sun, 20 Oct 2019 09:12:15 +0800 From: Ye Xiaolong To: Leyi Rong Cc: wenzhuo.lu@intel.com, qi.z.zhang@intel.com, dev@dpdk.org Message-ID: <20191020011215.GB108019@intel.com> References: <20190904100617.110676-1-leyi.rong@intel.com> <20191016081409.10903-1-leyi.rong@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191016081409.10903-1-leyi.rong@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v5] net/iavf: enable AVX2 for iavf 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 10/16, Leyi Rong wrote: >This patch enables AVX data path for iavf PMD. > >Signed-off-by: Leyi Rong > >--- >v5: >- Eliminates CONFIG_RTE_LIBRTE_IAVF_INC_VECTOR and __rte_weak. > >v4: >- Romoves redundant IAVF_NO_VECTOR_FLAGS define. > >v3: >- Adds release note. > >v2: >- Fixes build error on aarch64. >--- > config/common_base | 1 - > doc/guides/rel_notes/release_19_11.rst | 4 + > drivers/net/iavf/Makefile | 23 +- > drivers/net/iavf/iavf_ethdev.c | 5 - > drivers/net/iavf/iavf_rxtx.c | 141 ++-- > drivers/net/iavf/iavf_rxtx.h | 12 + > drivers/net/iavf/iavf_rxtx_vec_avx2.c | 867 ++++++++++++++++++++++++ > drivers/net/iavf/iavf_rxtx_vec_common.h | 65 ++ > drivers/net/iavf/iavf_rxtx_vec_sse.c | 33 + > drivers/net/iavf/meson.build | 18 +- > 10 files changed, 1074 insertions(+), 95 deletions(-) > create mode 100644 drivers/net/iavf/iavf_rxtx_vec_avx2.c > Applied to dpdk-next-net-intel. Thanks, Xiaolong