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 A90CA43102; Fri, 25 Aug 2023 18:36:00 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9F41341148; Fri, 25 Aug 2023 18:36:00 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id B6146400D5 for ; Fri, 25 Aug 2023 18:35:58 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id E0FF12127C94; Fri, 25 Aug 2023 09:35:57 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com E0FF12127C94 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1692981357; bh=U2FzdtbFNmr4Yjt/2qdRerdCgxe4nbvNjhq1o96XdJc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rZL5PhU/mPE1iXL8KytUtEP/JyVPpKFKx81NSNW/m5YvehCDvQjLvqguGkJLSdPIq WromqnXPiF7mnlEzCtvhFD9dfLZR60D1vM8k706Yhre0N6RGOXs+SZgH+UijGqUste z/W/xSHxtNwTtIu68cfIk3M2l3Bg8G1gaisW8spw= Date: Fri, 25 Aug 2023 09:35:57 -0700 From: Tyler Retzlaff To: David Marchand Cc: dev@dpdk.org, Thomas Monjalon Subject: Re: [PATCH 2/2] devtools: forbid use of builtin helpers for bit count Message-ID: <20230825163557.GD18422@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230825101812.2396339-1-david.marchand@redhat.com> <20230825101812.2396339-2-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230825101812.2396339-2-david.marchand@redhat.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 Fri, Aug 25, 2023 at 12:18:11PM +0200, David Marchand wrote: > Now that DPDK provides some bit count operations, flag it to avoid > reintroducing __builtin_*. > > Signed-off-by: David Marchand > --- Acked-by: Tyler Retzlaff