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 BA30543CAA; Wed, 27 Mar 2024 18:08:56 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4448C402B2; Wed, 27 Mar 2024 18:08:56 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id DF0AB402A3 for ; Wed, 27 Mar 2024 18:08:54 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 22F46209599A; Wed, 27 Mar 2024 10:08:54 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 22F46209599A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1711559334; bh=dWv2/jwcdktn8O1myDpL4reOLb5gelcfh0IvbV4bFn8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=B9tfEI3V4+Ah/qDbDzLHHH/OGkLzfkzDLR+XHDGbIDEZ8DtR+Dqz1inB8TDiVTzwi 7CPHGeTgf30en9PyC4e5nZCAgtnd8bsG5s1Omlq+lS0NfyqpNwI249JuH/WsLBECuj oef6uVFa4s09+nAKFDazD7czGR7zZdIhQxgmn+3c= Date: Wed, 27 Mar 2024 10:08:54 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org, Chenbo Xia , Nipun Gupta , Dmitry Kozlyuk , Pallavi Kadam , David Marchand , Bruce Richardson , Nick Connolly , Khoa To , Ranjit Menon Subject: Re: [PATCH v16 04/15] windows: common wrapper for vasprintf and asprintf Message-ID: <20240327170854.GC8905@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20200814173441.23086-1-stephen@networkplumber.org> <20240327164726.68732-1-stephen@networkplumber.org> <20240327164726.68732-5-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240327164726.68732-5-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 Wed, Mar 27, 2024 at 09:45:22AM -0700, Stephen Hemminger wrote: > Replace the windows version of asprintf() that was only usable > in eal. With a more generic one that supports both vasprintf() > and asprintf(). This also eliminates duplicate code. > > Fixes: 8f4de2dba9b9 ("bus/pci: fill bus specific information") > Fixes: 9ec521006db0 ("eal/windows: hide asprintf shim") > > Signed-off-by: Stephen Hemminger > --- Acked-by: Tyler Retzlaff