mmc: block: Check the timeout correctly in card_busy_detect()
authorAdrian Hunter <adrian.hunter@intel.com>
Wed, 29 Nov 2017 13:41:11 +0000 (15:41 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 11 Dec 2017 11:44:37 +0000 (12:44 +0100)
Pedantically, ensure the status is checked for the last time after the full
timeout has passed.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
drivers/mmc/core/block.c

index c446d17..f7c387c 100644 (file)
@@ -931,6 +931,8 @@ static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
        u32 status;
 
        do {
+               bool done = time_after(jiffies, timeout);
+
                err = __mmc_send_status(card, &status, 5);
                if (err) {
                        pr_err("%s: error %d requesting status\n",
@@ -951,7 +953,7 @@ static int card_busy_detect(struct mmc_card *card, unsigned int timeout_ms,
                 * Timeout if the device never becomes ready for data and never
                 * leaves the program state.
                 */
-               if (time_after(jiffies, timeout)) {
+               if (done) {
                        pr_err("%s: Card stuck in programming state! %s %s\n",
                                mmc_hostname(card->host),
                                req->rq_disk->disk_name, __func__);