diff mbox

[RFC,13/13] nfs: Allow up to 5000 NFSv4 connections (instead of 1024).

Message ID 1358801159-18829-14-git-send-email-greearb@candelatech.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ben Greear Jan. 21, 2013, 8:45 p.m. UTC
From: Ben Greear <greearb@candelatech.com>

Signed-off-by: Ben Greear <greearb@candelatech.com>
---
 fs/nfs/callback.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c
index 5088b57..ceed971 100644
--- a/fs/nfs/callback.c
+++ b/fs/nfs/callback.c
@@ -335,7 +335,7 @@  static struct svc_serv *nfs_callback_create_svc(int minorversion)
 	/* As there is only one thread we need to over-ride the
 	 * default maximum of 80 connections
 	 */
-	serv->sv_maxconn = 1024;
+	serv->sv_maxconn = 5000;
 	dprintk("nfs_callback_create_svc: service created\n");
 	return serv;
 }