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 35600A0562; Wed, 14 Apr 2021 14:28:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F03AE161A46; Wed, 14 Apr 2021 14:28:43 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 9A7E7161A32 for ; Wed, 14 Apr 2021 14:28:42 +0200 (CEST) IronPort-SDR: TFlVBosMsBBU5O/MdEqntfGxReAa31r0U3QAJYvRCqOA8cBGhpjR2dCqwzmehO0PfvECohII0X TAXmkkW7E/ag== X-IronPort-AV: E=McAfee;i="6200,9189,9953"; a="258592237" X-IronPort-AV: E=Sophos;i="5.82,222,1613462400"; d="scan'208";a="258592237" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2021 05:28:41 -0700 IronPort-SDR: dmtJxuZRD1SzdjOLgGFGHCO5qfVejHPVuTbI17phsDOHqR4n1/YLkmqcD8AmQaIbnSDrOpHJvD APnyfMZHssSw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,222,1613462400"; d="scan'208";a="452434343" Received: from fmsmsx603.amr.corp.intel.com ([10.18.126.83]) by fmsmga002.fm.intel.com with ESMTP; 14 Apr 2021 05:28:41 -0700 Received: from shsmsx604.ccr.corp.intel.com (10.109.6.214) by fmsmsx603.amr.corp.intel.com (10.18.126.83) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2106.2; Wed, 14 Apr 2021 05:28:40 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by SHSMSX604.ccr.corp.intel.com (10.109.6.214) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2106.2; Wed, 14 Apr 2021 20:28:38 +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; Wed, 14 Apr 2021 20:28:38 +0800 From: "Zhang, Qi Z" To: "Lu, Wenzhuo" , "dev@dpdk.org" CC: "Lu, Wenzhuo" Thread-Topic: [dpdk-dev] [PATCH v5 0/3] fix segment fault in avx512 code Thread-Index: AQHXMP916Oh1uqDYz0yw2uC85Y7Ib6qz8VDQ Date: Wed, 14 Apr 2021 12:28:38 +0000 Message-ID: <9f4dabb71c4d498a9a1ce7e1a3cba9b0@intel.com> References: <1617937317-130223-1-git-send-email-wenzhuo.lu@intel.com> <1618385126-44384-1-git-send-email-wenzhuo.lu@intel.com> In-Reply-To: <1618385126-44384-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 v5 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: Wednesday, April 14, 2021 3:25 PM > To: dev@dpdk.org > Cc: Lu, Wenzhuo > Subject: [dpdk-dev] [PATCH v5 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 > v5: > - Fix a potential compile issue. > - Some minor change. >=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 > ++++++++++++++++++++++++++++++++ > drivers/net/ice/meson.build | 2 + > 10 files changed, 627 insertions(+), 354 deletions(-) >=20 > -- > 1.9.3 Applied to dpdk-next-net-intel. Thanks Qi