[SCSI] qla2xxx: Data accessors Cleanup of last merge
authorBoaz Harrosh <bharrosh@panasas.com>
Sun, 22 Jul 2007 14:28:55 +0000 (17:28 +0300)
committerJames Bottomley <jejb@mulgrave.localdomain>
Mon, 23 Jul 2007 19:27:48 +0000 (14:27 -0500)
    - Left overs from last code merges of qla2xxx

Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Acked-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/qla2xxx/qla_isr.c

index b8f226a..50539da 100644 (file)
@@ -1068,7 +1068,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, void *pkt)
                         * values.
                         */
                        if (resid &&
-                           ((unsigned)(cp->request_bufflen - resid) <
+                           ((unsigned)(scsi_bufflen(cp) - resid) <
                             cp->underflow)) {
                                DEBUG2(qla_printk(KERN_INFO, ha,
                                    "scsi(%ld:%d:%d:%d): Mid-layer underflow "
@@ -1076,7 +1076,7 @@ qla2x00_status_entry(scsi_qla_host_t *ha, void *pkt)
                                    "error status.\n", ha->host_no,
                                    cp->device->channel, cp->device->id,
                                    cp->device->lun, resid,
-                                   cp->request_bufflen));
+                                   scsi_bufflen(cp)));
 
                                cp->result = DID_ERROR << 16 | lscsi_status;
                        }