forked from Minki/linux
RDS: IB: handle the RDMA CM time wait event
Drop the RDS connection on RDMA_CM_EVENT_TIMEWAIT_EXIT so that it can reconnect and resume. While testing fastreg, this error happened in couple of tests but was getting un-noticed. Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d4de76da5c
commit
37ea401e9c
@ -117,6 +117,14 @@ int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id,
|
|||||||
rds_conn_drop(conn);
|
rds_conn_drop(conn);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case RDMA_CM_EVENT_TIMEWAIT_EXIT:
|
||||||
|
if (conn) {
|
||||||
|
pr_info("RDS: RDMA_CM_EVENT_TIMEWAIT_EXIT event: dropping connection %pI4->%pI4\n",
|
||||||
|
&conn->c_laddr, &conn->c_faddr);
|
||||||
|
rds_conn_drop(conn);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
/* things like device disconnect? */
|
/* things like device disconnect? */
|
||||||
printk(KERN_ERR "RDS: unknown event %u (%s)!\n",
|
printk(KERN_ERR "RDS: unknown event %u (%s)!\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user