diff options
author | Krishna Gudipati <kgudipat@brocade.com> | 2012-03-13 20:40:31 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-03-28 04:57:09 -0400 |
commit | ff179e0f4a4da030df52c0632b0615e9a13b5e66 (patch) | |
tree | 802f4a9caf9b9774f75709bce1779e88b17e51ee /drivers/scsi | |
parent | f0cdfcee19b259c209a9acda45ab063fd962b66d (diff) |
[SCSI] bfa: Fix to avoid vport delete hang on request queue full scenario.
Fixed the LPS (Logical Port Services) state machine to send a
FDISC/FLOGI to the FW from the request queue wait state, when
there is space available again on the request queue.
Made changes to free the vport on LOGO/cleanup complete instead
of free'ing it from vport_delete_handler in the module unload scenario.
Signed-off-by: Krishna Gudipati <kgudipat@brocade.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/bfa/bfa_fcs_lport.c | 2 | ||||
-rw-r--r-- | drivers/scsi/bfa/bfa_svc.c | 3 | ||||
-rw-r--r-- | drivers/scsi/bfa/bfad_attr.c | 8 |
3 files changed, 9 insertions, 4 deletions
diff --git a/drivers/scsi/bfa/bfa_fcs_lport.c b/drivers/scsi/bfa/bfa_fcs_lport.c index d4f951fe753e..5d2a1307e5ce 100644 --- a/drivers/scsi/bfa/bfa_fcs_lport.c +++ b/drivers/scsi/bfa/bfa_fcs_lport.c | |||
@@ -5717,6 +5717,8 @@ bfa_fcs_vport_free(struct bfa_fcs_vport_s *vport) | |||
5717 | 5717 | ||
5718 | if (vport_drv->comp_del) | 5718 | if (vport_drv->comp_del) |
5719 | complete(vport_drv->comp_del); | 5719 | complete(vport_drv->comp_del); |
5720 | else | ||
5721 | kfree(vport_drv); | ||
5720 | 5722 | ||
5721 | bfa_lps_delete(vport->lps); | 5723 | bfa_lps_delete(vport->lps); |
5722 | } | 5724 | } |
diff --git a/drivers/scsi/bfa/bfa_svc.c b/drivers/scsi/bfa/bfa_svc.c index 3abe2bebfe1f..6583b2d94f64 100644 --- a/drivers/scsi/bfa/bfa_svc.c +++ b/drivers/scsi/bfa/bfa_svc.c | |||
@@ -1280,6 +1280,7 @@ bfa_lps_sm_loginwait(struct bfa_lps_s *lps, enum bfa_lps_event event) | |||
1280 | switch (event) { | 1280 | switch (event) { |
1281 | case BFA_LPS_SM_RESUME: | 1281 | case BFA_LPS_SM_RESUME: |
1282 | bfa_sm_set_state(lps, bfa_lps_sm_login); | 1282 | bfa_sm_set_state(lps, bfa_lps_sm_login); |
1283 | bfa_lps_send_login(lps); | ||
1283 | break; | 1284 | break; |
1284 | 1285 | ||
1285 | case BFA_LPS_SM_OFFLINE: | 1286 | case BFA_LPS_SM_OFFLINE: |
@@ -1578,7 +1579,7 @@ bfa_lps_login_rsp(struct bfa_s *bfa, struct bfi_lps_login_rsp_s *rsp) | |||
1578 | break; | 1579 | break; |
1579 | 1580 | ||
1580 | case BFA_STATUS_VPORT_MAX: | 1581 | case BFA_STATUS_VPORT_MAX: |
1581 | if (!rsp->ext_status) | 1582 | if (rsp->ext_status) |
1582 | bfa_lps_no_res(lps, rsp->ext_status); | 1583 | bfa_lps_no_res(lps, rsp->ext_status); |
1583 | break; | 1584 | break; |
1584 | 1585 | ||
diff --git a/drivers/scsi/bfa/bfad_attr.c b/drivers/scsi/bfa/bfad_attr.c index 06310b8e562d..7b1ecd2b3ffe 100644 --- a/drivers/scsi/bfa/bfad_attr.c +++ b/drivers/scsi/bfa/bfad_attr.c | |||
@@ -494,8 +494,11 @@ bfad_im_vport_delete(struct fc_vport *fc_vport) | |||
494 | unsigned long flags; | 494 | unsigned long flags; |
495 | struct completion fcomp; | 495 | struct completion fcomp; |
496 | 496 | ||
497 | if (im_port->flags & BFAD_PORT_DELETE) | 497 | if (im_port->flags & BFAD_PORT_DELETE) { |
498 | goto free_scsi_host; | 498 | bfad_scsi_host_free(bfad, im_port); |
499 | list_del(&vport->list_entry); | ||
500 | return 0; | ||
501 | } | ||
499 | 502 | ||
500 | port = im_port->port; | 503 | port = im_port->port; |
501 | 504 | ||
@@ -526,7 +529,6 @@ bfad_im_vport_delete(struct fc_vport *fc_vport) | |||
526 | 529 | ||
527 | wait_for_completion(vport->comp_del); | 530 | wait_for_completion(vport->comp_del); |
528 | 531 | ||
529 | free_scsi_host: | ||
530 | bfad_scsi_host_free(bfad, im_port); | 532 | bfad_scsi_host_free(bfad, im_port); |
531 | list_del(&vport->list_entry); | 533 | list_del(&vport->list_entry); |
532 | kfree(vport); | 534 | kfree(vport); |