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 36F2A43DAA; Mon, 1 Apr 2024 19:22:11 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2817F402CD; Mon, 1 Apr 2024 19:22:11 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 4E8324029F for ; Mon, 1 Apr 2024 19:22:10 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id A7973206FCCD; Mon, 1 Apr 2024 10:22:09 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A7973206FCCD DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1711992129; bh=5GI+/2eEWW2+uwVr+wNmfLwV7gKXQKjv9SGh554Vdhk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=cxAyktF0HpEPZqaYbCXDMl6kgc2gCDMhn+4d1ByFuhGH6PnuJzLGtjdFvCC+zXxaP o17I9biEjY9i9DZwJoPu5n0EEoXid/VN67Csfbewjl7sqgwnvqGaF9Ljd1OzXiZucD HaCMVqCdhHQlfkJW2mfBQqngbBZxI+q/cchr7rjs= Date: Mon, 1 Apr 2024 10:22:09 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org Subject: Re: [PATCH 2/2] mempool: fix unused warning with MSVC Message-ID: <20240401172209.GC5321@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240401170257.121047-1-stephen@networkplumber.org> <20240401170257.121047-3-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240401170257.121047-3-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 Mon, Apr 01, 2024 at 10:01:53AM -0700, Stephen Hemminger wrote: > Applying __rte_unused to a variable has no effect with MS > windows compiler. The temporary variable used if debug > enabled can just be eliminated. > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff