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 7DE4A45967; Thu, 12 Sep 2024 06:51:06 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F6A240654; Thu, 12 Sep 2024 06:51:06 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 24C3A402B5 for ; Thu, 12 Sep 2024 06:51:04 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 5467520B9D5A; Wed, 11 Sep 2024 21:51:03 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5467520B9D5A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1726116663; bh=AkAZMUMxZMUCpovprHJ/T+KaqmXjROqe/xJhE+o6Bzk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KyMgKyqacXe2Hbtb/2uINkoC/s/KcnFRSnuhLcZV43qEYOi2sfpAANvILe2ZTy4dz MxEjT+wYWqI0tXQm5tYDHJrKbg7btgTMRkbN4aMQqcKPfvB6kQn0SeXtQ0w1dmJMX4 fo6/jpySHIUA7bMZeJ/TeclAdFqImqHzbtxHA0ns= Date: Wed, 11 Sep 2024 21:51:03 -0700 From: Tyler Retzlaff To: Mattias R??nnblom Cc: dev@dpdk.org, hofors@lysator.liu.se, Morten Br??rup , Stephen Hemminger , Harry van Haaren Subject: Re: [PATCH 1/6] eal: add bitset type Message-ID: <20240912045103.GA4827@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240505073313.118515-1-mattias.ronnblom@ericsson.com> <20240809201440.590464-1-mattias.ronnblom@ericsson.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240809201440.590464-1-mattias.ronnblom@ericsson.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 09, 2024 at 10:14:35PM +0200, Mattias R??nnblom wrote: > Introduce a set of functions and macros that operate on sets of bits, > kept in arrays of 64-bit words. > > RTE bitset is designed for bitsets which are larger than what fits in > a single machine word (i.e., 64 bits). For very large bitsets, the > API may be a more appropriate choice. > > Depends-on: series-32740 ("Improve EAL bit operations API") > > Signed-off-by: Mattias R??nnblom > > -- Acked-by: Tyler Retzlaff