[PATCH] 2.5.60 make cciss driver compile

steve cameron (steve.cameron@hp.com)
Wed, 12 Feb 2003 13:10:04 +0600


(patch 1 of 11)
Makes the cciss driver compile in 2.5.60 (from tony@cantech.net.au)
-- steve

--- linux-2.5.60/drivers/block/cciss_scsi.c~2_5_60_cciss_scsi_fix 2003-02-12 10:12:31.000000000 +0600
+++ linux-2.5.60-scameron/drivers/block/cciss_scsi.c 2003-02-12 10:12:31.000000000 +0600
@@ -1379,11 +1379,11 @@ cciss_scsi_queue_command (Scsi_Cmnd *cmd

// Get the ptr to our adapter structure (hba[i]) out of cmd->host.
// We violate cmd->host privacy here. (Is there another way?)
- c = (ctlr_info_t **) &cmd->host->hostdata[0];
+ c = (ctlr_info_t **) &cmd->device->host->hostdata[0];
ctlr = (*c)->ctlr;

- rc = lookup_scsi3addr(ctlr, cmd->channel, cmd->target, cmd->lun,
- scsi3addr);
+ rc = lookup_scsi3addr(ctlr, cmd->device->channel, cmd->device->id,
+ cmd->device->lun, scsi3addr);
if (rc != 0) {
/* the scsi nexus does not match any that we presented... */
/* pretend to mid layer that we got selection timeout */

_
-
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/