]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] A basic NFSv4 client for 2.5.x
authorTrond Myklebust <trond.myklebust@fys.uio.no>
Tue, 15 Oct 2002 12:30:58 +0000 (05:30 -0700)
committerLinus Torvalds <torvalds@home.transmeta.com>
Tue, 15 Oct 2002 12:30:58 +0000 (05:30 -0700)
This patch defines a new switch in fs/Config.in -
  CONFIG_NFS_V4:  enables nfsv4 client

fs/Config.help
fs/Config.in

index 44622847c4dfc943dd32d5abe8804624d59a42be..d8492860bf9ceae1c9ac429de8ba332c07a78c86 100644 (file)
@@ -535,6 +535,13 @@ CONFIG_NFS_DIRECTIO
   causes open() to return EINVAL if a file residing in NFS is
   opened with the O_DIRECT flag.
 
+CONFIG_NFS_V4
+  Say Y here if you want your NFS client to be able to speak the newer
+  version 4 of the NFS protocol.  This feature is experimental, and
+  should only be used if you are interested in helping to test NFSv4.
+
+  If unsure, say N.
+
 CONFIG_ROOT_NFS
   If you want your Linux box to mount its whole root file system (the
   one containing the directory /) from some other computer over the
index e6eb844338ecae278d10b8baa5b620db864e80c3..b2c37c7419b9bf35265dd381f9fc640dee43b33c 100644 (file)
@@ -117,6 +117,7 @@ if [ "$CONFIG_NET" = "y" ]; then
    dep_tristate 'InterMezzo file system support (replicating fs) (EXPERIMENTAL)' CONFIG_INTERMEZZO_FS $CONFIG_INET $CONFIG_EXPERIMENTAL
    dep_tristate 'NFS file system support' CONFIG_NFS_FS $CONFIG_INET
    dep_mbool '  Provide NFSv3 client support' CONFIG_NFS_V3 $CONFIG_NFS_FS
+   dep_mbool '  Provide NFSv4 client support (EXPERIMENTAL)' CONFIG_NFS_V4 $CONFIG_NFS_FS $CONFIG_EXPERIMENTAL
    dep_bool '  Root file system on NFS' CONFIG_ROOT_NFS $CONFIG_NFS_FS $CONFIG_IP_PNP
 
    dep_tristate 'NFS server support' CONFIG_NFSD $CONFIG_INET