From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6757AA0579; Fri, 9 Apr 2021 09:00:59 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F002F141363; Fri, 9 Apr 2021 09:00:58 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 84FD9141360 for ; Fri, 9 Apr 2021 09:00:57 +0200 (CEST) IronPort-SDR: xKVa566OJN1AG+h9Dua6vWftltoFZ+57inGLhjEVKA9rBsQSBl3CBKOwOv5p50Tr1EWY8/40EP gsKZa7kTYDHw== X-IronPort-AV: E=McAfee;i="6000,8403,9948"; a="278981477" X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="278981477" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Apr 2021 00:00:56 -0700 IronPort-SDR: GlyxayFOHbGU4MRFRWUsD/TEtFbzoy7zveaABcW7m2P5Fd4RYEokJfHc7sANVhKH/dX1ylC01u mPCh+aB+8l4A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,208,1613462400"; d="scan'208";a="599060609" Received: from fmsmsx606.amr.corp.intel.com ([10.18.126.86]) by orsmga005.jf.intel.com with ESMTP; 09 Apr 2021 00:00:56 -0700 Received: from shsmsx605.ccr.corp.intel.com (10.109.6.215) by fmsmsx606.amr.corp.intel.com (10.18.126.86) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2106.2; Fri, 9 Apr 2021 00:00:55 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX605.ccr.corp.intel.com (10.109.6.215) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2106.2; Fri, 9 Apr 2021 15:00:53 +0800 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.2106.013; Fri, 9 Apr 2021 15:00:53 +0800 From: "Zhang, Qi Z" To: "Lu, Wenzhuo" , "dev@dpdk.org" CC: "Lu, Wenzhuo" Thread-Topic: [dpdk-dev] [PATCH v4 0/3] fix segment fault in avx512 code Thread-Index: AQHXLOzPZidKtrP7pEyScCiARUSfHKqrwjpw Date: Fri, 9 Apr 2021 07:00:53 +0000 Message-ID: <5c86a9e2dcc4485b8ddd9b0d3a98c6b1@intel.com> References: <1617074128-50681-1-git-send-email-wenzhuo.lu@intel.com> <1617937317-130223-1-git-send-email-wenzhuo.lu@intel.com> In-Reply-To: <1617937317-130223-1-git-send-email-wenzhuo.lu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.5.1.3 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 0/3] fix segment fault in avx512 code X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" > -----Original Message----- > From: dev On Behalf Of Wenzhuo Lu > Sent: Friday, April 9, 2021 11:02 AM > To: dev@dpdk.org > Cc: Lu, Wenzhuo > Subject: [dpdk-dev] [PATCH v4 0/3] fix segment fault in avx512 code >=20 > Fix no memory segment fault of iavf, ice, i40e. >=20 > v2: > - Drop the duplicate code. >=20 > v3: > - Fix compile error on no-x86 platform. >=20 > v4: > - minor performance optimization. >=20 > Wenzhuo Lu (3): > net/iavf: fix segment fault in AVX512 > net/ice: fix segment fault in AVX512 > net/i40e: fix segment fault in AVX512 >=20 > drivers/net/i40e/i40e_rxtx_vec_avx2.c | 117 +----------------- > drivers/net/i40e/i40e_rxtx_vec_avx512.c | 5 +- > drivers/net/i40e/i40e_rxtx_vec_common.h | 201 > +++++++++++++++++++++++++++++++ > drivers/net/iavf/iavf_rxtx_vec_avx2.c | 120 +------------------ > drivers/net/iavf/iavf_rxtx_vec_avx512.c | 5 +- > drivers/net/iavf/iavf_rxtx_vec_common.h | 203 > ++++++++++++++++++++++++++++++++ > drivers/net/ice/ice_rxtx_vec_avx2.c | 120 +------------------ > drivers/net/ice/ice_rxtx_vec_avx512.c | 5 +- > drivers/net/ice/ice_rxtx_vec_common.h | 203 > ++++++++++++++++++++++++++++++++ > 9 files changed, 625 insertions(+), 354 deletions(-) >=20 > -- > 1.9.3 Applied to dpdk-next-net-intel. Thanks Qi