From: Leon Romanovsky <leon@kernel.org>
To: Tao Cui <cuitao@kylinos.cn>
Cc: jgg@ziepe.ca, linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH rdma-next] RDMA/cgroup: fix resource leak in DRIVER_FAILURE cleanup path
Date: Wed, 10 Jun 2026 11:48:21 +0300 [thread overview]
Message-ID: <20260610084821.GG327369@unreal> (raw)
In-Reply-To: <20260518031541.1552942-1-cuitao@kylinos.cn>
On Mon, May 18, 2026 at 11:15:41AM +0800, Tao Cui wrote:
> When a driver fails to destroy an RDMA object during ufile cleanup,
> the kernel retries and eventually falls back to the
> RDMA_REMOVE_DRIVER_FAILURE path. This path sets obj->object = NULL
> before calling uverbs_destroy_uobject(), which skips the destroy_hw
> callback. Since ib_rdmacg_uncharge() lives inside destroy_hw_idr_uobject(),
> the HCA_OBJECT cgroup charge is never released.
>
> Add an explicit ib_rdmacg_uncharge() call in the DRIVER_FAILURE path
> to prevent the resource counter leak.
It is not the correct approach. A cgroup controls how many resources a
task may consume, and a "failure to release" indicates that the resource
usage is still being accounted to that task.
Thanks
>
> Signed-off-by: Tao Cui <cuitao@kylinos.cn>
> ---
> drivers/infiniband/core/rdma_core.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/infiniband/core/rdma_core.c b/drivers/infiniband/core/rdma_core.c
> index 5018ec837056..347ec8f6976b 100644
> --- a/drivers/infiniband/core/rdma_core.c
> +++ b/drivers/infiniband/core/rdma_core.c
> @@ -917,8 +917,11 @@ static int __uverbs_cleanup_ufile(struct ib_uverbs_file *ufile,
> * racing with a lookup_get.
> */
> WARN_ON(uverbs_try_lock_object(obj, UVERBS_LOOKUP_WRITE));
> - if (reason == RDMA_REMOVE_DRIVER_FAILURE)
> + if (reason == RDMA_REMOVE_DRIVER_FAILURE) {
> obj->object = NULL;
> + ib_rdmacg_uncharge(&obj->cg_obj, ib_dev,
> + RDMACG_RESOURCE_HCA_OBJECT);
> + }
> if (!uverbs_destroy_uobject(obj, reason, &attrs))
> ret = 0;
> else
> --
> 2.43.0
>
prev parent reply other threads:[~2026-06-10 8:48 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-18 3:15 [PATCH rdma-next] RDMA/cgroup: fix resource leak in DRIVER_FAILURE cleanup path Tao Cui
2026-06-10 8:48 ` Leon Romanovsky [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260610084821.GG327369@unreal \
--to=leon@kernel.org \
--cc=cuitao@kylinos.cn \
--cc=jgg@ziepe.ca \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox