mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
mmc: core: Fix OF node reference leak on card add failure
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: 25185f3f31 ("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>
Signed-off-by: Ulf Hansson <ulfh@kernel.org>
This commit is contained in:
parent
9c182bc5d7
commit
08b54e16d5
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user