Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-14 Thread Stephen Hemminger
On Tue, 14 Jan 2025 04:53:51 + Gagandeep Singh wrote: > Hi, > > > -Original Message- > > From: Stephen Hemminger > > Sent: Monday, January 13, 2025 10:10 PM > > To: Gagandeep Singh > > Cc: dev@dpdk.org > > Subject: Re: [PATCH] eal: add

RE: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-13 Thread Gagandeep Singh
Hi, > -Original Message- > From: Stephen Hemminger > Sent: Monday, January 13, 2025 10:10 PM > To: Gagandeep Singh > Cc: dev@dpdk.org > Subject: Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup() > > On Mon, 13 Jan 2025 05:13:01 + > Gagand

Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-13 Thread Stephen Hemminger
On Mon, 13 Jan 2025 05:13:01 + Gagandeep Singh wrote: > Hi, > > > -Original Message- > > From: Stephen Hemminger > > Sent: Friday, January 10, 2025 10:49 PM > > To: Gagandeep Singh > > Cc: dev@dpdk.org > > Subject: Re: [PATCH] eal: add

RE: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-12 Thread Gagandeep Singh
Hi, > -Original Message- > From: Stephen Hemminger > Sent: Friday, January 10, 2025 10:49 PM > To: Gagandeep Singh > Cc: dev@dpdk.org > Subject: Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup() > > On Fri, 10 Jan 2025 12:17:17 +0530 > Gagandee

Re: [PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-10 Thread Stephen Hemminger
On Fri, 10 Jan 2025 12:17:17 +0530 Gagandeep Singh wrote: > This patch introduces a worker thread cleanup function in the EAL library, > ensuring proper termination of created pthreads and invocation of > registered pthread destructors. > This guarantees the correct cleanup of thread-specific res

[PATCH] eal: add worker threads cleanup in rte_eal_cleanup()

2025-01-09 Thread Gagandeep Singh
This patch introduces a worker thread cleanup function in the EAL library, ensuring proper termination of created pthreads and invocation of registered pthread destructors. This guarantees the correct cleanup of thread-specific resources, used by drivers or applications. Signed-off-by: Gagandeep S