aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsclient/nfs_subs.c
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2011-05-15 20:52:43 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2011-05-15 20:52:43 +0000
commit1f3765902ce180e571939880f99afd9b4d290b7b (patch)
tree6ea029756d9437ab4e6dd7fdf2137de83de1c74d /sys/nfsclient/nfs_subs.c
parent6e81b75a3c19afa344e6c0686166858de8af56ee (diff)
downloadsrc-1f3765902ce180e571939880f99afd9b4d290b7b.tar.gz
src-1f3765902ce180e571939880f99afd9b4d290b7b.zip
Change the sysctl naming for the old and new NFS clients
to vfs.oldnfs.xxx and vfs.nfs.xxx respectively. This makes the default nfs client use vfs.nfs.xxx after r221124.
Notes
Notes: svn path=/head/; revision=221973
Diffstat (limited to 'sys/nfsclient/nfs_subs.c')
-rw-r--r--sys/nfsclient/nfs_subs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_subs.c b/sys/nfsclient/nfs_subs.c
index fe4f5cc545a1..19fde06dab07 100644
--- a/sys/nfsclient/nfs_subs.c
+++ b/sys/nfsclient/nfs_subs.c
@@ -653,9 +653,9 @@ out:
#ifdef NFS_ACDEBUG
#include <sys/sysctl.h>
-SYSCTL_DECL(_vfs_nfs);
+SYSCTL_DECL(_vfs_oldnfs);
static int nfs_acdebug;
-SYSCTL_INT(_vfs_nfs, OID_AUTO, acdebug, CTLFLAG_RW, &nfs_acdebug, 0,
+SYSCTL_INT(_vfs_oldnfs, OID_AUTO, acdebug, CTLFLAG_RW, &nfs_acdebug, 0,
"Toggle acdebug (attribute cache debug) flag");
#endif