Re: [PATCH v6 1/4] kvargs: add one new process API

2024-10-09 Thread Ferruh Yigit
On 10/9/2024 5:50 AM, Chengwen Feng wrote: > The rte_kvargs_process() was used to handle key=value (e.g. > socket_id=0), it also supports to handle only-key (e.g. socket_id). > But many drivers's callback can only handle key=value, it will segment > fault if handles only-key. so the patchset [1] wa

[PATCH v6 1/4] kvargs: add one new process API

2024-10-08 Thread Chengwen Feng
The rte_kvargs_process() was used to handle key=value (e.g. socket_id=0), it also supports to handle only-key (e.g. socket_id). But many drivers's callback can only handle key=value, it will segment fault if handles only-key. so the patchset [1] was introduced. Because the patchset [1] modified to