]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[PATCH] qla2xxx: Correct lun assignment during IOCB submission.
authorandrew.vasquez@qlogic.com <andrew.vasquez@qlogic.com>
Tue, 7 Feb 2006 16:45:35 +0000 (08:45 -0800)
committer <jejb@mulgrave.il.steeleye.com> <>
Tue, 7 Feb 2006 16:54:07 +0000 (10:54 -0600)
4gb products require an IOCB's FCP-LUN to be formatted in
wire-format prior to submission.

Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
drivers/scsi/qla2xxx/qla_iocb.c

index 7ec0b8d6f07b379548c5e3ba777fec2dfc78bfef..6544b6d0891d07826012baaf73ab173ae80d1ee7 100644 (file)
@@ -814,6 +814,7 @@ qla24xx_start_scsi(srb_t *sp)
        cmd_pkt->port_id[2] = sp->fcport->d_id.b.domain;
 
        int_to_scsilun(sp->cmd->device->lun, &cmd_pkt->lun);
+       host_to_fcp_swap((uint8_t *)&cmd_pkt->lun, sizeof(cmd_pkt->lun));
 
        /* Load SCSI command packet. */
        memcpy(cmd_pkt->fcp_cdb, cmd->cmnd, cmd->cmd_len);