[dpdk-dev] [PATCH 2/2] net/ice: fix leak on thread termination

2021-05-06 Thread David Marchand
A terminated pthread should be joined or detached so that its associated resources are released. The "ice-reset-" threads are used to service some reset task in the background, but they are never joined by the thread that created them. The easiest solution is to detach new threads. Fixes: 3b3757b

Re: [dpdk-dev] [PATCH 2/2] net/ice: fix leak on thread termination

2021-05-06 Thread Wang, Haiyue
> -Original Message- > From: David Marchand > Sent: Thursday, May 6, 2021 17:45 > To: dev@dpdk.org > Cc: sta...@dpdk.org; Yang, Qiming ; Zhang, Qi Z > ; Wang, > Haiyue > Subject: [PATCH 2/2] net/ice: fix leak on thread termination > > A terminated pthread should be joined or detached so