> Add a function mmc_detect_card_removed() which upper layers
> can use to determine immediately if a card has been removed.
> This function should be called after an I/O request fails so
> that all queued I/O requests can be errored out immediately
> instead of waiting for the card device to be removed.
>
> Signed-off-by: Adrian Hunter <adrian.hun...@intel.com>
> ---
>  drivers/mmc/core/core.c  |   51
> +++++++++++++++++++++++++++++++++++++++++++--
>  drivers/mmc/core/core.h  |    3 ++
>  drivers/mmc/core/mmc.c   |   12 ++++++++++-
>  drivers/mmc/core/sd.c    |   12 ++++++++++-
>  drivers/mmc/core/sdio.c  |   11 +++++++++-
>  include/linux/mmc/card.h |    3 ++
>  include/linux/mmc/core.h |    2 +
>  include/linux/mmc/host.h |    1 +
>  8 files changed, 89 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
> index 271efea..3dacc98 100644
> --- a/drivers/mmc/core/core.c
> +++ b/drivers/mmc/core/core.c
> @@ -140,7 +140,7 @@ void mmc_request_done(struct mmc_host *host, struct
> mmc_request *mrq)
>                       cmd->retries = 0;
>       }
>
> -     if (err && cmd->retries) {
> +     if (err && cmd->retries && !mmc_card_removed(host->card)) {
>               /*
>                * Request starter must handle retries - see
>                * mmc_wait_for_req_done().
> @@ -247,6 +247,11 @@ static void __mmc_start_req(struct mmc_host *host,
> struct mmc_request *mrq)
>  {
>       init_completion(&mrq->completion);
>       mrq->done = mmc_wait_done;
> +     if (mmc_card_removed(host->card)) {
> +             mrq->cmd->error = -ENOMEDIUM;
> +             complete(&mrq->completion);
> +             return;
> +     }
>       mmc_start_request(host, mrq);
>  }
>
> @@ -259,7 +264,8 @@ 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_removed(host->card))
>                       break;
>
>               pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
> @@ -1456,7 +1462,7 @@ void mmc_detect_change(struct mmc_host *host,
> unsigned long delay)
>       WARN_ON(host->removed);
>       spin_unlock_irqrestore(&host->lock, flags);
>  #endif
> -
> +     host->detect_change = 1;
>       mmc_schedule_delayed_work(&host->detect, delay);
>  }
>
> @@ -2049,6 +2055,43 @@ static int mmc_rescan_try_freq(struct mmc_host
> *host, unsigned freq)
>       return -EIO;
>  }
>
> +int _mmc_detect_card_removed(struct mmc_host *host)
> +{
> +     int ret;
> +
> +     if (!(host->caps & MMC_CAP_NONREMOVABLE) || !host->bus_ops->alive)
> +             return 0;
> +
> +     if (!host->card || mmc_card_removed(host->card))
> +             return 1;
> +
> +     ret = host->bus_ops->alive(host);
> +     if (ret) {
> +             mmc_card_set_removed(host->card);
> +             pr_info("%s: card removed\n", mmc_hostname(host));

We are printing the same information when mmc_remove_card() is called. Can
we move this to pr_debug() here?


--
To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to