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 7ECA243E83; Tue, 16 Apr 2024 17:32:25 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 900D3402B5; Tue, 16 Apr 2024 17:32:02 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 434A140268 for ; Tue, 16 Apr 2024 17:32:01 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 9E5A420FD452; Tue, 16 Apr 2024 08:32:00 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9E5A420FD452 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1713281520; bh=Di3XrQnIrOQLN/cdhzSi1htXo85Hb/6KcwpNAp1T0bA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=YcItQO2VgQgWDvUo9N6/3Oi4YpBopy1fGdioM4ESu1Z60/PMnLgNROUQ7PIIDMQYJ TgbURjkxxgG/9NaFO29YnwsUl15Q4efWXBSSVfRm4xYxAQPpLzGqhmUdph/L69uGvE 8m+LKXR1Vimq/z3Cvm3VO3YcxLV37YEIzLCebC9U= Date: Tue, 16 Apr 2024 08:32:00 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Reshma Pattan Subject: Re: [PATCH 3/5] lib: use RTE_DIM Message-ID: <20240416153200.GB25265@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240416152124.69590-1-stephen@networkplumber.org> <20240416152124.69590-4-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240416152124.69590-4-stephen@networkplumber.org> 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 Tue, Apr 16, 2024 at 08:19:29AM -0700, Stephen Hemminger wrote: > Use RTE_DIM instead of computing directly with sizeof. > Patch automatically generated via cocci/rte_dim.cocci. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff