diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-02-08 16:28:58 -0500 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-02-08 21:47:28 -0500 |
commit | 76698b2358de466d23f44eaa1b0c9ebe8206099a (patch) | |
tree | c70493f12ebbf6dcca93c6237ac4f110f76a5fce /net/sunrpc | |
parent | 3913c78c3ab61500ddf7c2c9617cc4f8e2c583e0 (diff) |
SUNRPC: Do not clear the source port in xs_reset_transport
Now that we can reuse bound ports after a close, we never really want to
clear the transport's source port after it has been set. Doing so really
messes up the NFSv3 DRC on the server.
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/xprtsock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c index 20f25a837e06..ea1882f97912 100644 --- a/net/sunrpc/xprtsock.c +++ b/net/sunrpc/xprtsock.c | |||
@@ -811,8 +811,6 @@ static void xs_reset_transport(struct sock_xprt *transport) | |||
811 | if (sk == NULL) | 811 | if (sk == NULL) |
812 | return; | 812 | return; |
813 | 813 | ||
814 | transport->srcport = 0; | ||
815 | |||
816 | write_lock_bh(&sk->sk_callback_lock); | 814 | write_lock_bh(&sk->sk_callback_lock); |
817 | transport->inet = NULL; | 815 | transport->inet = NULL; |
818 | transport->sock = NULL; | 816 | transport->sock = NULL; |