From c2d4ae54ba30a7dd213d287d819409dc7c712f15 Mon Sep 17 00:00:00 2001 From: Bang Nguyen Date: Wed, 14 Aug 2013 19:10:00 -0700 Subject: [PATCH] RDS: RDS reconnect stalls After successfully negiotiating the version at lower protocol, RDS incorrectly set the proposed version to the higher protocol, causing the subsequent reconnect to stall. The fix was not to change the proposed version after the initial connection setup. Orabug: 1731355 Signed-off-by: Richard Frank (cherry picked from commit 1a14dda0d3d3195306f3a141227eb003e895fb58) --- net/rds/ib_cm.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c index ccb5d7f1791c..2982161177f4 100644 --- a/net/rds/ib_cm.c +++ b/net/rds/ib_cm.c @@ -158,8 +158,6 @@ void rds_ib_cm_connect_complete(struct rds_connection *conn, struct rdma_cm_even RDS_PROTOCOL_MINOR(conn->c_version)); rds_conn_destroy(conn); return; - } else { - conn->c_proposed_version = RDS_PROTOCOL_VERSION; } } -- 2.50.1