64c563
diff -up nfs-utils-1.3.0/utils/exportfs/exports.man.orig nfs-utils-1.3.0/utils/exportfs/exports.man
64c563
--- nfs-utils-1.3.0/utils/exportfs/exports.man.orig	2017-11-03 07:45:47.000000000 -0400
64c563
+++ nfs-utils-1.3.0/utils/exportfs/exports.man	2017-11-03 09:25:47.000000000 -0400
64c563
@@ -410,7 +410,7 @@ of the filesystem must be handled elsewh
64c563
 
64c563
 .TP
64c563
 .IR pnfs
64c563
-This option allows enables the use of pNFS extension if protocol level
64c563
+This option enables the use of the pNFS extension if the protocol level
64c563
 is NFSv4.1 or higher, and the filesystem supports pNFS exports.  With
64c563
 pNFS clients can bypass the server and perform I/O directly to storage
64c563
 devices. The default can be explicitly requested with the
64c563
diff -up nfs-utils-1.3.0/utils/mount/nfs.man.orig nfs-utils-1.3.0/utils/mount/nfs.man
64c563
--- nfs-utils-1.3.0/utils/mount/nfs.man.orig	2017-11-03 07:45:47.000000000 -0400
64c563
+++ nfs-utils-1.3.0/utils/mount/nfs.man	2017-11-03 09:23:20.000000000 -0400
64c563
@@ -11,11 +11,8 @@ NFS is an Internet Standard protocol
64c563
 created by Sun Microsystems in 1984. NFS was developed
64c563
 to allow file sharing between systems residing
64c563
 on a local area network.
64c563
-The Linux NFS client supports three versions
64c563
-of the NFS protocol:
64c563
-NFS version 2 [RFC1094],
64c563
-NFS version 3 [RFC1813],
64c563
-and NFS version 4 [RFC3530].
64c563
+Depending on kernel configuration, the Linux NFS client may
64c563
+support NFS versions 2, 3, 4.0, 4.1, or 4.2.
64c563
 .P
64c563
 The
64c563
 .BR mount (8)
64c563
@@ -88,9 +85,8 @@ These options are valid to use with any
64c563
 The NFS protocol version number used to contact the server's NFS service.
64c563
 If the server does not support the requested version, the mount request 
64c563
 fails.
64c563
-If this option is not specified, the client negotiates a suitable version 
64c563
-with
64c563
-the server, trying version 4 first, version 3 second, and version 2 last.
64c563
+If this option is not specified, the client tries version 4.1 first,
64c563
+then negotiates down until it finds a version supported by the server.
64c563
 .TP 1.5i
64c563
 .BI vers= n
64c563
 This option is an alternative to the
64c563
@@ -752,7 +748,7 @@ NOTE: When used together, the 'local_loc
64c563
 by 'nolock'/'lock' mount option.
64c563
 .SS "Options for NFS version 4 only"
64c563
 Use these options, along with the options in the first subsection above,
64c563
-for NFS version 4 and newer.
64c563
+for NFS version 4.0 and newer.
64c563
 .TP 1.5i
64c563
 .BI proto= netid
64c563
 The
64c563
@@ -825,7 +821,7 @@ the behavior of this option in more deta
64c563
 Specifies a single IPv4 address (in dotted-quad form),
64c563
 or a non-link-local IPv6 address,
64c563
 that the NFS client advertises to allow servers
64c563
-to perform NFS version 4 callback requests against
64c563
+to perform NFS version 4.0 callback requests against
64c563
 files on this mount point. If  the  server is unable to
64c563
 establish callback connections to clients, performance
64c563
 may degrade, or accesses to files may temporarily hang.
64c563
@@ -838,6 +834,11 @@ In the presence of multiple client netwo
64c563
 special routing policies,
64c563
 or atypical network topologies,
64c563
 the exact address to use for callbacks may be nontrivial to determine.
64c563
+.IP
64c563
+NFS protocol versions 4.1 and 4.2 use the client-established
64c563
+TCP connection for callback requests, so do not require the server to
64c563
+connect to the client.  This option is therefore only affect NFS version
64c563
+4.0 mounts.
64c563
 .TP 1.5i
64c563
 .BR migration " / " nomigration
64c563
 Selects whether the client uses an identification string that is compatible
64c563
@@ -1726,7 +1727,7 @@ file system table
64c563
 .TP 1.5i
64c563
 .I /etc/nfsmount.conf
64c563
 Configuration file for NFS mounts
64c563
-.SH BUGS
64c563
+.SH NOTES
64c563
 Before 2.4.7, the Linux NFS client did not support NFS over TCP.
64c563
 .P
64c563
 Before 2.4.20, the Linux NFS client used a heuristic
64c563
@@ -1745,9 +1746,9 @@ when the
64c563
 .BR rsize " and " wsize
64c563
 settings were smaller than the system's page size.
64c563
 .P
64c563
-The Linux NFS client does not yet support
64c563
-certain optional features of the NFS version 4 protocol,
64c563
-such as security negotiation, server referrals, and named attributes.
64c563
+The Linux client's support for protocol versions depend on whether the
64c563
+kernel was built with options CONFIG_NFS_V2, CONFIG_NFS_V3,
64c563
+CONFIG_NFS_V4, CONFIG_NFS_V4_1, and CONFIG_NFS_V4_2.
64c563
 .SH "SEE ALSO"
64c563
 .BR fstab (5),
64c563
 .BR mount (8),
64c563
@@ -1780,4 +1781,8 @@ RFC 1833 for the RPC bind specification.
64c563
 .br
64c563
 RFC 2203 for the RPCSEC GSS API protocol specification.
64c563
 .br
64c563
-RFC 3530 for the NFS version 4 specification.
64c563
+RFC 7530 for the NFS version 4.0 specification.
64c563
+.br
64c563
+RFC 5661 for the NFS version 4.1 specification.
64c563
+.br
64c563
+RFC 7862 for the NFS version 4.2 specification.