Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] nfsd: don't fail OP_SETCLIENTID when there are lots of clients.
@ 2024-04-22  2:09 NeilBrown
  2024-04-22  5:00 ` Petr Vorel
  2024-04-22 13:34 ` Chuck Lever
  0 siblings, 2 replies; 10+ messages in thread
From: NeilBrown @ 2024-04-22  2:09 UTC (permalink / raw)
  To: Chuck Lever, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey
  Cc: Petr Vorel, linux-nfs



The calculation of how many clients the nfs server can manage is only an
heuristic.  Triggering the laundromat to clean up old clients when we
have more than the heuristic limit is valid, but refusing to create new
clients is not.  Client creation should only fail if there really isn't
enough memory available.

This is not known to have caused a problem is production use, but
testing of lots of clients reports an error and it is not clear that
this error is justified.

Signed-off-by: NeilBrown <neilb@suse.de>
---
 fs/nfsd/nfs4state.c | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index daf83823ba48..8a40bb6a4a67 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -2223,10 +2223,9 @@ static struct nfs4_client *alloc_client(struct xdr_netobj name,
 	struct nfs4_client *clp;
 	int i;
 
-	if (atomic_read(&nn->nfs4_client_count) >= nn->nfs4_max_clients) {
+	if (atomic_read(&nn->nfs4_client_count) >= nn->nfs4_max_clients)
 		mod_delayed_work(laundry_wq, &nn->laundromat_work, 0);
-		return NULL;
-	}
+
 	clp = kmem_cache_zalloc(client_slab, GFP_KERNEL);
 	if (clp == NULL)
 		return NULL;
-- 
2.44.0


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

end of thread, other threads:[~2024-04-25 13:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-22  2:09 [PATCH] nfsd: don't fail OP_SETCLIENTID when there are lots of clients NeilBrown
2024-04-22  5:00 ` Petr Vorel
2024-04-22 13:34 ` Chuck Lever
2024-04-22 23:33   ` NeilBrown
2024-04-23 13:15     ` Chuck Lever III
2024-04-23 18:02       ` Dai Ngo
2024-04-25  0:08       ` NeilBrown
2024-04-25 13:26         ` Chuck Lever
2024-04-23 15:12   ` Petr Vorel
2024-04-23 15:26     ` Chuck Lever

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