All of lore.kernel.org
 help / color / mirror / Atom feed
From: Shawn Lin <shawn.lin@linux.dev>
To: Zhu Ling <zhuling0805@qq.com>, Ulf Hansson <ulfh@kernel.org>
Cc: shawn.lin@linux.dev, Hans de Goede <hansg@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org,
	stable@vger.kernel.org
Subject: Re: [PATCH] mmc: core: Fix OF node reference leak on card add failure
Date: Fri, 4 Sep 2026 17:35:44 +0800	[thread overview]
Message-ID: <08b5843b-33f0-4c33-8db6-c23da0c9b685@linux.dev> (raw)
In-Reply-To: <tencent_CAA125B50CDEC8BA29F4B982356549608D07@qq.com>

On 2026/09/04 星期五 17:07, Zhu Ling wrote:
> mmc_of_find_child_device() returns a device node with its reference count
> incremented. mmc_add_card() stores the reference before calling
> device_add(), while the card is marked present only after device_add()
> succeeds.
> 
> If device_add() fails, the callers release the card through
> mmc_remove_card(). However, mmc_remove_card() only drops the OF node
> reference for a present card, leaking the reference on this error path.
> 
> Move of_node_put() outside the present-card conditional so the reference
> is released for both registered cards and card-add failures.
> 
> Fixes: 25185f3f31c9 ("mmc: Add SDIO function devicetree subnode parsing")
> Cc: stable@vger.kernel.org
> Signed-off-by: Zhu Ling <zhuling0805@qq.com>
> ---

Reviewed-by: Shawn Lin <shawn.lin@linux.dev>

>   drivers/mmc/core/bus.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/core/bus.c b/drivers/mmc/core/bus.c
> index be5cf338bdeb..92ad39c0cabc 100644
> --- a/drivers/mmc/core/bus.c
> +++ b/drivers/mmc/core/bus.c
> @@ -417,8 +417,8 @@ void mmc_remove_card(struct mmc_card *card)
>   				mmc_hostname(card->host), card->rca);
>   		}
>   		device_del(&card->dev);
> -		of_node_put(card->dev.of_node);
>   	}
> +	of_node_put(card->dev.of_node);
>   
>   	if (host->cqe_enabled) {
>   		host->cqe_ops->cqe_disable(host);
> 
> 


  reply	other threads:[~2026-09-04  9:35 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  9:07 [PATCH] mmc: core: Fix OF node reference leak on card add failure Zhu Ling
2026-09-04  9:35 ` Shawn Lin [this message]
2026-09-10 16:05 ` Ulf Hansson

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=08b5843b-33f0-4c33-8db6-c23da0c9b685@linux.dev \
    --to=shawn.lin@linux.dev \
    --cc=hansg@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mmc@vger.kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=stable@vger.kernel.org \
    --cc=ulfh@kernel.org \
    --cc=zhuling0805@qq.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.