[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20061102150414.GF16430@beardog.cca.cpqcorp.net>
Date: Thu, 2 Nov 2006 09:04:14 -0600
From: "Mike Miller (OS Dev)" <mikem@...rdog.cca.cpqcorp.net>
To: akpm@...l.org, jens.axboe@...cle.com
Cc: linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org
Subject: [PATCH 7/8] cciss: change cciss_open for consistency
PATCH 7/11
This patch changes our open to test for drv->heads like we do in other
places in the driver. Mostly for consistency.
Please consider this for inclusion.
Thanks,
mikem
Signed-off-by: Mike Miller <mike.miller@...com>
cciss.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
------------------------------------------------------------------------------------------
diff -urNp linux-2.6-p00006/drivers/block/cciss.c linux-2.6/drivers/block/cciss.c
--- linux-2.6-p00006/drivers/block/cciss.c 2006-10-31 15:48:46.000000000 -0600
+++ linux-2.6/drivers/block/cciss.c 2006-10-31 15:57:39.000000000 -0600
@@ -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) {
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists