The patch titled cciss: change cciss_open for consistency has been added to the -mm tree. Its filename is cciss-change-cciss_open-for-consistency.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: change cciss_open for consistency From: Mike Miller <mike.miller@xxxxxx> Change our open to test for drv->heads like we do in other places in the driver. Mostly for consistency. Signed-off-by: Mike Miller <mike.miller@xxxxxx> Acked-by: Jens Axboe <jens.axboe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/block/cciss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/block/cciss.c~cciss-change-cciss_open-for-consistency drivers/block/cciss.c --- a/drivers/block/cciss.c~cciss-change-cciss_open-for-consistency +++ a/drivers/block/cciss.c @@ -494,7 +494,7 @@ static int cciss_open(struct inode *inod * but I'm already using way to many device nodes to claim another one * for "raw controller". */ - if (drv->nr_blocks == 0) { + if (drv->heads == 0) { if (iminor(inode) != 0) { /* not node 0? */ /* if not node 0 make sure it is a partition = 0 */ if (iminor(inode) & 0x0f) { _ Patches currently in -mm which might be from mike.miller@xxxxxx are cciss-version-change.patch cciss-reference-driver-support.patch cciss-increase-number-of-commands-on-controller.patch cciss-fix-pci-ssid-for-the-e500-controller.patch cciss-disable-dma-prefetch-on-p600.patch cciss-set-sector_size-to-2048-for-performance.patch cciss-set-sector_size-to-2048-for-performance-tidy.patch cciss-change-cciss_open-for-consistency.patch cciss-remove-unused-revalidate_allvol-function.patch cciss-add-support-for-1024-logical-volumes.patch cciss-cleanup-cciss_interrupt-mode.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