Re: [dpdk-dev] [PATCH v2 4/5] kvargs: remove experimental function to compare string

2021-09-30 Thread David Marchand
On Thu, Sep 30, 2021 at 4:00 PM Olivier Matz wrote: > > On Wed, Sep 29, 2021 at 11:39:42PM +0200, Olivier Matz wrote: > > The function was designed to be used as a handler for > > rte_kvargs_process() to compare the value string in a kvlist. For > > readability, its usages in DPDK have been replac

Re: [dpdk-dev] [PATCH v2 4/5] kvargs: remove experimental function to compare string

2021-09-30 Thread Olivier Matz
On Wed, Sep 29, 2021 at 11:39:42PM +0200, Olivier Matz wrote: > The function was designed to be used as a handler for > rte_kvargs_process() to compare the value string in a kvlist. For > readability, its usages in DPDK have been replaced by > rte_kvargs_get_with_value() in previous commit. > > Re

[dpdk-dev] [PATCH v2 4/5] kvargs: remove experimental function to compare string

2021-09-29 Thread Olivier Matz
The function was designed to be used as a handler for rte_kvargs_process() to compare the value string in a kvlist. For readability, its usages in DPDK have been replaced by rte_kvargs_get_with_value() in previous commit. Remove this function, as it is not used anymore. Signed-off-by: Olivier Mat