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 BCC47454A8; Thu, 20 Jun 2024 13:40:46 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4FEBB40612; Thu, 20 Jun 2024 13:40:46 +0200 (CEST) Received: from mail.lysator.liu.se (mail.lysator.liu.se [130.236.254.3]) by mails.dpdk.org (Postfix) with ESMTP id 35E17402D0 for ; Thu, 20 Jun 2024 13:40:45 +0200 (CEST) Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id CA7F4AF0C for ; Thu, 20 Jun 2024 13:40:44 +0200 (CEST) Received: by mail.lysator.liu.se (Postfix, from userid 1004) id BE8D5AE72; Thu, 20 Jun 2024 13:40:44 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on hermod.lysator.liu.se X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=ALL_TRUSTED,AWL, T_SCC_BODY_TEXT_LINE autolearn=disabled version=4.0.0 X-Spam-Score: -1.3 Received: from [192.168.1.59] (h-62-63-215-114.A163.priv.bahnhof.se [62.63.215.114]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id D0D1AAE71; Thu, 20 Jun 2024 13:40:42 +0200 (CEST) Message-ID: <583971c8-a87c-4c5e-8d33-2b75df58a230@lysator.liu.se> Date: Thu, 20 Jun 2024 13:40:42 +0200 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v2 1/6] net/fm10k: add missing intrinsic include To: Bruce Richardson , =?UTF-8?Q?Mattias_R=C3=B6nnblom?= Cc: dev@dpdk.org, =?UTF-8?Q?Morten_Br=C3=B8rup?= , Stephen Hemminger , Abdullah Sevincer , Pavan Nikhilesh , David Hunt , Vladimir Medvedkin References: <20240605064945.369310-1-mattias.ronnblom@ericsson.com> <20240620072452.420029-1-mattias.ronnblom@ericsson.com> <20240620072452.420029-2-mattias.ronnblom@ericsson.com> Content-Language: en-US From: =?UTF-8?Q?Mattias_R=C3=B6nnblom?= In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV using ClamSMTP 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 2024-06-20 11:28, Bruce Richardson wrote: > On Thu, Jun 20, 2024 at 09:24:47AM +0200, Mattias Rönnblom wrote: >> Add missing include, to get the _mm_cvtsi128_si64 >> prototype. >> >> Signed-off-by: Mattias Rönnblom >> --- >> drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/drivers/net/fm10k/fm10k_rxtx_vec.c b/drivers/net/fm10k/fm10k_rxtx_vec.c >> index 2b6914b1da..d417b31bbb 100644 >> --- a/drivers/net/fm10k/fm10k_rxtx_vec.c >> +++ b/drivers/net/fm10k/fm10k_rxtx_vec.c >> @@ -10,6 +10,7 @@ >> #include "base/fm10k_type.h" >> >> #include >> +#include >> > Beyond my ack of this patch, a small suggestion is to just include > rte_vect.h rather than trying to include specific x86-intrinsics headers. > > My ack remains with or without taking on board this suggestion. > > /Bruce I will do that, and hope it will magically solve the _mm_cvtsi128_si64-on-32-bit-x86 issue.