mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 08:48:48 +00:00
SUNRPC: Make xs_tcp_close() do a socket shutdown rather than a sock_release
Use of socket shutdown() means that we monitor the shutdown process through the xs_tcp_state_change() callback, so it is preferable to a full close in all cases unless we're destroying the transport. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
0efeac261c
commit
caf4ccd4e8
@ -857,10 +857,7 @@ static void xs_close(struct rpc_xprt *xprt)
|
||||
|
||||
static void xs_tcp_close(struct rpc_xprt *xprt)
|
||||
{
|
||||
if (test_and_clear_bit(XPRT_CONNECTION_CLOSE, &xprt->state))
|
||||
xs_close(xprt);
|
||||
else
|
||||
xs_tcp_shutdown(xprt);
|
||||
xs_tcp_shutdown(xprt);
|
||||
}
|
||||
|
||||
static void xs_xprt_free(struct rpc_xprt *xprt)
|
||||
@ -1033,7 +1030,6 @@ static void xs_udp_data_ready(struct sock *sk)
|
||||
*/
|
||||
static void xs_tcp_force_close(struct rpc_xprt *xprt)
|
||||
{
|
||||
set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
|
||||
xprt_force_disconnect(xprt);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user