The patch titled cciss: set default raid level when reading geometry fails has been added to the -mm tree. Its filename is cciss-set-default-raid-level-when-reading-geometry-fails.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cciss: set default raid level when reading geometry fails From: Mike Miller <mike.miller@xxxxxx> Set a default raid level on a volume that either does not support reading the geometry or reports an invalid geometry for whatever reason. We were always setting some values for heads and sectors but never set a raid level. This caused lots of problems on some buggy firmware. Please consider this for inclusion. Signed-off-by: Mike Miller <mike.miller@xxxxxx> Cc: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 1 + 1 files changed, 1 insertion(+) diff -puN drivers/block/cciss.c~cciss-set-default-raid-level-when-reading-geometry-fails drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-set-default-raid-level-when-reading-geometry-fails +++ a/drivers/block/cciss.c @@ -1907,6 +1907,7 @@ static void cciss_geometry_inquiry(int c "does not support reading geometry\n"); drv->heads = 255; drv->sectors = 32; // Sectors per track + drv->raid_level = RAID_UNKNOWN; } else { drv->heads = inq_buff->data_byte[6]; drv->sectors = inq_buff->data_byte[7]; _ Patches currently in -mm which might be from mike.miller@xxxxxx are cciss-set-default-raid-level-when-reading-geometry-fails.patch cciss-fix-xfer_read-xfer_write-in-do_cciss_request.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html