diff options
author | Varun Prakash <varun@chelsio.com> | 2017-05-27 16:52:51 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2017-06-02 20:59:19 +0200 |
commit | e0f8e8cf3bf9305f36155a5ac6e16b3b910e6cec (patch) | |
tree | 91a7bc5fa15c4065dffea3bcb162cbaa37ef8a65 /drivers/scsi/cxgbi/libcxgbi.h | |
parent | scsi: scsi_debug: Avoid PI being disabled when TPGS is enabled (diff) | |
download | linux-e0f8e8cf3bf9305f36155a5ac6e16b3b910e6cec.tar.xz linux-e0f8e8cf3bf9305f36155a5ac6e16b3b910e6cec.zip |
scsi: cxgb4i: libcxgbi: in error case RST tcp conn
If logout response is not received and ->ep_disconnect() is called then
close tcp conn by RST instead of FIN to cleanup conn resources
immediately.
Also move ->csk_push_tx_frames() above 'done:' to avoid calling
->csk_push_tx_frames() in error cases.
Signed-off-by: Varun Prakash <varun@chelsio.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/cxgbi/libcxgbi.h')
-rw-r--r-- | drivers/scsi/cxgbi/libcxgbi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/cxgbi/libcxgbi.h b/drivers/scsi/cxgbi/libcxgbi.h index 239462a75760..37f07aaab1e4 100644 --- a/drivers/scsi/cxgbi/libcxgbi.h +++ b/drivers/scsi/cxgbi/libcxgbi.h @@ -187,6 +187,7 @@ enum cxgbi_sock_flags { CTPF_HAS_ATID, /* reserved atid */ CTPF_HAS_TID, /* reserved hw tid */ CTPF_OFFLOAD_DOWN, /* offload function off */ + CTPF_LOGOUT_RSP_RCVD, /* received logout response */ }; struct cxgbi_skb_rx_cb { |