Specific to the Broadcom 10g chipset, the CFC delete operation must be
coupled with the cm_abort/close with does the SRC delete/terminate offload
operation prior.

Signed-off-by: Eddie Wai <eddie....@broadcom.com>
Reviewed-by: Michael Chan <mc...@broadcom.com>
Acked-by: Benjamin Li <be...@broadcom.com>
---
 drivers/scsi/bnx2i/bnx2i_iscsi.c |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/scsi/bnx2i/bnx2i_iscsi.c b/drivers/scsi/bnx2i/bnx2i_iscsi.c
index 02743d0..40f3758 100644
--- a/drivers/scsi/bnx2i/bnx2i_iscsi.c
+++ b/drivers/scsi/bnx2i/bnx2i_iscsi.c
@@ -1996,11 +1996,13 @@ int bnx2i_hw_ep_disconnect(struct bnx2i_endpoint 
*bnx2i_ep)
        else
                close_ret = cnic->cm_abort(bnx2i_ep->cm_sk);
 
+       /* No longer allow CFC delete if cm_close/abort fails the request */
        if (close_ret)
-               bnx2i_ep->state = EP_STATE_DISCONN_COMPL;
-
-       /* wait for option-2 conn teardown */
-       wait_event_interruptible(bnx2i_ep->ofld_wait,
+               printk(KERN_ALERT "bnx2i: %s close/abort(%d) returned %d\n",
+                       bnx2i_ep->hba->netdev->name, close, close_ret);
+       else
+               /* wait for option-2 conn teardown */
+               wait_event_interruptible(bnx2i_ep->ofld_wait,
                                 bnx2i_ep->state != EP_STATE_DISCONN_START);
 
        if (signal_pending(current))
-- 
1.7.0.5


-- 
You received this message because you are subscribed to the Google Groups 
"open-iscsi" group.
To post to this group, send email to open-is...@googlegroups.com.
To unsubscribe from this group, send email to 
open-iscsi+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/open-iscsi?hl=en.

Reply via email to