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 95E6B42388; Mon, 9 Jan 2023 18:26:50 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4D11140689; Mon, 9 Jan 2023 18:26:50 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id C047F40150 for ; Mon, 9 Jan 2023 18:26:48 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 0BB4B20A3CDE; Mon, 9 Jan 2023 09:26:48 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 0BB4B20A3CDE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1673285208; bh=Nzqhafs9uXqhqZHiG62znf7Djmzd+mDDyTto7oIPfj8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=i+wRPJe6jKhamrHlIDDlG/gmZnlhdwwJgbIUhm24R8zirmR6JqlAi/kxHyN5kyp65 IMil/cHikZ+PjbIpAXhcXxOtCXss9q7phaqcyODOn8tjtscg8q/ofm+hYNUK9anVka zhQR0SYFtaRMrfmKXatGVllpeP55RB9CdMco3Gh8= Date: Mon, 9 Jan 2023 09:26:48 -0800 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, mb@smartsharesystems.com, david.marchand@redhat.com Subject: Re: [PATCH v3 3/3] test/bitcount: add bitcount tests Message-ID: <20230109172648.GA12595@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1669241687-18810-1-git-send-email-roretzla@linux.microsoft.com> <1673042505-756-1-git-send-email-roretzla@linux.microsoft.com> <1673042505-756-4-git-send-email-roretzla@linux.microsoft.com> <2951079.mvXUDI8C0e@thomas> <20230109165732.GA7846@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230109165732.GA7846@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> 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 Mon, Jan 09, 2023 at 08:57:32AM -0800, Tyler Retzlaff wrote: > On Sat, Jan 07, 2023 at 09:15:27AM +0100, Thomas Monjalon wrote: > > 06/01/2023 23:01, Tyler Retzlaff: > > > basic unit test of following functions > > > > > > rte_clz32 > > > rte_clz64 > > > rte_ctz32 > > > rte_ctz64 > > > > This can be squashed with implementation in previous patch. > > > > > > if you mean squashed into the patch that moves the existing functions > sure it can be, but really the addtions are a self contained change > separate from the move of the existing functions. > > ordinarily i'd rather see history order be as follows. > > - here is a change that just moves code (no addtions no deletions). > - here is a change that adds new apis (no moves). > > you sure you want the move and additions all combined into one change? > > either way confirm what you want and if needed i'll combine and push a > v4. > ignore the above, i misread what you were asking for. i will submit a new version with the unit tests squished in to the new function additions. > thanks