summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorKen Sumrall <ksumrall@android.com>2011-12-13 01:22:23 +0800
committerAndy Green <andy.green@linaro.org>2011-12-26 16:42:17 +0800
commit9c1e98fc3b82a2c6adb1193ffc6e8e5ce04c2197 (patch)
tree785dcee8db582c5b7e61351690c813af6feee78e /drivers
parent627230c4bbf5783c663877f1accfa1250611e3f6 (diff)
mmc: block: Improve logging of handling emmc timeouts
Add some logging to make it clear just how the emmc timeout was handled. Change-Id: Id33fd28d8b9778dc4e85db829e2637a328eddab4 Signed-off-by: Ken Sumrall <ksumrall@android.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mmc/card/block.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index fa47d9d51e2..a366c647384 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -581,18 +581,22 @@ static int mmc_blk_cmd_error(struct request *req, const char *name, int error,
req->rq_disk->disk_name, "timed out", name, status);
/* If the status cmd initially failed, retry the r/w cmd */
- if (!status_valid)
+ if (!status_valid) {
+ pr_err("%s: status not valid, retrying timeout\n", req->rq_disk->disk_name);
return ERR_RETRY;
-
+ }
/*
* If it was a r/w cmd crc error, or illegal command
* (eg, issued in wrong state) then retry - we should
* have corrected the state problem above.
*/
- if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND))
+ if (status & (R1_COM_CRC_ERROR | R1_ILLEGAL_COMMAND)) {
+ pr_err("%s: command error, retrying timeout\n", req->rq_disk->disk_name);
return ERR_RETRY;
+ }
/* Otherwise abort the command */
+ pr_err("%s: not retrying timeout\n", req->rq_disk->disk_name);
return ERR_ABORT;
default: