diff options
author | dfr <dfr@FreeBSD.org> | 2008-11-14 11:27:53 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 2008-11-14 11:27:53 +0000 |
commit | 367ae23f20b56dce1c186cf0edd2e86fad0b3361 (patch) | |
tree | b2205313791b7e2a32ad8bfc5531da23375a6306 /sys | |
parent | 7f8309245b70bc2d4c89fdc5fbfb7692edc2846f (diff) | |
download | FreeBSD-src-367ae23f20b56dce1c186cf0edd2e86fad0b3361.zip FreeBSD-src-367ae23f20b56dce1c186cf0edd2e86fad0b3361.tar.gz |
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.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/options | 1 | ||||
-rw-r--r-- | sys/nfsclient/nfs.h | 4 | ||||
-rw-r--r-- | sys/nfsserver/nfs.h | 4 |
3 files changed, 0 insertions, 9 deletions
diff --git a/sys/conf/options b/sys/conf/options index 4b28c58..f20547d 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -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 diff --git a/sys/nfsclient/nfs.h b/sys/nfsclient/nfs.h index 8e9f121..c5b1c51 100644 --- a/sys/nfsclient/nfs.h +++ b/sys/nfsclient/nfs.h @@ -40,10 +40,6 @@ #include "opt_nfs.h" #endif -#if !defined(NFS_NEWRPC) && !defined(NFS_LEGACYRPC) -#define NFS_LEGACYRPC -#endif - #include <nfsclient/nfsargs.h> /* diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index c9dec4c..2709377 100644 --- a/sys/nfsserver/nfs.h +++ b/sys/nfsserver/nfs.h @@ -40,10 +40,6 @@ #include "opt_nfs.h" #endif -#if !defined(NFS_NEWRPC) && !defined(NFS_LEGACYRPC) -#define NFS_LEGACYRPC -#endif - /* * Tunable constants for nfs */ |