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 E206643C12; Thu, 7 Mar 2024 18:50:52 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B08EC410D5; Thu, 7 Mar 2024 18:50:52 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3D9AF40272 for ; Thu, 7 Mar 2024 18:50:51 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 94BBF20B74C1; Thu, 7 Mar 2024 09:50:50 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 94BBF20B74C1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1709833850; bh=bvivWp7atjiYUrqmEY44F/TKnLD2ey9RDV/yqyWmoiM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ey/rlaR2n0D+13XGMLeRsSqEjCKfqhYAnDXw4vWxe8CaG3EYJdYqTohn84cY2VKkX YtQwWnUi+E+1rH/Rt09AdhfWmznXA+lMD2qpVeGMSwUbnlj/jtPUOB58H/ytQMdq04 uQsEh6EiJA7GU4yXe1/JAkRbN3RUqhvg2x+xW0IY= Date: Thu, 7 Mar 2024 09:50:50 -0800 From: Tyler Retzlaff To: David Marchand Cc: dev@dpdk.org, Chengwen Feng Subject: Re: [PATCH] argparse: fix parser callback type name Message-ID: <20240307175050.GB14353@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20240307161402.1460071-1-david.marchand@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240307161402.1460071-1-david.marchand@redhat.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 Thu, Mar 07, 2024 at 05:14:02PM +0100, David Marchand wrote: > All types exposed in a public header must be prefixed with rte_. > > Fixes: e3e579f5bab5 ("argparse: introduce argparse library") > > Signed-off-by: David Marchand > --- Acked-by: Tyler Retzlaff