mmc_block: fix queue cleanup
authorAdrian Hunter <adrian.hunter@nokia.com>
Fri, 8 Jan 2010 22:43:00 +0000 (14:43 -0800)
committerArve Hjønnevåg <arve@android.com>
Mon, 8 Feb 2010 23:08:39 +0000 (15:08 -0800)
commita895a6359c2dfa5a7571fd8c23811364aab503b6
treedf77c3d603063e7fc01adc4814d89a1af90b75c8
parent28967844a184d9fe5ca613684c7f5065b616194f
mmc_block: fix queue cleanup

The main bug was that 'blk_cleanup_queue()' was called while the block
device could still be in use, for example, because the card was removed
while files were still open.

In addition, to be sure that 'mmc_request()' will get called for all new
requests (so it can error them out), the queue is emptied during cleanup.
This is done after the worker thread is stopped to avoid racing with it.

Finally, it is not a device error for this to be happening, so quiet the
(sometimes very many) error messages.

Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
Cc: <linux-mmc@vger.kernel.org>
Cc: <stable@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: San Mehat <san@google.com>
drivers/mmc/card/block.c
drivers/mmc/card/queue.c