]> git.karo-electronics.de Git - linux-beck.git/commitdiff
[SCSI] lpfc 8.3.31: Fix bug with driver using the wrong xritag when sending an els...
authorJames Smart <james.smart@emulex.com>
Thu, 10 May 2012 01:19:34 +0000 (21:19 -0400)
committerJames Bottomley <JBottomley@Parallels.com>
Thu, 17 May 2012 10:16:23 +0000 (11:16 +0100)
Signed-off-by: Alex Iannicelli <alex.iannicelli@emulex.com>
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/lpfc/lpfc_bsg.c
drivers/scsi/lpfc/lpfc_sli.c

index 7d5641db5ee44f2c93aaaed42b8dff2a10e6b45f..253d9a8573467777fb1f54058311e569aca3a188 100644 (file)
@@ -599,6 +599,7 @@ lpfc_bsg_rport_els(struct fc_bsg_job *job)
 
        cmdiocbq->iocb_cmpl = lpfc_bsg_rport_els_cmp;
        cmdiocbq->context1 = dd_data;
+       cmdiocbq->context_un.ndlp = ndlp;
        cmdiocbq->context2 = rspiocbq;
        dd_data->type = TYPE_IOCB;
        dd_data->context_un.iocb.cmdiocbq = cmdiocbq;
index 70e4bc3a1a2d3920e385bf7bde503030cb3fe156..8328994103068623eedcedcfcb307aa31621a1c6 100644 (file)
@@ -877,6 +877,9 @@ __lpfc_sli_get_sglq(struct lpfc_hba *phba, struct lpfc_iocbq *piocbq)
        } else  if ((piocbq->iocb.ulpCommand == CMD_GEN_REQUEST64_CR) &&
                        !(piocbq->iocb_flag & LPFC_IO_LIBDFC))
                ndlp = piocbq->context_un.ndlp;
+       else  if ((piocbq->iocb.ulpCommand == CMD_ELS_REQUEST64_CR) &&
+                       (piocbq->iocb_flag & LPFC_IO_LIBDFC))
+               ndlp = piocbq->context_un.ndlp;
        else
                ndlp = piocbq->context1;
 
@@ -7868,7 +7871,10 @@ lpfc_sli4_iocb2wqe(struct lpfc_hba *phba, struct lpfc_iocbq *iocbq,
 
        switch (iocbq->iocb.ulpCommand) {
        case CMD_ELS_REQUEST64_CR:
-               ndlp = (struct lpfc_nodelist *)iocbq->context1;
+               if (iocbq->iocb_flag & LPFC_IO_LIBDFC)
+                       ndlp = iocbq->context_un.ndlp;
+               else
+                       ndlp = (struct lpfc_nodelist *)iocbq->context1;
                if (!iocbq->iocb.ulpLe) {
                        lpfc_printf_log(phba, KERN_ERR, LOG_SLI,
                                "2007 Only Limited Edition cmd Format"