diff options
author | Bryan Schumaker <bjschuma@netapp.com> | 2010-08-03 19:04:00 +0200 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-08-06 19:41:39 +0200 |
commit | d5eff1a3412f6d75bf28f423c5015ece8055407a (patch) | |
tree | a1e65a188bda702f93537fc3c9b92b30224ae190 /include | |
parent | NFS: Fix the locking in nfs4_callback_getattr (diff) | |
download | linux-d5eff1a3412f6d75bf28f423c5015ece8055407a.tar.xz linux-d5eff1a3412f6d75bf28f423c5015ece8055407a.zip |
NFS: Fix /proc/mount for legacy binary interface
Add a flag so we know if we mounted the NFS server using the legacy
binary interface. If we used the legacy interface, then we should not
show the mountd options.
Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/nfs_mount.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfs_mount.h b/include/linux/nfs_mount.h index 4499016e6d0d..5d59ae861aa6 100644 --- a/include/linux/nfs_mount.h +++ b/include/linux/nfs_mount.h @@ -69,5 +69,6 @@ struct nfs_mount_data { #define NFS_MOUNT_LOOKUP_CACHE_NONEG 0x10000 #define NFS_MOUNT_LOOKUP_CACHE_NONE 0x20000 #define NFS_MOUNT_NORESVPORT 0x40000 +#define NFS_MOUNT_LEGACY_INTERFACE 0x80000 #endif |