The patch titled mmc_block: fix probe error cleanup bug has been removed from the -mm tree. Its filename was mmc_block-fix-probe-error-cleanup-bug.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mmc_block: fix probe error cleanup bug From: Jarkko Lavinen <jarkko.lavinen@xxxxxxxxx> If mmc_blk_set_blksize() fails mmc_blk_probe() the request queue and its thread have been set up and they need to be shut down properly before putting the disk. Signed-off-by: Jarkko Lavinen <jarkko.lavinen@xxxxxxxxx> Signed-off-by: Adrian Hunter <adrian.hunter@xxxxxxxxx> Cc: <linux-mmc@xxxxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mmc/card/block.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/mmc/card/block.c~mmc_block-fix-probe-error-cleanup-bug drivers/mmc/card/block.c --- a/drivers/mmc/card/block.c~mmc_block-fix-probe-error-cleanup-bug +++ a/drivers/mmc/card/block.c @@ -618,6 +618,7 @@ static int mmc_blk_probe(struct mmc_card return 0; out: + mmc_cleanup_queue(&md->queue); mmc_blk_put(md); return err; _ Patches currently in -mm which might be from jarkko.lavinen@xxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html