From: Trond Myklebust Date: Sun, 8 Feb 2015 21:28:58 +0000 (-0500) Subject: SUNRPC: Do not clear the source port in xs_reset_transport X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=76698b2358de466d23f44eaa1b0c9ebe8206099a;p=linux-beck.git 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 --- 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) if (sk == NULL) return; - transport->srcport = 0; - write_lock_bh(&sk->sk_callback_lock); transport->inet = NULL; transport->sock = NULL;