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 DA8F5454BF; Fri, 21 Jun 2024 23:06:38 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B1D534027D; Fri, 21 Jun 2024 23:06:38 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id DBA7240041 for ; Fri, 21 Jun 2024 23:06:37 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 3C4D520B7001; Fri, 21 Jun 2024 14:06:37 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 3C4D520B7001 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1719003997; bh=fGC7eft/iHTvvRdzq7SOerUUNcsv3463etEKgr8Zx3c=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jqyGny3lGrsICbyJ4MYxOaVTODyxJrKbHMIJXIifJzUZXlcEJGNpOpTQg5qlMznmx Qp1tUqluAseS9mtog+AcIrOU1goREtEMHoqQfEthdCCId+sxE2TXKRrmvDDr5CGG6t 3fmLGaXmh5Oh3+g+kajtJW9C/gMm4zb0yJNVi5xk= Date: Fri, 21 Jun 2024 14:06:37 -0700 From: Tyler Retzlaff To: Bruce Richardson Cc: dev@dpdk.org Subject: Re: [PATCH] net/*: replace intrinsic header include with rte_vect Message-ID: <20240621210637.GA5705@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240620123218.1936250-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240620123218.1936250-1-bruce.richardson@intel.com> User-Agent: Mutt/1.5.21 (2010-09-15) 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 On Thu, Jun 20, 2024 at 01:32:18PM +0100, Bruce Richardson wrote: > Rather than having the SSE code in each driver include tmmintrin.h, > which often does not contain all needed intrinsics, e.g. > _mm_cvtsi128_si64() for 32-bit x86 builds, we can just replace the > include of ?mmintrin.h with rte_vect.h for all network drivers. > > Signed-off-by: Bruce Richardson > --- Acked-by: Tyler Retzlaff