svn commit: r184969 - in head/sys: conf nfsclient nfsserver
Doug Rabson
dfr at FreeBSD.org
Fri Nov 14 03:27:54 PST 2008
Author: dfr
Date: Fri Nov 14 11:27:53 2008
New Revision: 184969
URL: http://svn.freebsd.org/changeset/base/184969
Log:
Switch the default rpc implementation for NFS back to the new code. I believe
I have fixed the reported problems - if you still have trouble with it, please
contact me with as much detail as possible so that I can track down any other
issues as quickly as possible.
Modified:
head/sys/conf/options
head/sys/nfsclient/nfs.h
head/sys/nfsserver/nfs.h
Modified: head/sys/conf/options
==============================================================================
--- head/sys/conf/options Fri Nov 14 11:23:02 2008 (r184968)
+++ head/sys/conf/options Fri Nov 14 11:27:53 2008 (r184969)
@@ -230,7 +230,6 @@ NFS4CLIENT opt_nfs.h
# legacy RPC implementation instead of the newer KRPC system (which
# supports modern features such as RPCSEC_GSS
NFS_LEGACYRPC opt_nfs.h
-NFS_NEWRPC opt_nfs.h
# filesystems and libiconv bridge
CD9660_ICONV opt_dontuse.h
Modified: head/sys/nfsclient/nfs.h
==============================================================================
--- head/sys/nfsclient/nfs.h Fri Nov 14 11:23:02 2008 (r184968)
+++ head/sys/nfsclient/nfs.h Fri Nov 14 11:27:53 2008 (r184969)
@@ -40,10 +40,6 @@
#include "opt_nfs.h"
#endif
-#if !defined(NFS_NEWRPC) && !defined(NFS_LEGACYRPC)
-#define NFS_LEGACYRPC
-#endif
-
#include <nfsclient/nfsargs.h>
/*
Modified: head/sys/nfsserver/nfs.h
==============================================================================
--- head/sys/nfsserver/nfs.h Fri Nov 14 11:23:02 2008 (r184968)
+++ head/sys/nfsserver/nfs.h Fri Nov 14 11:27:53 2008 (r184969)
@@ -40,10 +40,6 @@
#include "opt_nfs.h"
#endif
-#if !defined(NFS_NEWRPC) && !defined(NFS_LEGACYRPC)
-#define NFS_LEGACYRPC
-#endif
-
/*
* Tunable constants for nfs
*/
More information about the svn-src-all
mailing list