[PATCH] 2.5.41, cciss, fix cciss_open (2 of 5)

From: Stephen Cameron (steve.cameron@hp.com)
Date: Wed Oct 09 2002 - 09:33:49 EST


This patch fixes a problem with detecting partitions on any but
the first disk. Detecting the partitions requires opening the device,
but the i_size test prevented this, except for the special case of c0d0.
The new test corrects this, allow partition tables to be read for all the
disks. Applies to 2.5.40.

diff -urN linux-2.5.40-0/drivers/block/cciss.c linux-2.5.40-cciss-fix-vol/drivers/block/cciss.c
--- linux-2.5.40-0/drivers/block/cciss.c Thu Oct 3 14:25:16 2002
+++ linux-2.5.40-cciss-fix-vol/drivers/block/cciss.c Mon Oct 7 09:09:50 2002
@@ -352,7 +352,7 @@
          * but I'm already using way to many device nodes to claim another one
          * for "raw controller".
          */
- if (inode->i_bdev->bd_inode->i_size == 0) {
+ if (hba[ctlr]->drv[dsk].nr_blocks == 0) {
                 if (minor(inode->i_rdev) != 0)
                         return -ENXIO;
                 if (!capable(CAP_SYS_ADMIN))
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Tue Oct 15 2002 - 22:00:31 EST