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 C663BA2EDB for ; Mon, 30 Sep 2019 11:49:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 688AB3237; Mon, 30 Sep 2019 11:49:52 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 88BEC2BF1 for ; Mon, 30 Sep 2019 11:49:50 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Sep 2019 02:49:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,565,1559545200"; d="scan'208";a="181307525" Received: from yexl-server.sh.intel.com (HELO localhost) ([10.67.117.17]) by orsmga007.jf.intel.com with ESMTP; 30 Sep 2019 02:49:48 -0700 Date: Mon, 30 Sep 2019 17:47:20 +0800 From: Ye Xiaolong To: Leyi Rong Cc: wenzhuo.lu@intel.com, qi.z.zhang@intel.com, dev@dpdk.org Message-ID: <20190930094720.GE112560@intel.com> References: <20190904100617.110676-1-leyi.rong@intel.com> <20190923060257.86135-1-leyi.rong@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190923060257.86135-1-leyi.rong@intel.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-dev] [PATCH v4] 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 09/23, Leyi Rong wrote: >This patch enables AVX data path for iavf PMD. > >Signed-off-by: Leyi Rong > >--- >v4: >- Romoves redundant IAVF_NO_VECTOR_FLAGS define. > >v3: >- Adds release note. > >v2: >- Fixes build error on aarch64. >--- > doc/guides/rel_notes/release_19_11.rst | 3 + > drivers/net/iavf/Makefile | 21 + > drivers/net/iavf/iavf_rxtx.c | 99 +-- > 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 | 17 + > 8 files changed, 1071 insertions(+), 46 deletions(-) > create mode 100644 drivers/net/iavf/iavf_rxtx_vec_avx2.c > Applied to dpdk-next-net-intel.