diff options
author | Bryan Schumaker <bjschuma@netapp.com> | 2011-04-13 14:31:30 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2011-04-13 15:12:23 -0400 |
commit | 9b7160c55a41dd2fec3d467f979e55782d3f92ad (patch) | |
tree | 5a0d71d9a9ed1cfee60014b3b10d71232dee0a09 /fs/nfs/super.c | |
parent | 801a16dc7b5c146f7980a0c61c30cef3ba93344d (diff) | |
download | op-kernel-dev-9b7160c55a41dd2fec3d467f979e55782d3f92ad.zip op-kernel-dev-9b7160c55a41dd2fec3d467f979e55782d3f92ad.tar.gz |
NFS: don't negotiate when user specifies sec flavor
We were always attempting sec flavor negotiation, even if the user
told us a specific sec flavor to use. If that sec flavor fails,
we should return an error rather than continuing with sec flavor
negotiation.
Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/super.c')
-rw-r--r-- | fs/nfs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs/super.c b/fs/nfs/super.c index 685a8a7..75bcc3f 100644 --- a/fs/nfs/super.c +++ b/fs/nfs/super.c @@ -1004,6 +1004,7 @@ static int nfs_parse_security_flavors(char *value, return 0; } + mnt->flags |= NFS_MOUNT_SECFLAVOUR; mnt->auth_flavor_len = 1; return 1; } |