From: Sujit Reddy Thumma <sthumma@codeaurora.org>
To: Per Forlin <per.lkml@gmail.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>,
linux-mmc@vger.kernel.org, linux-arm-msm@vger.kernel.org,
cjb@laptop.org
Subject: Re: [PATCH] mmc: core: Kill block requests if card is removed
Date: Thu, 10 Nov 2011 09:43:27 +0530 [thread overview]
Message-ID: <4EBB4F67.1080406@codeaurora.org> (raw)
In-Reply-To: <CAFEEs1nQmKues-93zQe7uxNnNqJPEzvBc-2zGkrvUdgPvoGBKw@mail.gmail.com>
On 11/10/2011 3:35 AM, Per Forlin wrote:
> Hi Adrian,
>
>>> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
>>> index 5278ffb..91d7721 100644
>>> --- a/drivers/mmc/core/core.c
>>> +++ b/drivers/mmc/core/core.c
>>> @@ -259,7 +259,7 @@ static void mmc_wait_for_req_done(struct mmc_host *host,
>>> wait_for_completion(&mrq->completion);
>>>
>>> cmd = mrq->cmd;
>>> - if (!cmd->error || !cmd->retries)
>>> + if (!cmd->error || !cmd->retries || mmc_card_gone(host->card))
>> host->card will be NULL
>> static void mmc_remove(struct mmc_host *host)
>> {
>> BUG_ON(!host);
>> BUG_ON(!host->card);
>>
>> mmc_remove_card(host->card);
>> host->card = NULL;
>> }
>> card is not freed until later.
> Please ignore this part. I jumped to conclusions. I had another look
> and there can't be any incoming requests when host->card is NULL.
> I need to study device_del() further, in order to understand the details.
There can be incoming requests when the host->card is NULL. This happens
when we are detecting the card for the first time. That is, in
mmc_rescan() we send all the initialization commands with host->card
being NULL.
We can do something like this:
#define mmc_card_gone(c) (c && ((c)->state & MMC_STATE_CARD_GONE))
>
> Regards,
> Per
--
Thanks & Regards,
Sujit Reddy Thumma
Sent by an employee of the Qualcomm Innovation Center, Inc.
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum.
next prev parent reply other threads:[~2011-11-10 4:13 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-09 4:31 [PATCH] mmc: core: Kill block requests if card is removed Sujit Reddy Thumma
2011-11-09 9:34 ` Adrian Hunter
2011-11-09 20:53 ` Per Forlin
2011-11-09 22:05 ` Per Forlin
2011-11-10 4:13 ` Sujit Reddy Thumma [this message]
2011-11-10 4:02 ` Sujit Reddy Thumma
2011-11-10 9:35 ` Adrian Hunter
2011-11-10 14:20 ` Per Forlin
2011-11-14 4:19 ` Sujit Reddy Thumma
2011-11-14 7:52 ` Per Forlin
2011-11-14 8:24 ` Per Forlin
2011-11-14 8:46 ` Sujit Reddy Thumma
2011-11-09 21:47 ` Per Forlin
2011-11-10 5:31 ` Sujit Reddy Thumma
2011-11-22 20:18 ` David Taylor
2011-11-24 9:30 ` Per Forlin
2011-11-24 11:31 ` Sujit Reddy Thumma
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=4EBB4F67.1080406@codeaurora.org \
--to=sthumma@codeaurora.org \
--cc=adrian.hunter@intel.com \
--cc=cjb@laptop.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=per.lkml@gmail.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.