Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0efeac26 authored by Trond Myklebust's avatar Trond Myklebust
Browse files

SUNRPC: Ensure xs_tcp_shutdown() requests a full close of the connection



The previous behaviour left the connection half-open in order to try
to scrape the last replies from the socket. Now that we have more reliable
reconnection, change the behaviour to close down the socket faster.

Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 505936f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -627,7 +627,7 @@ static int xs_udp_send_request(struct rpc_task *task)
 * @xprt: transport
 *
 * Initiates a graceful shutdown of the TCP socket by calling the
 * equivalent of shutdown(SHUT_WR);
 * equivalent of shutdown(SHUT_RDWR);
 */
static void xs_tcp_shutdown(struct rpc_xprt *xprt)
{
@@ -635,7 +635,7 @@ static void xs_tcp_shutdown(struct rpc_xprt *xprt)
	struct socket *sock = transport->sock;

	if (sock != NULL) {
		kernel_sock_shutdown(sock, SHUT_WR);
		kernel_sock_shutdown(sock, SHUT_RDWR);
		trace_rpc_socket_shutdown(xprt, sock);
	}
}