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 CE8E9A0C41; Thu, 30 Sep 2021 11:57:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 53471410EA; Thu, 30 Sep 2021 11:57:30 +0200 (CEST) Received: from mail-108-mta71.mxroute.com (mail-108-mta71.mxroute.com [136.175.108.71]) by mails.dpdk.org (Postfix) with ESMTP id 67055410E5 for ; Thu, 30 Sep 2021 11:57:28 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta71.mxroute.com (ZoneMTA) with ESMTPSA id 17c36231dce0008545.002 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Thu, 30 Sep 2021 09:57:23 +0000 X-Zone-Loop: b62d552140b2a4a514eab577e52ea0adadd44c1f1ab9 X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=iwDfyLDxPXtBuJqmhkrIisCRj664u261++WjbmHOYFo=; b=A3xVKrVk3vet9DwkUIx7o6C/Pb /onHB2mZEh2cUMuOaSv50ut38s+kuxZa+WY1vKVz75yqLa+FCYjLl0N+8/Nq5exGNAkEO1Id5BkJo srvbEKcqmSoCcHaQ9Uc9tVkjTCKGrJYGpCsnPaSuFFDEii0m72ZX5CqkmOnRnzgRwnc19bQAkBBWf HwBDQI2wuaBMcqyeTlALtfhrkJQc+iA4MtcBcFuaH7DvwyedTlLRPN2/L0pounUHkUhxd/rMHfCR1 VI1/yRAIrVhntp3jcrgbuyy4nGcUaN/PIu5mFbxUzexKn91Hk7u4g/suiit3RpScAMXiAipD68oba Ag8XJSwg==; To: David Marchand , Olivier Matz Cc: dev , Bruce Richardson , Xueming Li , Gaetan Rivet References: <20210924155740.20510-1-olivier.matz@6wind.com> <20210929213943.17817-1-olivier.matz@6wind.com> From: "Kinsella, Ray" Message-ID: Date: Thu, 30 Sep 2021 10:57:19 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu Subject: Re: [dpdk-dev] [PATCH v2 0/5] kvargs: promote or remove experimental api 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 Sender: "dev" On 30/09/2021 09:25, David Marchand wrote: > On Wed, Sep 29, 2021 at 11:40 PM Olivier Matz wrote: >> >> This patchset promotes 2 functions rte_kvargs_parse_delim() and >> rte_kvargs_get() as stable. >> >> It also replaces rte_kvargs_strcmp() by a new one >> rte_kvargs_get_with_value(), which is easier to use. >> >> v2 >> * remove rte_kvargs_strcmp from version.map >> >> Olivier Matz (5): >> kvargs: promote delimited parsing as stable >> kvargs: promote get from key as stable >> kvargs: new function to get from key and value >> kvargs: remove experimental function to compare string >> kvargs: fix comments style > > Thanks, for the series, > Reviewed-by: David Marchand > Acked-by: Ray Kinsella