Skip to content

Commit 69b92b5

Browse files
sowminivdavem330
authored andcommitted
rds: tcp: send handshake ping-probe from passive endpoint
The RDS handshake ping probe added by commit 5916e2c ("RDS: TCP: Enable multipath RDS for TCP") is sent from rds_sendmsg() before the first data packet is sent to a peer. If the conversation is not bidirectional (i.e., one side is always passive and never invokes rds_sendmsg()) and the passive side restarts its rds_tcp module, a new HS ping probe needs to be sent, so that the number of paths can be re-established. This patch achieves that by sending a HS ping probe from rds_tcp_accept_one() when c_npaths is 0 (i.e., we have not done a handshake probe with this peer yet). Signed-off-by: Sowmini Varadhan <[email protected]> Tested-by: Jenny Xu <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6d65923 commit 69b92b5

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

net/rds/rds.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -827,6 +827,7 @@ void rds_send_drop_acked(struct rds_connection *conn, u64 ack,
827827
is_acked_func is_acked);
828828
void rds_send_path_drop_acked(struct rds_conn_path *cp, u64 ack,
829829
is_acked_func is_acked);
830+
void rds_send_ping(struct rds_connection *conn, int cp_index);
830831
int rds_send_pong(struct rds_conn_path *cp, __be16 dport);
831832

832833
/* rdma.c */

net/rds/recv.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,7 @@ static void rds_recv_hs_exthdrs(struct rds_header *hdr,
227227
}
228228
/* if RDS_EXTHDR_NPATHS was not found, default to a single-path */
229229
conn->c_npaths = max_t(int, conn->c_npaths, 1);
230+
conn->c_ping_triggered = 0;
230231
rds_conn_peer_gen_update(conn, new_peer_gen_num);
231232
}
232233

@@ -244,8 +245,7 @@ static void rds_recv_hs_exthdrs(struct rds_header *hdr,
244245
* called after reception of the probe-pong on all mprds_paths.
245246
* Otherwise (sender of probe-ping is not the smaller ip addr): just call
246247
* rds_conn_path_connect_if_down on the hashed path. (see rule 4)
247-
* 4. when cp_index > 0, rds_connect_worker must only trigger
248-
* a connection if laddr < faddr.
248+
* 4. rds_connect_worker must only trigger a connection if laddr < faddr.
249249
* 5. sender may end up queuing the packet on the cp. will get sent out later.
250250
* when connection is completed.
251251
*/
@@ -256,7 +256,7 @@ static void rds_start_mprds(struct rds_connection *conn)
256256

257257
if (conn->c_npaths > 1 &&
258258
IS_CANONICAL(conn->c_laddr, conn->c_faddr)) {
259-
for (i = 1; i < conn->c_npaths; i++) {
259+
for (i = 0; i < conn->c_npaths; i++) {
260260
cp = &conn->c_path[i];
261261
rds_conn_path_connect_if_down(cp);
262262
}

net/rds/send.c

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -971,8 +971,6 @@ static int rds_cmsg_send(struct rds_sock *rs, struct rds_message *rm,
971971
return ret;
972972
}
973973

974-
static void rds_send_ping(struct rds_connection *conn);
975-
976974
static int rds_send_mprds_hash(struct rds_sock *rs, struct rds_connection *conn)
977975
{
978976
int hash;
@@ -982,7 +980,7 @@ static int rds_send_mprds_hash(struct rds_sock *rs, struct rds_connection *conn)
982980
else
983981
hash = RDS_MPATH_HASH(rs, conn->c_npaths);
984982
if (conn->c_npaths == 0 && hash != 0) {
985-
rds_send_ping(conn);
983+
rds_send_ping(conn, 0);
986984

987985
if (conn->c_npaths == 0) {
988986
wait_event_interruptible(conn->c_hs_waitq,
@@ -1282,11 +1280,11 @@ rds_send_pong(struct rds_conn_path *cp, __be16 dport)
12821280
return rds_send_probe(cp, 0, dport, 0);
12831281
}
12841282

1285-
static void
1286-
rds_send_ping(struct rds_connection *conn)
1283+
void
1284+
rds_send_ping(struct rds_connection *conn, int cp_index)
12871285
{
12881286
unsigned long flags;
1289-
struct rds_conn_path *cp = &conn->c_path[0];
1287+
struct rds_conn_path *cp = &conn->c_path[cp_index];
12901288

12911289
spin_lock_irqsave(&cp->cp_lock, flags);
12921290
if (conn->c_ping_triggered) {
@@ -1295,6 +1293,6 @@ rds_send_ping(struct rds_connection *conn)
12951293
}
12961294
conn->c_ping_triggered = 1;
12971295
spin_unlock_irqrestore(&cp->cp_lock, flags);
1298-
rds_send_probe(&conn->c_path[0], cpu_to_be16(RDS_FLAG_PROBE_PORT),
1299-
0, 0);
1296+
rds_send_probe(cp, cpu_to_be16(RDS_FLAG_PROBE_PORT), 0, 0);
13001297
}
1298+
EXPORT_SYMBOL_GPL(rds_send_ping);

net/rds/tcp_listen.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,8 @@ int rds_tcp_accept_one(struct socket *sock)
192192
}
193193
new_sock = NULL;
194194
ret = 0;
195+
if (conn->c_npaths == 0)
196+
rds_send_ping(cp->cp_conn, cp->cp_index);
195197
goto out;
196198
rst_nsk:
197199
/* reset the newly returned accept sock and bail.

0 commit comments

Comments
 (0)