From: James Smart Date: Wed, 31 Oct 2012 18:45:21 +0000 (-0400) Subject: [SCSI] lpfc 8.3.36: Correct mask error X-Git-Tag: v3.8-rc1~116^2~42 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=edb22f06e08ac5b25ae2d9ad10ae31ac58ca0de4;p=~emulex%2Finfiniband.git [SCSI] lpfc 8.3.36: Correct mask error Reported via: https://bugzilla.kernel.org/show_bug.cgi?id=48891 Signed-off-by: James Smart Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/lpfc/lpfc_ct.c b/drivers/scsi/lpfc/lpfc_ct.c index 7ffabb7e3af..65f9fb6862e 100644 --- a/drivers/scsi/lpfc/lpfc_ct.c +++ b/drivers/scsi/lpfc/lpfc_ct.c @@ -634,7 +634,7 @@ lpfc_cmpl_ct_cmd_gid_ft(struct lpfc_hba *phba, struct lpfc_iocbq *cmdiocb, /* Check for retry */ if (vport->fc_ns_retry < LPFC_MAX_NS_RETRY) { if (irsp->ulpStatus != IOSTAT_LOCAL_REJECT || - (irsp->un.ulpWord[4] && IOERR_PARAM_MASK) != + (irsp->un.ulpWord[4] & IOERR_PARAM_MASK) != IOERR_NO_RESOURCES) vport->fc_ns_retry++;