mmc_block: add dev_t initialization check
authorAnna Lemehova <[email protected]>
Fri, 8 Jan 2010 22:42:58 +0000 (14:42 -0800)
committerLinus Torvalds <[email protected]>
Mon, 11 Jan 2010 17:34:06 +0000 (09:34 -0800)
When a card is removed before mmc_blk_probe() has called add_disk(), then
the minor field is uninitialized and has value 0.  This caused
mmc_blk_put() to always release devidx 0 even if 0 was still in use.  Then
the next mmc_blk_probe() used the first free idx of 0, which oopses in
sysfs, since it is used by another card.

Signed-off-by: Anna Lemehova <[email protected]>
Signed-off-by: Adrian Hunter <[email protected]>
Cc: <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/mmc/card/block.c

index 85f0e8cd875bac4f153788ff0012fc0b27e05dd5..5988573bb843b64b7fd828dcc1b8e2b50a98b9f4 100644 (file)
@@ -85,7 +85,12 @@ static void mmc_blk_put(struct mmc_blk_data *md)
        mutex_lock(&open_lock);
        md->usage--;
        if (md->usage == 0) {
+               int devmaj = MAJOR(disk_devt(md->disk));
                int devidx = MINOR(disk_devt(md->disk)) >> MMC_SHIFT;
+
+               if (!devmaj)
+                       devidx = md->disk->first_minor >> MMC_SHIFT;
+
                __clear_bit(devidx, dev_use);
 
                put_disk(md->disk);