From: Tejun Heo <teheo@suse.de>
Date: Mon, 10 Nov 2008 06:30:47 +0000 (+0900)
Subject: block/md: fix md autodetection
X-Git-Tag: v2.6.28-rc6~51^2~4
X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=55e8e30c382d25c34f8aafcc78efec948571a941;p=linux-2.6-omap-h63xx.git

block/md: fix md autodetection

Block ext devt conversion missed md_autodetect_dev() call in
rescan_partitions() leaving md autodetect unable to see partitions.
Fix it.

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Neil Brown <neilb@suse.de>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
---

diff --git a/fs/partitions/check.c b/fs/partitions/check.c
index 63302534023..6d5b213b8a9 100644
--- a/fs/partitions/check.c
+++ b/fs/partitions/check.c
@@ -577,7 +577,7 @@ int rescan_partitions(struct gendisk *disk, struct block_device *bdev)
 		}
 #ifdef CONFIG_BLK_DEV_MD
 		if (state->parts[p].flags & ADDPART_FLAG_RAID)
-			md_autodetect_dev(bdev->bd_dev+p);
+			md_autodetect_dev(part_to_dev(part)->devt);
 #endif
 	}
 	kfree(state);