Date: Wed, 18 May 2011 14:02:33 +0000 (UTC) From: Ruslan Ermilov <ru@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r222056 - stable/8/sys/nfs Message-ID: <201105181402.p4IE2XSd094762@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105181402.p4IE2XSd094762>