aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc/lpfc_init.c
diff options
context:
space:
mode:
authorJames Smart <James.Smart@Emulex.Com>2009-11-18 15:39:16 -0500
committerJames Bottomley <James.Bottomley@suse.de>2009-12-04 13:01:50 -0500
commitc868595d5686e97183bc1ad85502835d81d7a457 (patch)
treec6e1838b96f048147e7b9954a195aee6bfe5b0c0 /drivers/scsi/lpfc/lpfc_init.c
parent832151f45806613f203c4c0308c1566d882b971f (diff)
[SCSI] lpfc 8.3.6 : FCoE Protocol Fixes
FCoE Protocol fixes. - Fixed FIP frame designation for ELS commands. - Fix CVL received on Port 1 not processed by driver. - Fix Zeroed frame on wire after FLOGI - Fix vport keep-alive does not contain the correct WWN. Signed-off-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/lpfc/lpfc_init.c')
-rw-r--r--drivers/scsi/lpfc/lpfc_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
index d7385d258f78..02268a1eec69 100644
--- a/drivers/scsi/lpfc/lpfc_init.c
+++ b/drivers/scsi/lpfc/lpfc_init.c
@@ -2229,7 +2229,7 @@ lpfc_offline_prep(struct lpfc_hba * phba)
2229 2229
2230 if (vports[i]->load_flag & FC_UNLOADING) 2230 if (vports[i]->load_flag & FC_UNLOADING)
2231 continue; 2231 continue;
2232 vports[i]->vfi_state &= ~LPFC_VFI_REGISTERED; 2232 vports[i]->vpi_state &= ~LPFC_VPI_REGISTERED;
2233 shost = lpfc_shost_from_vport(vports[i]); 2233 shost = lpfc_shost_from_vport(vports[i]);
2234 list_for_each_entry_safe(ndlp, next_ndlp, 2234 list_for_each_entry_safe(ndlp, next_ndlp,
2235 &vports[i]->fc_nodes, 2235 &vports[i]->fc_nodes,
@@ -3047,7 +3047,7 @@ lpfc_sli4_async_fcoe_evt(struct lpfc_hba *phba,
3047 "2718 Clear Virtual Link Received for VPI 0x%x" 3047 "2718 Clear Virtual Link Received for VPI 0x%x"
3048 " tag 0x%x\n", acqe_fcoe->index, acqe_fcoe->event_tag); 3048 " tag 0x%x\n", acqe_fcoe->index, acqe_fcoe->event_tag);
3049 vport = lpfc_find_vport_by_vpid(phba, 3049 vport = lpfc_find_vport_by_vpid(phba,
3050 acqe_fcoe->index /*- phba->vpi_base*/); 3050 acqe_fcoe->index - phba->vpi_base);
3051 if (!vport) 3051 if (!vport)
3052 break; 3052 break;
3053 ndlp = lpfc_findnode_did(vport, Fabric_DID); 3053 ndlp = lpfc_findnode_did(vport, Fabric_DID);