diff options
author | J. Bruce Fields <bfields@redhat.com> | 2016-07-21 23:00:12 +0300 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2016-08-05 00:11:52 +0300 |
commit | fa08139d5e02838ccabd9dcde22663d3b6780cad (patch) | |
tree | a7889d475555d0a593a536322de8d536dc772232 /fs/nfsd/nfs4proc.c | |
parent | 71423274498169911bf9eedf02d5e7ac0a083801 (diff) | |
download | linux-fa08139d5e02838ccabd9dcde22663d3b6780cad.tar.xz |
nfsd: drop unnecessary MAY_EXEC check from create
We need an fh_verify to make sure we at least have a dentry, but actual
permission checks happen later.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4proc.c')
-rw-r--r-- | fs/nfsd/nfs4proc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/fs/nfsd/nfs4proc.c b/fs/nfsd/nfs4proc.c index 9d7e1edf0cca..1fb222752b2b 100644 --- a/fs/nfsd/nfs4proc.c +++ b/fs/nfsd/nfs4proc.c @@ -605,12 +605,7 @@ nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, fh_init(&resfh, NFS4_FHSIZE); - /* - * We just check that parent is accessible here, nfsd_* do their - * own access permission checks - */ - status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, - NFSD_MAY_EXEC); + status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP); if (status) return status; |