From: Ulf Hansson <ulf.hansson@linaro.org>
To: Yang Yingliang <yangyingliang@huawei.com>
Cc: linux-mmc@vger.kernel.org
Subject: Re: [PATCH v2 1/3] mmc: sdio: fix of node refcount leak in sdio_add_func()
Date: Tue, 8 Nov 2022 17:04:49 +0100 [thread overview]
Message-ID: <CAPDyKFopPes26gxBwLw=61ZkZCA-dRbaXCMMbL+JvxymuziB-w@mail.gmail.com> (raw)
In-Reply-To: <20221102012533.1270876-2-yangyingliang@huawei.com>
On Wed, 2 Nov 2022 at 02:27, Yang Yingliang <yangyingliang@huawei.com> wrote:
>
> If device_add() returns error in sdio_add_func(), sdio function is not
> presented, so the node refcount that hold in sdio_set_of_node() can not
> be put in sdio_remove_func() which is called from error path. Fix this
> by calling of_node_put() if device_add() fails.
>
> Fixes: 25185f3f31c9 ("mmc: Add SDIO function devicetree subnode parsing")
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
> ---
> drivers/mmc/core/sdio_bus.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/mmc/core/sdio_bus.c b/drivers/mmc/core/sdio_bus.c
> index babf21a0adeb..b9308813a226 100644
> --- a/drivers/mmc/core/sdio_bus.c
> +++ b/drivers/mmc/core/sdio_bus.c
> @@ -365,6 +365,8 @@ int sdio_add_func(struct sdio_func *func)
> ret = device_add(&func->dev);
> if (ret == 0)
> sdio_func_set_present(func);
> + else
> + of_node_put(func->dev.of_node);
I think it would be better to change the sdio_remove_func() to manage
this. In principle sdio_func_present() should not make
sdio_remove_func() to return immediately, but rather just control
whether device_del() needs to be called or not.
>
> return ret;
> }
Kind regards
Uffe
next prev parent reply other threads:[~2022-11-08 16:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-02 1:25 [PATCH v2 0/3] mmc: sdio: fixes some leaks Yang Yingliang
2022-11-02 1:25 ` [PATCH v2 1/3] mmc: sdio: fix of node refcount leak in sdio_add_func() Yang Yingliang
2022-11-08 16:04 ` Ulf Hansson [this message]
2022-11-02 1:25 ` [PATCH v2 2/3] mmc: sdio: fix possible memory leak in sdio_init_func() Yang Yingliang
2022-11-02 1:25 ` [PATCH v2 3/3] mmc: sdio: fix possible memory leak in mmc_attach_sdio() Yang Yingliang
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='CAPDyKFopPes26gxBwLw=61ZkZCA-dRbaXCMMbL+JvxymuziB-w@mail.gmail.com' \
--to=ulf.hansson@linaro.org \
--cc=linux-mmc@vger.kernel.org \
--cc=yangyingliang@huawei.com \
/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;
as well as URLs for NNTP newsgroup(s).