Re: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-07-12 Thread Burakov, Anatoly
On 7/12/2024 4:18 AM, Ye, MingjinX wrote: -Original Message- From: Burakov, Anatoly Sent: Friday, July 12, 2024 12:10 AM To: Ye, MingjinX ; dev@dpdk.org Cc: sta...@dpdk.org Subject: Re: [PATCH 3/3] net/vdev: fix insert vdev core dump On 3/14/2024 10:36 AM, Mingjin Ye wrote

RE: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-07-11 Thread Ye, MingjinX
> -Original Message- > From: Burakov, Anatoly > Sent: Friday, July 12, 2024 12:10 AM > To: Ye, MingjinX ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [PATCH 3/3] net/vdev: fix insert vdev core dump > > On 3/14/2024 10:36 AM, Mingjin Ye wrote: > > In

Re: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-07-11 Thread Burakov, Anatoly
On 3/14/2024 10:36 AM, Mingjin Ye wrote: Inserting a vdev device when the device arguments are already stored in devargs_list, the rte_devargs_insert function replaces the supplied new devargs with the found devargs and frees the new devargs. As a result, the use of free devargs results in a core

RE: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-06-19 Thread Ye, MingjinX
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, June 20, 2024 4:16 AM > To: Ye, MingjinX > Cc: dev@dpdk.org; sta...@dpdk.org; Marchand, David > ; step...@networkplumber.org; > Richardson, Bruce > Subject: Re: [PATCH 3/3] net/vdev: fix insert v

Re: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-06-19 Thread Thomas Monjalon
14/03/2024 10:36, Mingjin Ye: > Inserting a vdev device when the device arguments are already stored > in devargs_list, the rte_devargs_insert function replaces the supplied > new devargs with the found devargs and frees the new devargs. As a > result, the use of free devargs results in a core dump

RE: [PATCH 3/3] net/vdev: fix insert vdev core dump

2024-03-14 Thread Jiang, YuX
> -Original Message- > From: Mingjin Ye > Sent: Thursday, March 14, 2024 5:37 PM > To: dev@dpdk.org > Cc: Ye, MingjinX ; sta...@dpdk.org > Subject: [PATCH 3/3] net/vdev: fix insert vdev core dump > > Inserting a vdev device when the device arguments are already

[PATCH 3/3] net/vdev: fix insert vdev core dump

2024-03-14 Thread Mingjin Ye
Inserting a vdev device when the device arguments are already stored in devargs_list, the rte_devargs_insert function replaces the supplied new devargs with the found devargs and frees the new devargs. As a result, the use of free devargs results in a core dump. This patch fixes the issue by using