diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-03-23 15:25:03 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-03-26 11:49:48 -0400 |
commit | 92769108f5382a0bdb4c35eb80c183fb7797cfae (patch) | |
tree | 8a3b8d9a2e7e23536fbcd374592341e968d2a1af /net | |
parent | e9541ce8efc22c233a045f091c2b969923709038 (diff) |
sunrpc: skip portmap calls on sessions backchannel
There's obviously no point to doing portmap calls over the sessions
backchannel.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/xprtsock.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c index 92bc5181dbeb..890b03f8d877 100644 --- a/net/sunrpc/xprtsock.c +++ b/net/sunrpc/xprtsock.c | |||
@@ -2475,6 +2475,7 @@ static struct rpc_xprt_ops xs_tcp_ops = { | |||
2475 | static struct rpc_xprt_ops bc_tcp_ops = { | 2475 | static struct rpc_xprt_ops bc_tcp_ops = { |
2476 | .reserve_xprt = xprt_reserve_xprt, | 2476 | .reserve_xprt = xprt_reserve_xprt, |
2477 | .release_xprt = xprt_release_xprt, | 2477 | .release_xprt = xprt_release_xprt, |
2478 | .rpcbind = xs_local_rpcbind, | ||
2478 | .buf_alloc = bc_malloc, | 2479 | .buf_alloc = bc_malloc, |
2479 | .buf_free = bc_free, | 2480 | .buf_free = bc_free, |
2480 | .send_request = bc_send_request, | 2481 | .send_request = bc_send_request, |