From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sowmini Varadhan Subject: [PATCH net 0/2] RDS: TCP: sychronization during connection startup Date: Sun, 1 May 2016 16:10:13 -0700 Message-ID: Cc: santosh.shilimkar@oracle.com, davem@davemloft.net To: sowmini.varadhan@oracle.com, netdev@vger.kernel.org, rds-devel@oss.oracle.com Return-path: Received: from aserp1040.oracle.com ([141.146.126.69]:16421 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752487AbcEAXKs (ORCPT ); Sun, 1 May 2016 19:10:48 -0400 Sender: netdev-owner@vger.kernel.org List-ID: This patch series ensures that the passive (accept) side of the TCP connection used for RDS-TCP is correctly synchronized with any concurrent active (connect) attempts for a given pair of peers. Patch 1 in the series makes sure that the t_sock in struct rds_tcp_connection is only reset after any threads in rds_tcp_xmit have completed (otherwise a null-ptr deref may be encountered). Patch 2 synchronizes rds_tcp_accept_one() with the rds_tcp*connect() path. Sowmini Varadhan (2): RDS:TCP: Synchronize rds_tcp_accept_one with rds_send_xmit when resetting t_sock RDS: TCP: Synchrnozize accept() and connect() paths on t_conn_lock. net/rds/tcp.c | 3 +- net/rds/tcp.h | 4 +++ net/rds/tcp_connect.c | 8 +++++++ net/rds/tcp_listen.c | 54 ++++++++++++++++++++++++++++++++---------------- 4 files changed, 50 insertions(+), 19 deletions(-)