* [PATCH] vdpa/mlx5: fix leak on event thread creation
@ 2022-06-20 13:10 David Marchand
2022-07-01 8:30 ` David Marchand
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: David Marchand @ 2022-06-20 13:10 UTC (permalink / raw)
To: dev
Cc: stable, Matan Azrad, Viacheslav Ovsiienko, Xueming Li, Maxime Coquelin
As stated in the manual, pthread_attr_init return value should be
checked.
Besides, a pthread_attr_t should be destroyed once unused.
In practice, we may have no leak (from what I read in glibc current code),
but this may change in the future.
Stick to a correct use of the API.
Fixes: 5cf3fd3af4df ("vdpa/mlx5: add CPU core parameter to bind polling thread")
Cc: stable@dpdk.org
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
Note: this is only compile tested.
---
drivers/vdpa/mlx5/mlx5_vdpa_event.c | 30 +++++++++++++++++++----------
1 file changed, 20 insertions(+), 10 deletions(-)
diff --git a/drivers/vdpa/mlx5/mlx5_vdpa_event.c b/drivers/vdpa/mlx5/mlx5_vdpa_event.c
index 7167a98db0..f40a68d187 100644
--- a/drivers/vdpa/mlx5/mlx5_vdpa_event.c
+++ b/drivers/vdpa/mlx5/mlx5_vdpa_event.c
@@ -467,6 +467,7 @@ mlx5_vdpa_cqe_event_setup(struct mlx5_vdpa_priv *priv)
{
int ret;
rte_cpuset_t cpuset;
+ pthread_attr_t *attrp = NULL;
pthread_attr_t attr;
char name[16];
const struct sched_param sp = {
@@ -476,22 +477,27 @@ mlx5_vdpa_cqe_event_setup(struct mlx5_vdpa_priv *priv)
if (!priv->eventc)
/* All virtqs are in poll mode. */
return 0;
- pthread_attr_init(&attr);
- ret = pthread_attr_setschedpolicy(&attr, SCHED_RR);
+ ret = pthread_attr_init(&attr);
+ if (ret != 0) {
+ DRV_LOG(ERR, "Failed to initialize thread attributes");
+ goto out;
+ }
+ attrp = &attr;
+ ret = pthread_attr_setschedpolicy(attrp, SCHED_RR);
if (ret) {
DRV_LOG(ERR, "Failed to set thread sched policy = RR.");
- return -1;
+ goto out;
}
- ret = pthread_attr_setschedparam(&attr, &sp);
+ ret = pthread_attr_setschedparam(attrp, &sp);
if (ret) {
DRV_LOG(ERR, "Failed to set thread priority.");
- return -1;
+ goto out;
}
- ret = pthread_create(&priv->timer_tid, &attr, mlx5_vdpa_event_handle,
+ ret = pthread_create(&priv->timer_tid, attrp, mlx5_vdpa_event_handle,
(void *)priv);
if (ret) {
DRV_LOG(ERR, "Failed to create timer thread.");
- return -1;
+ goto out;
}
CPU_ZERO(&cpuset);
if (priv->event_core != -1)
@@ -501,12 +507,16 @@ mlx5_vdpa_cqe_event_setup(struct mlx5_vdpa_priv *priv)
ret = pthread_setaffinity_np(priv->timer_tid, sizeof(cpuset), &cpuset);
if (ret) {
DRV_LOG(ERR, "Failed to set thread affinity.");
- return -1;
+ goto out;
}
snprintf(name, sizeof(name), "vDPA-mlx5-%d", priv->vid);
- ret = rte_thread_setname(priv->timer_tid, name);
- if (ret)
+ if (rte_thread_setname(priv->timer_tid, name) != 0)
DRV_LOG(DEBUG, "Cannot set timer thread name.");
+out:
+ if (attrp != NULL)
+ pthread_attr_destroy(attrp);
+ if (ret != 0)
+ return -1;
return 0;
}
--
2.36.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] vdpa/mlx5: fix leak on event thread creation
2022-06-20 13:10 [PATCH] vdpa/mlx5: fix leak on event thread creation David Marchand
@ 2022-07-01 8:30 ` David Marchand
2022-07-01 8:33 ` Maxime Coquelin
2022-07-03 9:46 ` Matan Azrad
2022-07-08 9:12 ` Maxime Coquelin
2 siblings, 1 reply; 5+ messages in thread
From: David Marchand @ 2022-07-01 8:30 UTC (permalink / raw)
To: Matan Azrad, Viacheslav Ovsiienko, Xueming Li
Cc: dev, dpdk stable, Maxime Coquelin, Raslan Darawsheh
On Mon, Jun 20, 2022 at 3:11 PM David Marchand
<david.marchand@redhat.com> wrote:
>
> As stated in the manual, pthread_attr_init return value should be
> checked.
> Besides, a pthread_attr_t should be destroyed once unused.
>
> In practice, we may have no leak (from what I read in glibc current code),
> but this may change in the future.
> Stick to a correct use of the API.
>
> Fixes: 5cf3fd3af4df ("vdpa/mlx5: add CPU core parameter to bind polling thread")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Review, please?
--
David Marchand
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] vdpa/mlx5: fix leak on event thread creation
2022-07-01 8:30 ` David Marchand
@ 2022-07-01 8:33 ` Maxime Coquelin
0 siblings, 0 replies; 5+ messages in thread
From: Maxime Coquelin @ 2022-07-01 8:33 UTC (permalink / raw)
To: David Marchand, Matan Azrad, Viacheslav Ovsiienko, Xueming Li
Cc: dev, dpdk stable, Raslan Darawsheh
On 7/1/22 10:30, David Marchand wrote:
> On Mon, Jun 20, 2022 at 3:11 PM David Marchand
> <david.marchand@redhat.com> wrote:
>>
>> As stated in the manual, pthread_attr_init return value should be
>> checked.
>> Besides, a pthread_attr_t should be destroyed once unused.
>>
>> In practice, we may have no leak (from what I read in glibc current code),
>> but this may change in the future.
>> Stick to a correct use of the API.
>>
>> Fixes: 5cf3fd3af4df ("vdpa/mlx5: add CPU core parameter to bind polling thread")
>> Cc: stable@dpdk.org
>>
>> Signed-off-by: David Marchand <david.marchand@redhat.com>
>
> Review, please?
>
>
I reviewed the patch but was waiting for Nvidia to test it.
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Nvidia, could it be done ASAP so that it goes to -rc3?
Thanks,
Maxime
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH] vdpa/mlx5: fix leak on event thread creation
2022-06-20 13:10 [PATCH] vdpa/mlx5: fix leak on event thread creation David Marchand
2022-07-01 8:30 ` David Marchand
@ 2022-07-03 9:46 ` Matan Azrad
2022-07-08 9:12 ` Maxime Coquelin
2 siblings, 0 replies; 5+ messages in thread
From: Matan Azrad @ 2022-07-03 9:46 UTC (permalink / raw)
To: David Marchand, dev
Cc: stable, Slava Ovsiienko, Xueming(Steven) Li, Maxime Coquelin
From: David Marchand
> As stated in the manual, pthread_attr_init return value should be checked.
> Besides, a pthread_attr_t should be destroyed once unused.
>
> In practice, we may have no leak (from what I read in glibc current code), but
> this may change in the future.
> Stick to a correct use of the API.
>
> Fixes: 5cf3fd3af4df ("vdpa/mlx5: add CPU core parameter to bind polling
> thread")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Matan Azrad <matan@nvidia.com>
Thanks David!
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] vdpa/mlx5: fix leak on event thread creation
2022-06-20 13:10 [PATCH] vdpa/mlx5: fix leak on event thread creation David Marchand
2022-07-01 8:30 ` David Marchand
2022-07-03 9:46 ` Matan Azrad
@ 2022-07-08 9:12 ` Maxime Coquelin
2 siblings, 0 replies; 5+ messages in thread
From: Maxime Coquelin @ 2022-07-08 9:12 UTC (permalink / raw)
To: David Marchand, dev; +Cc: stable, Matan Azrad, Viacheslav Ovsiienko, Xueming Li
On 6/20/22 15:10, David Marchand wrote:
> As stated in the manual, pthread_attr_init return value should be
> checked.
> Besides, a pthread_attr_t should be destroyed once unused.
>
> In practice, we may have no leak (from what I read in glibc current code),
> but this may change in the future.
> Stick to a correct use of the API.
>
> Fixes: 5cf3fd3af4df ("vdpa/mlx5: add CPU core parameter to bind polling thread")
> Cc: stable@dpdk.org
>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
> Note: this is only compile tested.
>
> ---
> drivers/vdpa/mlx5/mlx5_vdpa_event.c | 30 +++++++++++++++++++----------
> 1 file changed, 20 insertions(+), 10 deletions(-)
>
Applied to dpdk-next-virtio/main.
Thanks,
Maxime
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-07-08 9:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-20 13:10 [PATCH] vdpa/mlx5: fix leak on event thread creation David Marchand
2022-07-01 8:30 ` David Marchand
2022-07-01 8:33 ` Maxime Coquelin
2022-07-03 9:46 ` Matan Azrad
2022-07-08 9:12 ` Maxime Coquelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).