summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Schumaker <bjschuma@netapp.com>2012-06-05 14:59:54 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2012-06-05 15:50:47 -0400
commitcdf66442fab82916fe38f928b4f91815195a294c (patch)
treeb16861d2c27cdae18abdb8eac110b14eedac0bbb
parentbda197f5d71d56b95a84c0ccbcb8ce2691106cca (diff)
downloadlinux-cdf66442fab82916fe38f928b4f91815195a294c.tar.gz
linux-cdf66442fab82916fe38f928b4f91815195a294c.tar.bz2
linux-cdf66442fab82916fe38f928b4f91815195a294c.zip
NFS4: Set parsed mount data version to 4
This patch only affects mounting through "-t nfs4" since it doesn't set up an nfs version to use in the mount data. The nfs client was trying to mount using NFS v0, causing either a BUG() or a protocol not supported message. Signed-off-by: Bryan Schumaker <bjschuma@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r--fs/nfs/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c
index ff656c022684..bdd673141e9e 100644
--- a/fs/nfs/super.c
+++ b/fs/nfs/super.c
@@ -2637,6 +2637,8 @@ static int nfs4_validate_mount_data(void *options,
if (data == NULL)
goto out_no_data;
+ args->version = 4;
+
switch (data->version) {
case 1:
if (data->host_addrlen > sizeof(args->nfs_server.address))