Re: [PATCH v2 00/44] fix segment fault when parse args

2023-10-31 Thread Stephen Hemminger
On Mon, 17 Apr 2023 17:37:46 +0100 Ferruh Yigit wrote: > From: Ferruh Yigit > To: fengchengwen , tho...@monjalon.net > Cc: dev@dpdk.org > Subject: Re: [PATCH v2 00/44] fix segment fault when parse args > Date: Mon, 17 Apr 2023 17:37:46 +0100 > User-Agent: Mozilla/5.0 (Wind

Re: [PATCH v2 00/44] fix segment fault when parse args

2023-04-17 Thread Ferruh Yigit
On 4/15/2023 2:38 AM, fengchengwen wrote: > Hi Thomas, Ferruh, > > This patch-set get almost 30% ack by PMD's maintainer. > Could it be applied? and squeeze the patch-set is okay. > Hi Chengwen, The patch is trivial and safe on its own, so for me having enough ack or not is not what blocks

Re: [PATCH v2 00/44] fix segment fault when parse args

2023-04-14 Thread fengchengwen
Hi Thomas, Ferruh, This patch-set get almost 30% ack by PMD's maintainer. Could it be applied? and squeeze the patch-set is okay. Another thread talk about a change in kvargs API, we could discuss here. My opinion: 1) the below PMD has the bug, but there are also many PMD take care of

[PATCH v2 00/44] fix segment fault when parse args

2023-03-20 Thread Chengwen Feng
The rte_kvargs_process() was used to parse KV pairs, it also supports to parse 'only keys' (e.g. socket_id) type. And the callback function parameter 'value' is NULL when parsed 'only keys'. It may leads to segment fault when parse args with 'only key', this patchset fixes rest of them. Chengwen