diff options
author | James Smart <james.smart@emulex.com> | 2012-10-31 14:45:21 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-11-27 08:59:45 +0400 |
commit | edb22f06e08ac5b25ae2d9ad10ae31ac58ca0de4 (patch) | |
tree | bcf07fc54cfbb541ea654543260f07d3629cc869 | |
parent | 8c1312e1b9dae446af17d5a5f11c325cbb4c9103 (diff) | |
download | linux-edb22f06e08ac5b25ae2d9ad10ae31ac58ca0de4.tar.gz linux-edb22f06e08ac5b25ae2d9ad10ae31ac58ca0de4.tar.bz2 linux-edb22f06e08ac5b25ae2d9ad10ae31ac58ca0de4.zip |
[SCSI] lpfc 8.3.36: Correct mask error
Reported via: https://bugzilla.kernel.org/show_bug.cgi?id=48891
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_ct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_ct.c b/drivers/scsi/lpfc/lpfc_ct.c index 7ffabb7e3afa..65f9fb6862e6 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++; |