On Wed,  4 Feb 2026 19:40:11 +0100
[email protected] wrote:

> diff --git a/lib/vhost/socket.c b/lib/vhost/socket.c
> index 9b4f332f94..e953dd1849 100644
> --- a/lib/vhost/socket.c
> +++ b/lib/vhost/socket.c
> @@ -1209,3 +1209,11 @@ rte_vhost_driver_start(const char *path)
>       else
>               return vhost_user_start_client(vsocket);
>  }
> +
> +RTE_FINI(vhost_user_fdset_fini)
> +{
> +     if (vhost_user.fdset != NULL) {
> +             fdset_deinit(vhost_user.fdset);
> +             vhost_user.fdset = NULL;
> +     }
> +}

NAK
This should be done as via rte_eal_cleanup.
Did you not see previous analysis?

Reply via email to