svn commit: r188218 - head/sbin/mount_nfs

Craig Rodrigues rodrigc at FreeBSD.org
Thu Feb 5 23:47:54 PST 2009


Author: rodrigc
Date: Fri Feb  6 07:47:53 2009
New Revision: 188218
URL: http://svn.freebsd.org/changeset/base/188218

Log:
  Set NFSMNT_ACDIRMAX flag in fallback_mount() function.

Modified:
  head/sbin/mount_nfs/mount_nfs.c

Modified: head/sbin/mount_nfs/mount_nfs.c
==============================================================================
--- head/sbin/mount_nfs/mount_nfs.c	Fri Feb  6 07:42:21 2009	(r188217)
+++ head/sbin/mount_nfs/mount_nfs.c	Fri Feb  6 07:47:53 2009	(r188218)
@@ -614,6 +614,7 @@ fallback_mount(struct iovec *iov, int io
 		if (ret != 1 || args.acdirmax < 0) {
 			errx(1, "illegal acdirmax: %s", opt);
 		}
+		args.flags |= NFSMNT_ACDIRMAX;
 	}
 	if (findopt(iov, iovlen, "deadthresh", &opt, NULL) == 0) {
 		ret = sscanf(opt, "%d", &args.deadthresh);


More information about the svn-src-head mailing list