diff options
author | Steve Wise <swise@opengridcomputing.com> | 2007-03-06 14:44:01 -0600 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2007-03-06 12:50:49 -0800 |
commit | adf376b3708f6111e87916fae083633c1be2f88f (patch) | |
tree | b1b22d0784cd4070101cb320f02b7ae9a52bdaf9 /drivers | |
parent | 2df50da00e679439aca08a59cd0b4db484159540 (diff) |
RDMA/cxgb3: Stop EP timer when MPA exchange is aborted by peer
Stop the endpoint timer when the MPA exchange is aborted by the peer.
Signed-off-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/cxgb3/iwch_cm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/cxgb3/iwch_cm.c b/drivers/infiniband/hw/cxgb3/iwch_cm.c index 869761fed59..3cf79ce64bd 100644 --- a/drivers/infiniband/hw/cxgb3/iwch_cm.c +++ b/drivers/infiniband/hw/cxgb3/iwch_cm.c @@ -1487,8 +1487,10 @@ static int peer_abort(struct t3cdev *tdev, struct sk_buff *skb, void *ctx) case CONNECTING: break; case MPA_REQ_WAIT: + stop_ep_timer(ep); break; case MPA_REQ_SENT: + stop_ep_timer(ep); connect_reply_upcall(ep, -ECONNRESET); break; case MPA_REP_SENT: |