SUNRPC: Cleanup to remove xs_tcp_close()
xs_tcp_close() is now just a call to xs_tcp_shutdown(), so remove it, and replace the entry in xs_tcp_ops. Suggested-by: Anna Schumaker <anna.schumaker@netapp.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
This commit is contained in:
parent
4c21462acc
commit
c627d31ba0
1 changed files with 1 additions and 6 deletions
|
@ -863,11 +863,6 @@ static void xs_close(struct rpc_xprt *xprt)
|
||||||
xprt_disconnect_done(xprt);
|
xprt_disconnect_done(xprt);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xs_tcp_close(struct rpc_xprt *xprt)
|
|
||||||
{
|
|
||||||
xs_tcp_shutdown(xprt);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void xs_xprt_free(struct rpc_xprt *xprt)
|
static void xs_xprt_free(struct rpc_xprt *xprt)
|
||||||
{
|
{
|
||||||
xs_free_peer_addresses(xprt);
|
xs_free_peer_addresses(xprt);
|
||||||
|
@ -2500,7 +2495,7 @@ static struct rpc_xprt_ops xs_tcp_ops = {
|
||||||
.buf_free = rpc_free,
|
.buf_free = rpc_free,
|
||||||
.send_request = xs_tcp_send_request,
|
.send_request = xs_tcp_send_request,
|
||||||
.set_retrans_timeout = xprt_set_retrans_timeout_def,
|
.set_retrans_timeout = xprt_set_retrans_timeout_def,
|
||||||
.close = xs_tcp_close,
|
.close = xs_tcp_shutdown,
|
||||||
.destroy = xs_destroy,
|
.destroy = xs_destroy,
|
||||||
.print_stats = xs_tcp_print_stats,
|
.print_stats = xs_tcp_print_stats,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue