svn commit: r222056 - stable/8/sys/nfs

Ruslan Ermilov ru at FreeBSD.org
Wed May 18 14:02:33 UTC 2011


Author: ru
Date: Wed May 18 14:02:33 2011
New Revision: 222056
URL: http://svn.freebsd.org/changeset/base/222056

Log:
  r221933 vanished support for "nocto" in boot.nfsroot.options loader
  tunable; fix it by redoing a merge of r221436.

Modified:
  stable/8/sys/nfs/nfs_diskless.c

Modified: stable/8/sys/nfs/nfs_diskless.c
==============================================================================
--- stable/8/sys/nfs/nfs_diskless.c	Wed May 18 11:38:36 2011	(r222055)
+++ stable/8/sys/nfs/nfs_diskless.c	Wed May 18 14:02:33 2011	(r222056)
@@ -112,6 +112,8 @@ nfs_parse_options(const char *envopts, s
 			nd->flags |= NFSMNT_NOCONN;
 		else if (strcmp(o, "nolockd") == 0)
 			nd->flags |= NFSMNT_NOLOCKD;
+		else if (strcmp(o, "nocto") == 0)
+			nd->flags |= NFSMNT_NOCTO;
 		else if (strcmp(o, "nfsv2") == 0)
 			nd->flags &= ~(NFSMNT_NFSV3 | NFSMNT_NFSV4);
 		else if (strcmp(o, "nfsv3") == 0) {


More information about the svn-src-all mailing list