Re: [PATCH v3 4/5] net/tap: use new API to parse kvargs

2023-11-04 Thread fengchengwen
Hi Ferruh, Thanks for deepin, both fix in v4. On 2023/11/3 21:34, Ferruh Yigit wrote: > On 11/3/2023 7:38 AM, Chengwen Feng wrote: >> This driver could handles both key=value and only-key kvargs, so it >> should use rte_kvargs_process_opt() instead of rte_kvargs_process() to >> parse. >> >> Sig

Re: [PATCH v3 4/5] net/tap: use new API to parse kvargs

2023-11-03 Thread Ferruh Yigit
On 11/3/2023 7:38 AM, Chengwen Feng wrote: > This driver could handles both key=value and only-key kvargs, so it > should use rte_kvargs_process_opt() instead of rte_kvargs_process() to > parse. > > Signed-off-by: Chengwen Feng > --- > drivers/net/tap/rte_eth_tap.c | 26 +

[PATCH v3 4/5] net/tap: use new API to parse kvargs

2023-11-03 Thread Chengwen Feng
This driver could handles both key=value and only-key kvargs, so it should use rte_kvargs_process_opt() instead of rte_kvargs_process() to parse. Signed-off-by: Chengwen Feng --- drivers/net/tap/rte_eth_tap.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) dif