svn commit: r220752 - head/sys/fs/nfs

Rick Macklem rmacklem at FreeBSD.org
Sun Apr 17 20:01:33 UTC 2011


Author: rmacklem
Date: Sun Apr 17 20:01:32 2011
New Revision: 220752
URL: http://svn.freebsd.org/changeset/base/220752

Log:
  Get rid of the "nfscl: consider increasing kern.ipc.maxsockbuf"
  message that was generated when doing experimental NFS client
  mounts. I put that message in because the krpc would hang with
  the default size for mounts that used large rsize/wsize values.
  Since the bug that caused these hangs was fixed by r213756,
  I think the message is no longer needed.
  
  MFC after:	2 weeks

Modified:
  head/sys/fs/nfs/nfs_commonkrpc.c

Modified: head/sys/fs/nfs/nfs_commonkrpc.c
==============================================================================
--- head/sys/fs/nfs/nfs_commonkrpc.c	Sun Apr 17 18:56:17 2011	(r220751)
+++ head/sys/fs/nfs/nfs_commonkrpc.c	Sun Apr 17 20:01:32 2011	(r220752)
@@ -143,7 +143,7 @@ newnfs_connect(struct nfsmount *nmp, str
 	CLIENT *client;
 	struct netconfig *nconf;
 	struct socket *so;
-	int one = 1, retries, error, printsbmax = 0;
+	int one = 1, retries, error;
 	struct thread *td = curthread;
 
 	/*
@@ -202,13 +202,8 @@ newnfs_connect(struct nfsmount *nmp, str
 		return (error);
 	}
 	do {
-	    if (error != 0 && pktscale > 2) {
+	    if (error != 0 && pktscale > 2)
 		pktscale--;
-		if (printsbmax == 0) {
-		    printf("nfscl: consider increasing kern.ipc.maxsockbuf\n");
-		    printsbmax = 1;
-		}
-	    }
 	    if (nrp->nr_sotype == SOCK_DGRAM) {
 		if (nmp != NULL) {
 			sndreserve = (NFS_MAXDGRAMDATA + NFS_MAXPKTHDR) *


More information about the svn-src-head mailing list