]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mmc: core: Fix hangs related to insert/remove of cards
authorUlf Hansson <ulf.hansson@stericsson.com>
Wed, 21 Sep 2011 18:08:13 +0000 (14:08 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 11 Nov 2011 17:35:22 +0000 (09:35 -0800)
commit311c3c10f6429f4405be6a0e98cb27c6995ca8b9
tree11868cba8c590854b91c28ca99a2c2149989b519
parentc86935898f7af4bbafa14c0f402a79925c53a33f
mmc: core: Fix hangs related to insert/remove of cards

commit 7f7e4129c23f0419257184dff6fec89d2d5a8964 upstream.

During a rescan operation mmc_attach(sd|mmc|sdio) functions are
called. The error handling in these function can trigger a detach
of the bus, which also meant a power off. This is not notified by
the rescan operation which then continues to the next attach function.

If a power off has been done, the framework must never send any
new commands to the host driver, without first doing a new power up.
This will most likely trigger any host driver to hang.

Moving power off out of detach and instead handle power off
separately when it is actually needed, solves the issue.

Signed-off-by: Ulf Hansson <ulf.hansson@stericsson.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Chris Ball <cjb@laptop.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/mmc/core/core.c
drivers/mmc/core/core.h
drivers/mmc/core/mmc.c
drivers/mmc/core/sd.c
drivers/mmc/core/sdio.c