From 335317d29138a9c707d06439585222b6b4853510 Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Fri, 14 Nov 2008 11:27:53 +0000 Subject: [PATCH] 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. --- sys/conf/options | 1 - sys/nfsclient/nfs.h | 4 ---- sys/nfsserver/nfs.h | 4 ---- 3 files changed, 9 deletions(-) diff --git a/sys/conf/options b/sys/conf/options index 4b28c5839ef4..f20547dda13f 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 8e9f121dc5c9..c5b1c518fbd4 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 /* diff --git a/sys/nfsserver/nfs.h b/sys/nfsserver/nfs.h index c9dec4c896e9..27093777aea4 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 */