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 6490745967; Thu, 12 Sep 2024 06:53:16 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4A2E740A6D; Thu, 12 Sep 2024 06:53:16 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 79D984025E for ; Thu, 12 Sep 2024 06:53:14 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id B739120B9D5A; Wed, 11 Sep 2024 21:53:13 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com B739120B9D5A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1726116793; bh=I7TpBlu+jn5Pk8uxT2dWszVoC/iJW0VlYLITF2DrwZY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=r5uuEmY2ZffK+QJ2QlpCsI1ne4o66CgBpGSXGjGfqNhL4xKIDbEcArJE3MQtB2sQO C+0MR4dNclfvBOymT2lX0VA5VYQngwFCZGBg+2YcNJG3pKGoYIySSHMWaCWcU1LQ4B kh4bPZRGcI1BYqLQa56mgYud0625rQsHEyrk9wZI= Date: Wed, 11 Sep 2024 21:53:13 -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 6/6] event/dsw: add support for larger port count Message-ID: <20240912045313.GF4827@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240505073313.118515-1-mattias.ronnblom@ericsson.com> <20240809201440.590464-1-mattias.ronnblom@ericsson.com> <20240809201440.590464-6-mattias.ronnblom@ericsson.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240809201440.590464-6-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:40PM +0200, Mattias R??nnblom wrote: > Switch from using an open-coded, single-word bitset to using > to represent which event ports are linked to a > particular event queue. > > Besides the cleaner code, this also allow the user to extend the > maximum port count beyond 64, by means of changing an "event_dev.h" > > Signed-off-by: Mattias R??nnblom > --- Acked-by: Tyler Retzlaff