* [PATCH] mmc: core: Fix OF node reference leak on card add failure
@ 2026-09-04 9:07 Zhu Ling
2026-09-04 9:35 ` Shawn Lin
2026-09-10 16:05 ` Ulf Hansson
0 siblings, 2 replies; 3+ messages in thread
From: Zhu Ling @ 2026-09-04 9:07 UTC (permalink / raw)
To: Ulf Hansson
Cc: Hans de Goede, Sascha Hauer, linux-mmc, linux-kernel, Zhu Ling,
stable
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>
---
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);
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] mmc: core: Fix OF node reference leak on card add failure
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
2026-09-10 16:05 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Lin @ 2026-09-04 9:35 UTC (permalink / raw)
To: Zhu Ling, Ulf Hansson
Cc: shawn.lin, Hans de Goede, Sascha Hauer, linux-mmc, linux-kernel,
stable
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);
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] mmc: core: Fix OF node reference leak on card add failure
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
@ 2026-09-10 16:05 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2026-09-10 16:05 UTC (permalink / raw)
To: Zhu Ling
Cc: Ulf Hansson, Hans de Goede, Sascha Hauer, linux-mmc, linux-kernel,
stable
On Fri, Sep 4, 2026 at 11:08 AM Zhu Ling <zhuling0805@qq.com> 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>
Applied for fixes, thanks!
Kind regards
Uffe
> ---
> 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);
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-10 16:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2026-09-10 16:05 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox