diff options
author | J. Bruce Fields <bfields@redhat.com> | 2011-04-08 16:32:54 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-04-11 08:42:20 -0400 |
commit | 204f4ce75434c3453907813f8a819d4cf2a5728f (patch) | |
tree | 779f8796bda32557b48b3ee5f7a57bc45fff90fb /fs/nfsd/nfsfh.c | |
parent | aea93397db4b39c9d15443a0e7cc9a380ba990c6 (diff) | |
download | op-kernel-dev-204f4ce75434c3453907813f8a819d4cf2a5728f.zip op-kernel-dev-204f4ce75434c3453907813f8a819d4cf2a5728f.tar.gz |
nfsd4: allow fh_verify caller to skip pseudoflavor checks
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfsfh.c')
-rw-r--r-- | fs/nfsd/nfsfh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c index 55c8e63..90c6aa6 100644 --- a/fs/nfsd/nfsfh.c +++ b/fs/nfsd/nfsfh.c @@ -344,7 +344,7 @@ fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access) * which clients virtually always use auth_sys for, * even while using RPCSEC_GSS for NFS. */ - if (access & NFSD_MAY_LOCK) + if (access & NFSD_MAY_LOCK || access & NFSD_MAY_BYPASS_GSS) goto skip_pseudoflavor_check; /* * Clients may expect to be able to use auth_sys during mount, |