public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SUNRPC: Fix possible autodisconnect during connect due to stale last_used
@ 2019-06-26 19:50 Dave Wysochanski
  2019-06-26 20:11 ` Trond Myklebust
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Wysochanski @ 2019-06-26 19:50 UTC (permalink / raw)
  To: trondmy; +Cc: linux-nfs

When a connection is successful ensure last_used is updated before calling
xprt_schedule_autodisconnect inside xprt_unlock_connect.  This avoids a
possible xprt_autoclose firing immediately after connect sequence due to
an old value of last_used given to mod_timer in xprt_schedule_autodisconnect.

Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>
---
 net/sunrpc/xprt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c
index f6c82b1..fceaede 100644
--- a/net/sunrpc/xprt.c
+++ b/net/sunrpc/xprt.c
@@ -800,6 +800,7 @@ void xprt_unlock_connect(struct rpc_xprt *xprt, void *cookie)
 		goto out;
 	xprt->snd_task =NULL;
 	xprt->ops->release_xprt(xprt, NULL);
+	xprt->last_used = jiffies;
 	xprt_schedule_autodisconnect(xprt);
 out:
 	spin_unlock_bh(&xprt->transport_lock);
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-06-26 20:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-26 19:50 [PATCH] SUNRPC: Fix possible autodisconnect during connect due to stale last_used Dave Wysochanski
2019-06-26 20:11 ` Trond Myklebust
2019-06-26 20:14   ` Dave Wysochanski
2019-06-26 20:30   ` [PATCH] SUNRPC: Fix possible autodisconnect during connect due to old last_used Dave Wysochanski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox