From: Joe.Zhou <Joe.Zhou@mediatek.com>
To: Ulf Hansson <ulf.hansson@linaro.org>
Cc: <linux-mmc@vger.kernel.org>, <linux-mediatek@lists.infradead.org>,
<wsd_upstream@mediatek.com>,
"Peng . Zhou" <Peng.Zhou@mediatek.com>,
"Sophie . Wang" <Sophie.Wang@mediatek.com>,
"Wey . Zhang" <Wey.Zhang@mediatek.com>,
"Yijian . Jia" <yijian.jia@mediatek.com>,
"Sharp . Xia" <Sharp.Xia@mediatek.com>,
Joe.Zhou <Joe.Zhou@mediatek.com>
Subject: [PATCH] mmc: race condition between "sdcard hot plug out" and "system reboot"
Date: Mon, 8 Apr 2024 18:38:24 +0800 [thread overview]
Message-ID: <20240408103824.11476-1-Joe.Zhou@mediatek.com> (raw)
In mmc driver, a race condition may occur between "sdcard hot plug out" and "system reboot".
How it happen?
sdcard hot pulg out: SyS_reboot:
CPU0 CPU1
mmc_sd_detect() _mmc_sd_suspend
{ {
......
#Step1: detect SD card removed
if (err) { ......
#Step2: host->card is NULL
mmc_sd_remove(host);
#Step3:_mmc_sd_suspend claimed host
mmc_claim_host(host);
#Step4: use host->card(NULL pointer)
if (mmc_card_suspended(host->card))
......
}
mmc_claim_host(host);
mmc_detach_bus(host);
}
......
}
we can prevent it occuring by add claim for "host->card = NULL" and add "host->card" validity check in mmc_sd_suspend.
Signed-off-by: Joe.Zhou <Joe.Zhou@mediatek.com>
---
drivers/mmc/core/sd.c | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index 1c8148cdda50..38c0b271283a 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -1593,7 +1593,9 @@ static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
static void mmc_sd_remove(struct mmc_host *host)
{
mmc_remove_card(host->card);
+ mmc_claim_host(host);
host->card = NULL;
+ mmc_release_host(host);
}
/*
@@ -1702,18 +1704,19 @@ static int _mmc_sd_suspend(struct mmc_host *host)
int err = 0;
mmc_claim_host(host);
+ if (host->card) {
+ if (mmc_card_suspended(card))
+ goto out;
- if (mmc_card_suspended(card))
- goto out;
-
- if (sd_can_poweroff_notify(card))
- err = sd_poweroff_notify(card);
- else if (!mmc_host_is_spi(host))
- err = mmc_deselect_cards(host);
+ if (sd_can_poweroff_notify(card))
+ err = sd_poweroff_notify(card);
+ else if (!mmc_host_is_spi(host))
+ err = mmc_deselect_cards(host);
- if (!err) {
- mmc_power_off(host);
- mmc_card_set_suspended(card);
+ if (!err) {
+ mmc_power_off(host);
+ mmc_card_set_suspended(card);
+ }
}
out:
@@ -1729,7 +1732,7 @@ static int mmc_sd_suspend(struct mmc_host *host)
int err;
err = _mmc_sd_suspend(host);
- if (!err) {
+ if (!err && host->card) {
pm_runtime_disable(&host->card->dev);
pm_runtime_set_suspended(&host->card->dev);
}
--
2.18.0
next reply other threads:[~2024-04-08 10:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-08 10:38 Joe.Zhou [this message]
2024-04-25 9:49 ` [PATCH] mmc: race condition between "sdcard hot plug out" and "system reboot" Ulf Hansson
2024-05-06 3:36 ` Joe.Zhou
2024-05-06 9:53 ` 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=20240408103824.11476-1-Joe.Zhou@mediatek.com \
--to=joe.zhou@mediatek.com \
--cc=Peng.Zhou@mediatek.com \
--cc=Sharp.Xia@mediatek.com \
--cc=Sophie.Wang@mediatek.com \
--cc=Wey.Zhang@mediatek.com \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-mmc@vger.kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=wsd_upstream@mediatek.com \
--cc=yijian.jia@mediatek.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