mmc: core: Fix some driver hangs when dealing with broken devices
authorTrey Ramsay <tramsay@linux.vnet.ibm.com>
Fri, 16 Nov 2012 15:31:41 +0000 (09:31 -0600)
committerChris Ball <cjb@laptop.org>
Thu, 6 Dec 2012 18:54:42 +0000 (13:54 -0500)
commit8fee476b219d1869762d9ef5c189a0c85e919a4d
tree460bb7932c106fae3b84646117b82e79c2618110
parente95baf132f9709b86721a562210403473ef72249
mmc: core: Fix some driver hangs when dealing with broken devices

There are infinite loops in the mmc code that can be caused by bad
hardware.  The code will loop forever if the device never comes back
from program mode, R1_STATE_PRG, and it is not ready for data,
R1_READY_FOR_DATA.

A long timeout is added to prevent the code from looping forever.
The timeout will occur if the device never comes back from program
state or the device never becomes ready for data.

It's not clear whether the timeout will do more than log a pr_err()
and then start a fresh hang all over again.  We may need to extend
this patch later to perform some kind of reset of the device (is
that possible?) or rejection of new I/O to the device.

Signed-off-by: Trey Ramsay <tramsay@linux.vnet.ibm.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
drivers/mmc/card/block.c
drivers/mmc/core/core.c
drivers/mmc/core/mmc_ops.c