aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2006-08-22 20:06:14 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-09-22 23:24:38 -0400
commit36b15c54cd0d6f707a3ac03e4a2a60bb530a95b9 (patch)
tree09aa1cff411f9a26c1da9255241a865b13d738f3
parent738a35195941ecf604d3070e2a053e1df3de350b (diff)
NFS: Ensure NFSv2/v3 mounts respect the NFS_MOUNT_SECFLAVOUR flag
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
-rw-r--r--fs/nfs/super.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c
index 867b5dcd3a40..97cfb143e09f 100644
--- a/fs/nfs/super.c
+++ b/fs/nfs/super.c
@@ -471,12 +471,14 @@ static int nfs_validate_mount_data(struct nfs_mount_data *data,
471 data->version); 471 data->version);
472 return -EINVAL; 472 return -EINVAL;
473 } 473 }
474 /* Fill in pseudoflavor for mount version < 5 */
475 data->pseudoflavor = RPC_AUTH_UNIX;
476 case 5: 474 case 5:
477 memset(data->context, 0, sizeof(data->context)); 475 memset(data->context, 0, sizeof(data->context));
478 } 476 }
479 477
478 /* Set the pseudoflavor */
479 if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
480 data->pseudoflavor = RPC_AUTH_UNIX;
481
480#ifndef CONFIG_NFS_V3 482#ifndef CONFIG_NFS_V3
481 /* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */ 483 /* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
482 if (data->flags & NFS_MOUNT_VER3) { 484 if (data->flags & NFS_MOUNT_VER3) {