summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorJ. Bruce Fields <bfields@redhat.com>2010-09-02 19:23:16 (GMT)
committerJ. Bruce Fields <bfields@redhat.com>2010-09-02 19:25:09 (GMT)
commit8f34a430ac16d5fbd9d6b383184d35e152f5a963 (patch)
tree34a2cbdacb782fb63a0096c28a1e8ab9d8770153 /fs
parentf6360efb83cd6dd1476cd758834c8277508c1f15 (diff)
downloadlinux-8f34a430ac16d5fbd9d6b383184d35e152f5a963.tar.xz
nfsd4: mask out non-access bits in nfs4_access_to_omode
This fixes an unnecessary BUG(). Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfs4state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 3dfef06..cf0d2ff 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -440,7 +440,7 @@ test_share(struct nfs4_stateid *stp, struct nfsd4_open *open) {
static int nfs4_access_to_omode(u32 access)
{
- switch (access) {
+ switch (access & NFS4_SHARE_ACCESS_BOTH) {
case NFS4_SHARE_ACCESS_READ:
return O_RDONLY;
case NFS4_SHARE_ACCESS_WRITE: