From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id C3D491BDF1 for ; Fri, 6 Jul 2018 00:00:14 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 264E8215AC; Thu, 5 Jul 2018 18:00:14 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 05 Jul 2018 18:00:14 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=7221Qh3AUMQkh/hYbVgNURZPaz yxOT3at7d3WqcpEqI=; b=YpT+YgpYY2c+6i5Uzam6D1SDja41JmtrChAEbuhkML xEQJSuvmoWhTrEL+8UG5y6imaUFo1kddrf6349iIB4utqx0+XfoBnfypAOhmoWd8 YdVlCqmMMi6Rl7HD2cBU6ibvtZBlzEcTqD3plnnS/TxTrHqOukWaxubNgl+CB6Vt s= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=7221Qh 3AUMQkh/hYbVgNURZPazyxOT3at7d3WqcpEqI=; b=or2iqgQQNSyib1ala6UxG/ SXXO6J8UdtOwdqjVU/m3wsP93LvINJ4318JaO48jYT0UnaDxbUflKMNaI7vfoi4w u+X9v4HFs1zXFvwLoLbl0G91qPjpbk8J5IlCj/dfwhx/NNbUFaCJOe5DpMoDrxYb M8u5NvpGDLl5h5EApbBeYhYayeha/GqdFGtWGc4n3MnsfLmuVLFnKbL4a0ijhqAn t83h0QMRXeThqjuUMX84DEBX1LszSldkmRCC1pFnMXCIIzg2m5kCzZXDZEq+kmoU lgP+ayLldNJHzT2f/om9BMcG4jh/daR8HA5NmxIiNYuCJymGZQdtj1O4jr8uf7gw == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 1C3E910269; Thu, 5 Jul 2018 18:00:13 -0400 (EDT) From: Thomas Monjalon To: Gaetan Rivet Cc: dev@dpdk.org, olivier.matz@6wind.com Date: Fri, 06 Jul 2018 00:00:11 +0200 Message-ID: <1866386.cgS3gS0Edk@xps> In-Reply-To: <6816f4a37e4f3869422377392689ec9ff3f25e7b.1530791217.git.gaetan.rivet@6wind.com> References: <6816f4a37e4f3869422377392689ec9ff3f25e7b.1530791217.git.gaetan.rivet@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v10 04/27] kvargs: introduce a more flexible parsing function X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jul 2018 22:00:15 -0000 05/07/2018 13:48, Gaetan Rivet: > This function permits defining additional terminating characters, > ending the parsing to arbitrary delimiters. [...] > +__rte_experimental > +struct rte_kvargs *rte_kvargs_parse2(const char *args, > + const char *const valid_keys[], > + const char *valid_ends); The name is not ideal but I don't have a better idea. Acked-by: Thomas Monjalon