Re: [dpdk-dev] [PATCH v10 04/27] kvargs: introduce a more flexible parsing function

2018-07-11 Thread Shreyansh Jain
On Friday 06 July 2018 03:30 AM, Thomas Monjalon wrote: 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, +

Re: [dpdk-dev] [PATCH v10 04/27] kvargs: introduce a more flexible parsing function

2018-07-05 Thread Thomas Monjalon
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[], > + con

[dpdk-dev] [PATCH v10 04/27] kvargs: introduce a more flexible parsing function

2018-07-05 Thread Gaetan Rivet
This function permits defining additional terminating characters, ending the parsing to arbitrary delimiters. Signed-off-by: Gaetan Rivet --- lib/Makefile | 1 + lib/librte_kvargs/meson.build| 2 ++ lib/librte_kvargs/rte_kvargs.c | 25 +