]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
mmc: core: fix permanent sleep of mmcqd during card removal
authorSeungwon Jeon <tgih.jun@samsung.com>
Tue, 22 Jan 2013 10:48:03 +0000 (19:48 +0900)
committerChris Ball <cjb@laptop.org>
Sun, 24 Feb 2013 19:37:12 +0000 (14:37 -0500)
This patch is derived from:
"mmc: fix async request mechanism for sequential read scenarios".

According as async transfer, a request is handled with twice mmc_start_req.
When the card is removed, the request is actually not issued in the first
mmc_start_req [__mmc_start_data_req]. And then mmc_wait_for_data_req_done
will come in the next mmc_start_req. But there is no event for completions.
wake_up_interruptible is needed in __mmc_start_data_req for the case of
removed card.

Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Tested-by: Konstantin Dorfman <kdorfman@codeaurora.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/core/core.c

index e41badbf9b501629a1cb444a0b99af8b4770f0af..6e95f6f11a287d0193cc6c626aa25338252f8f8f 100644 (file)
@@ -350,6 +350,7 @@ static int __mmc_start_data_req(struct mmc_host *host, struct mmc_request *mrq)
        mrq->host = host;
        if (mmc_card_removed(host->card)) {
                mrq->cmd->error = -ENOMEDIUM;
+               mmc_wait_data_done(mrq);
                return -ENOMEDIUM;
        }
        mmc_start_request(host, mrq);